sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef __T_PSEUDOAPPEGLBASE_H__ sl@0: #define __T_PSEUDOAPPEGLBASE_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include "t_pseudoappanim.h" sl@0: sl@0: /** Attributes for an EColor4K window */ sl@0: const EGLint KColor4KAttribList[] = sl@0: { sl@0: EGL_RED_SIZE, 4, sl@0: EGL_GREEN_SIZE, 4, sl@0: EGL_BLUE_SIZE, 4, sl@0: EGL_DEPTH_SIZE, 16, sl@0: EGL_SURFACE_TYPE, EGL_WINDOW_BIT, sl@0: EGL_NONE sl@0: }; sl@0: sl@0: /** Attributes for an EColor64K window */ sl@0: const EGLint KColor64KAttribList[] = sl@0: { sl@0: EGL_RED_SIZE, 5, sl@0: EGL_GREEN_SIZE, 6, sl@0: EGL_BLUE_SIZE, 5, sl@0: EGL_DEPTH_SIZE, 16, sl@0: EGL_SURFACE_TYPE, EGL_WINDOW_BIT, sl@0: EGL_NONE sl@0: }; sl@0: sl@0: /** Attributes for an EColor16M window */ sl@0: const EGLint KColor16MAttribList[] = sl@0: { sl@0: EGL_RED_SIZE, 8, sl@0: EGL_GREEN_SIZE, 8, sl@0: EGL_BLUE_SIZE, 8, sl@0: EGL_DEPTH_SIZE, 16, sl@0: EGL_SURFACE_TYPE, EGL_WINDOW_BIT, sl@0: EGL_NONE sl@0: }; sl@0: sl@0: const EGLint KColor16MAAttribList[] = sl@0: { sl@0: EGL_BUFFER_SIZE, 32, sl@0: EGL_RED_SIZE, 8, sl@0: EGL_GREEN_SIZE, 8, sl@0: EGL_BLUE_SIZE, 8, sl@0: EGL_ALPHA_SIZE, 8, sl@0: EGL_RENDERABLE_TYPE,EGL_OPENVG_BIT | EGL_OPENGL_ES_BIT, sl@0: EGL_SURFACE_TYPE, EGL_WINDOW_BIT, sl@0: EGL_NONE sl@0: }; sl@0: sl@0: class CEglBase : public CTestAnimation sl@0: { sl@0: public: sl@0: virtual ~CEglBase(); sl@0: sl@0: protected: sl@0: CEglBase(const TDisplayMode& aMode,const TSize& aSurfaceSz,const TInt aHRate,const TInt aVRate); sl@0: void BaseConstructL(RWindow* aWin); sl@0: sl@0: virtual void DrawToEglL()=0; sl@0: void TestL(const TInt aRet, const TDesC& aMessage); sl@0: sl@0: private: sl@0: TInt GetSuitableConfig(const EGLConfig* aConfigs, EGLint aNumConfigs, const EGLint* attribs); sl@0: sl@0: sl@0: protected: // Data sl@0: EGLDisplay iDisplay; sl@0: EGLSurface iSurface; sl@0: EGLContext iContext; sl@0: EGLConfig iUseConfig; sl@0: float iX; sl@0: float iY; sl@0: sl@0: private: //Data sl@0: TDisplayMode iDispMode; sl@0: }; sl@0: sl@0: #endif //__T_PSEUDOAPPEGLBASE_H__