Update contrib.
2 * Copyright (c) 2009 Symbian Foundation Ltd
3 * This component and the accompanying materials are made available
4 * under the terms of the License "Eclipse Public License v1.0"
5 * which accompanies this distribution, and is available
6 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 * Initial Contributors:
9 * Symbian Foundation Ltd - initial contribution.
14 * Implementation of VGI interface
18 #include <vg\vgcontext.h>
19 #include <vg\vgcontext_symbian.h>
22 #define MAX_WIDTH 640 //*4 // in bytes
23 #define MAX_HEIGHT 640 //*4 // in bytes
36 EGLDisplay iEgldisplay;
37 EGLSurface iEglsurface;
38 EGLContext iEglcontext;
44 TEgl& GetEglInstance()
47 //use TLS to store static global egl
49 if((pEgl = static_cast<TEgl*>(Dll::Tls()))==NULL)
52 pEgl = new(ELeave)TEgl;
60 TEgl* pEgl = static_cast<TEgl*>(Dll::Tls());
66 VGI_API_CALL int VGIInitialize( int /*width*/, int /*height*/, VGIColorSpace /*colorSpace*/ )
71 VGI_API_CALL int VGIInitializeEx( int /*width*/, int /*height*/, VGIColorSpace /*colorSpace*/, int /*premultiplied*/, int /*conformant*/ )
76 VGI_API_CALL int VGICopyToTarget( VGIColorBufferFormat /*format*/, int /*bufferStride*/, void */*buffer*/, int /*maskStride*/, void */*mask*/, VGICopyToTargetHint /*hint*/ )
81 VGI_API_CALL void VGITerminate( void )
86 VGI_API_CALL int VGIResize( int /*width*/, int /*height*/ )
91 VGI_API_CALL int VGIBindToImage( VGImage /*image*/ )
96 VGI_API_CALL int VGIUnBindImage( void )
103 VGI_API_CALL TInt VGISymbianInitialize( TSize aSize, VGIColorSpace /*aColorSpace*/ )
105 TEgl& egl = GetEglInstance();
107 if(!egl.iInitialised)
109 egl.iInitialised = ETrue;
110 static const EGLint s_configAttribs[] =
121 EGL_DONT_CARE, //EGL_DONT_CARE
130 egl.iEgldisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
131 eglInitialize(egl.iEgldisplay, NULL, NULL);
132 __ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
133 eglBindAPI(EGL_OPENVG_API);
137 eglChooseConfig(egl.iEgldisplay, s_configAttribs, &eglconfig, 1, &numconfigs);
138 __ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
139 __ASSERT_ALWAYS(numconfigs == 1,User::Invariant());
141 TSize maxSize(MAX_WIDTH,MAX_HEIGHT);
142 egl.iPixmap = new(ELeave) CFbsBitmap();
143 egl.iPixmap->Create( maxSize, EColor16MA );
145 egl.iEglsurface = eglCreatePixmapSurface(egl.iEgldisplay, eglconfig, (EGLNativePixmapType)egl.iPixmap, NULL);
146 __ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
148 egl.iEglcontext = eglCreateContext(egl.iEgldisplay, eglconfig, NULL, NULL);
149 __ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
150 eglMakeCurrent(egl.iEgldisplay, egl.iEglsurface, egl.iEglsurface, egl.iEglcontext);
151 __ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
157 VGI_API_CALL TInt VGISymbianInitializeEx( TSize /*aSize*/, VGIColorSpace /*aColorSpace*/, TBool /*aPremultiplied*/, TBool /*aConformant*/ )
162 VGI_API_CALL TInt VGISymbianCopyToBitmap( CFbsBitmap *aBitmap, CFbsBitmap *aMaskBitmap, VGICopyToTargetHint /*aHint*/ )
164 TEgl& egl = GetEglInstance();
166 eglCopyBuffers(egl.iEgldisplay, egl.iEglsurface,(EGLNativePixmapType)aBitmap);
170 eglCopyBuffers(egl.iEgldisplay, egl.iEglsurface,(EGLNativePixmapType)aMaskBitmap);
173 __ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
177 VGI_API_CALL void VGISymbianTerminate()
179 TEgl& egl = GetEglInstance();
180 eglDestroyContext(egl.iEgldisplay, egl.iEglcontext);
181 eglDestroySurface(egl.iEgldisplay, egl.iEglsurface);
186 VGI_API_CALL TInt VGISymbianResize( TSize aSize )
191 VGI_API_CALL TInt VGISymbianBindToImage( VGImage /*aImage*/ )
196 VGI_API_CALL TInt VGISymbianUnBindImage()