os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappeglbase.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #ifndef __T_PSEUDOAPPEGLBASE_H__
    23 #define __T_PSEUDOAPPEGLBASE_H__
    24 
    25 #include <eikenv.h>
    26 #include <gdi.h>
    27 #include <EGL/egl.h>
    28 #include "t_pseudoappanim.h"
    29 
    30 	/** Attributes for an EColor4K window */
    31 	const EGLint KColor4KAttribList[] =
    32 			{
    33 			EGL_RED_SIZE,		4,
    34 			EGL_GREEN_SIZE,		4,
    35 			EGL_BLUE_SIZE,		4,
    36 			EGL_DEPTH_SIZE,		16,
    37 			EGL_SURFACE_TYPE,	EGL_WINDOW_BIT,
    38 			EGL_NONE
    39 			};
    40 
    41 	/** Attributes for an EColor64K window */
    42 	const EGLint KColor64KAttribList[] =
    43 			{
    44 			EGL_RED_SIZE,		5,
    45 			EGL_GREEN_SIZE,		6,
    46 			EGL_BLUE_SIZE,		5,
    47 			EGL_DEPTH_SIZE,		16,
    48 			EGL_SURFACE_TYPE,	EGL_WINDOW_BIT,
    49 			EGL_NONE
    50 			};
    51 
    52 	/** Attributes for an EColor16M window */
    53 	const EGLint KColor16MAttribList[] =
    54 			{
    55 			EGL_RED_SIZE,		8,
    56 			EGL_GREEN_SIZE,		8,
    57 			EGL_BLUE_SIZE,		8,
    58 			EGL_DEPTH_SIZE,		16,
    59 			EGL_SURFACE_TYPE,	EGL_WINDOW_BIT,
    60 			EGL_NONE
    61 			};
    62 
    63 	const EGLint KColor16MAAttribList[] =
    64 			{
    65 		EGL_BUFFER_SIZE,    32,
    66 		EGL_RED_SIZE,		8,
    67 		EGL_GREEN_SIZE, 	8,
    68 		EGL_BLUE_SIZE,		8,
    69 		EGL_ALPHA_SIZE, 	8,
    70 		EGL_RENDERABLE_TYPE,EGL_OPENVG_BIT | EGL_OPENGL_ES_BIT,
    71 		EGL_SURFACE_TYPE,	EGL_WINDOW_BIT,
    72 		EGL_NONE
    73 			};	
    74 
    75 class CEglBase : public CTestAnimation
    76 	{
    77 public:
    78 	virtual ~CEglBase();
    79 	
    80 protected:
    81 	CEglBase(const TDisplayMode& aMode,const TSize& aSurfaceSz,const TInt aHRate,const TInt aVRate);
    82 	void BaseConstructL(RWindow* aWin);
    83 
    84 	virtual void DrawToEglL()=0;
    85 	void TestL(const TInt aRet, const TDesC& aMessage);
    86 	
    87 private:
    88 	TInt GetSuitableConfig(const EGLConfig* aConfigs, EGLint aNumConfigs, const EGLint* attribs);
    89 	
    90 
    91 protected: // Data
    92 	EGLDisplay 			iDisplay;
    93 	EGLSurface 			iSurface;
    94 	EGLContext 			iContext;
    95 	EGLConfig 			iUseConfig;
    96 	float				iX;
    97 	float				iY;
    98 
    99 private: //Data
   100 	TDisplayMode		iDispMode;
   101 	};
   102 
   103 #endif //__T_PSEUDOAPPEGLBASE_H__