First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "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 // Nokia Corporation - initial contribution.
22 #ifndef __T_PSEUDOAPPEGLBASE_H__
23 #define __T_PSEUDOAPPEGLBASE_H__
28 #include "t_pseudoappanim.h"
30 /** Attributes for an EColor4K window */
31 const EGLint KColor4KAttribList[] =
37 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
41 /** Attributes for an EColor64K window */
42 const EGLint KColor64KAttribList[] =
48 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
52 /** Attributes for an EColor16M window */
53 const EGLint KColor16MAttribList[] =
59 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
63 const EGLint KColor16MAAttribList[] =
70 EGL_RENDERABLE_TYPE,EGL_OPENVG_BIT | EGL_OPENGL_ES_BIT,
71 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
75 class CEglBase : public CTestAnimation
81 CEglBase(const TDisplayMode& aMode,const TSize& aSurfaceSz,const TInt aHRate,const TInt aVRate);
82 void BaseConstructL(RWindow* aWin);
84 virtual void DrawToEglL()=0;
85 void TestL(const TInt aRet, const TDesC& aMessage);
88 TInt GetSuitableConfig(const EGLConfig* aConfigs, EGLint aNumConfigs, const EGLint* attribs);
100 TDisplayMode iDispMode;
103 #endif //__T_PSEUDOAPPEGLBASE_H__