os/graphics/openvg/openvgrefimplementation/sfopenvg/vgi/vgi.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/openvg/openvgrefimplementation/sfopenvg/vgi/vgi.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,200 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Symbian Foundation Ltd
     1.6 +* This component and the accompanying materials are made available
     1.7 +* under the terms of the License "Eclipse Public License v1.0"
     1.8 +* which accompanies this distribution, and is available
     1.9 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +*
    1.11 +* Initial Contributors:
    1.12 +* Symbian Foundation Ltd - initial contribution.
    1.13 +* 
    1.14 +* Contributors:
    1.15 +*
    1.16 +* Description:
    1.17 +* Implementation of VGI interface
    1.18 +*/
    1.19 +
    1.20 +#include <e32std.h>
    1.21 +#include <vg\vgcontext.h>
    1.22 +#include <vg\vgcontext_symbian.h>
    1.23 +#include <egl.h>
    1.24 +
    1.25 +#define MAX_WIDTH 		640 //*4 // in bytes
    1.26 +#define MAX_HEIGHT 		640 //*4 // in bytes
    1.27 +class TEgl
    1.28 +	{
    1.29 +public:
    1.30 +	TEgl() :
    1.31 +	iEgldisplay(0),
    1.32 +	iEglsurface(0),
    1.33 +	iEglcontext(0),
    1.34 +	iInitialised(EFalse),
    1.35 +	iPixmap(NULL)
    1.36 +	{};
    1.37 +
    1.38 +public: //data
    1.39 +	EGLDisplay iEgldisplay;
    1.40 +	EGLSurface iEglsurface;
    1.41 +	EGLContext iEglcontext;
    1.42 +	TBool iInitialised;
    1.43 +	CFbsBitmap* iPixmap;
    1.44 +	};
    1.45 +
    1.46 +
    1.47 +TEgl& GetEglInstance()
    1.48 +	{
    1.49 +	//use TLS
    1.50 +	//use TLS to store static global egl
    1.51 +	TEgl* pEgl=NULL; 
    1.52 +	if((pEgl = static_cast<TEgl*>(Dll::Tls()))==NULL)
    1.53 +		{
    1.54 +		//create TLS instance
    1.55 +		pEgl = new(ELeave)TEgl;
    1.56 +		Dll::SetTls(pEgl);
    1.57 +		}
    1.58 +	return *pEgl;
    1.59 +	}
    1.60 +
    1.61 +void ReleaseTls()
    1.62 +	{
    1.63 +	TEgl* pEgl = static_cast<TEgl*>(Dll::Tls());
    1.64 +	if (pEgl)
    1.65 +		delete pEgl; 
    1.66 +	Dll::SetTls(NULL);
    1.67 +	}
    1.68 +
    1.69 +VGI_API_CALL int VGIInitialize( int /*width*/, int /*height*/, VGIColorSpace /*colorSpace*/ )
    1.70 +	{
    1.71 +	return VGI_OK;
    1.72 +	}
    1.73 +
    1.74 +VGI_API_CALL int VGIInitializeEx( int /*width*/, int /*height*/, VGIColorSpace /*colorSpace*/, int /*premultiplied*/, int /*conformant*/ )
    1.75 +	{
    1.76 +	return VGI_OK;
    1.77 +	}
    1.78 +
    1.79 +VGI_API_CALL int VGICopyToTarget( VGIColorBufferFormat /*format*/, int /*bufferStride*/, void */*buffer*/, int /*maskStride*/, void */*mask*/, VGICopyToTargetHint /*hint*/ )
    1.80 +	{
    1.81 +	return VGI_OK;
    1.82 +	}
    1.83 +
    1.84 +VGI_API_CALL void VGITerminate( void )
    1.85 +	{
    1.86 +
    1.87 +	}
    1.88 +
    1.89 +VGI_API_CALL int VGIResize( int /*width*/, int /*height*/ )
    1.90 +	{
    1.91 +	return VGI_OK;
    1.92 +	}
    1.93 +
    1.94 +VGI_API_CALL int VGIBindToImage( VGImage /*image*/ )
    1.95 +	{
    1.96 +	return VGI_OK;
    1.97 +	}	
    1.98 +
    1.99 +VGI_API_CALL int VGIUnBindImage( void )
   1.100 +	{
   1.101 +	return VGI_OK;
   1.102 +	}
   1.103 +
   1.104 +
   1.105 +
   1.106 +VGI_API_CALL TInt VGISymbianInitialize( TSize aSize, VGIColorSpace /*aColorSpace*/ )
   1.107 +	{
   1.108 +	TEgl& egl = GetEglInstance();
   1.109 +	//only init once
   1.110 +	if(!egl.iInitialised)
   1.111 +		{
   1.112 +		egl.iInitialised = ETrue;
   1.113 +		static const EGLint s_configAttribs[] =
   1.114 +			{
   1.115 +					EGL_RED_SIZE,
   1.116 +					8,
   1.117 +					EGL_GREEN_SIZE,
   1.118 +					8,
   1.119 +					EGL_BLUE_SIZE,
   1.120 +					8,
   1.121 +					EGL_ALPHA_SIZE,
   1.122 +					8,
   1.123 +					EGL_LUMINANCE_SIZE,
   1.124 +					EGL_DONT_CARE, //EGL_DONT_CARE
   1.125 +					EGL_SURFACE_TYPE,
   1.126 +					EGL_WINDOW_BIT,
   1.127 +					EGL_SAMPLES,
   1.128 +					1,
   1.129 +					EGL_NONE
   1.130 +			};
   1.131 +		EGLint numconfigs;
   1.132 +		
   1.133 +		egl.iEgldisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
   1.134 +		eglInitialize(egl.iEgldisplay, NULL, NULL);
   1.135 +		__ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
   1.136 +		eglBindAPI(EGL_OPENVG_API);
   1.137 +		
   1.138 +		EGLConfig  eglconfig;
   1.139 +		
   1.140 +		eglChooseConfig(egl.iEgldisplay, s_configAttribs, &eglconfig, 1, &numconfigs);
   1.141 +		__ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
   1.142 +		__ASSERT_ALWAYS(numconfigs == 1,User::Invariant());
   1.143 +		
   1.144 +		TSize maxSize(MAX_WIDTH,MAX_HEIGHT);
   1.145 +		egl.iPixmap = new(ELeave) CFbsBitmap();
   1.146 +		egl.iPixmap->Create( maxSize, EColor16MA );
   1.147 +		 
   1.148 +		egl.iEglsurface = eglCreatePixmapSurface(egl.iEgldisplay, eglconfig, (EGLNativePixmapType)egl.iPixmap, NULL);
   1.149 +		__ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
   1.150 +				
   1.151 +		egl.iEglcontext = eglCreateContext(egl.iEgldisplay, eglconfig, NULL, NULL);
   1.152 +		__ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
   1.153 +		eglMakeCurrent(egl.iEgldisplay, egl.iEglsurface, egl.iEglsurface, egl.iEglcontext);
   1.154 +		__ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
   1.155 +	
   1.156 +		}
   1.157 +		return VGI_OK;
   1.158 +	}
   1.159 +
   1.160 +VGI_API_CALL TInt VGISymbianInitializeEx( TSize /*aSize*/, VGIColorSpace /*aColorSpace*/, TBool /*aPremultiplied*/, TBool /*aConformant*/ )
   1.161 +	{
   1.162 +	return VGI_OK;
   1.163 +	}
   1.164 +
   1.165 +VGI_API_CALL TInt VGISymbianCopyToBitmap( CFbsBitmap *aBitmap, CFbsBitmap *aMaskBitmap, VGICopyToTargetHint /*aHint*/ )
   1.166 +	{
   1.167 +	TEgl& egl = GetEglInstance();	
   1.168 +	
   1.169 +	eglCopyBuffers(egl.iEgldisplay, egl.iEglsurface,(EGLNativePixmapType)aBitmap);
   1.170 +	
   1.171 +	if(aMaskBitmap)
   1.172 +		{
   1.173 +		eglCopyBuffers(egl.iEgldisplay, egl.iEglsurface,(EGLNativePixmapType)aMaskBitmap);		
   1.174 +		}
   1.175 +	
   1.176 +	__ASSERT_ALWAYS(eglGetError() == EGL_SUCCESS,User::Invariant());
   1.177 +	return VGI_OK;
   1.178 +	}
   1.179 +
   1.180 +VGI_API_CALL void VGISymbianTerminate()
   1.181 +{
   1.182 +	TEgl& egl = GetEglInstance();
   1.183 +	eglDestroyContext(egl.iEgldisplay, egl.iEglcontext);
   1.184 +	eglDestroySurface(egl.iEgldisplay, egl.iEglsurface);
   1.185 +	delete egl.iPixmap;
   1.186 +	ReleaseTls();
   1.187 +}
   1.188 +
   1.189 +VGI_API_CALL TInt VGISymbianResize( TSize aSize )
   1.190 +	{
   1.191 +	return VGI_OK;
   1.192 +	}
   1.193 +
   1.194 +VGI_API_CALL TInt VGISymbianBindToImage( VGImage /*aImage*/ )
   1.195 +	{
   1.196 +	return VGI_OK;
   1.197 +	}
   1.198 +
   1.199 +VGI_API_CALL TInt VGISymbianUnBindImage()
   1.200 +	{
   1.201 +	return VGI_OK;
   1.202 +	}
   1.203 +