sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __T_PSEUDOAPPEGLBASE_H__
|
sl@0
|
23 |
#define __T_PSEUDOAPPEGLBASE_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <eikenv.h>
|
sl@0
|
26 |
#include <gdi.h>
|
sl@0
|
27 |
#include <EGL/egl.h>
|
sl@0
|
28 |
#include "t_pseudoappanim.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
/** Attributes for an EColor4K window */
|
sl@0
|
31 |
const EGLint KColor4KAttribList[] =
|
sl@0
|
32 |
{
|
sl@0
|
33 |
EGL_RED_SIZE, 4,
|
sl@0
|
34 |
EGL_GREEN_SIZE, 4,
|
sl@0
|
35 |
EGL_BLUE_SIZE, 4,
|
sl@0
|
36 |
EGL_DEPTH_SIZE, 16,
|
sl@0
|
37 |
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
sl@0
|
38 |
EGL_NONE
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
/** Attributes for an EColor64K window */
|
sl@0
|
42 |
const EGLint KColor64KAttribList[] =
|
sl@0
|
43 |
{
|
sl@0
|
44 |
EGL_RED_SIZE, 5,
|
sl@0
|
45 |
EGL_GREEN_SIZE, 6,
|
sl@0
|
46 |
EGL_BLUE_SIZE, 5,
|
sl@0
|
47 |
EGL_DEPTH_SIZE, 16,
|
sl@0
|
48 |
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
sl@0
|
49 |
EGL_NONE
|
sl@0
|
50 |
};
|
sl@0
|
51 |
|
sl@0
|
52 |
/** Attributes for an EColor16M window */
|
sl@0
|
53 |
const EGLint KColor16MAttribList[] =
|
sl@0
|
54 |
{
|
sl@0
|
55 |
EGL_RED_SIZE, 8,
|
sl@0
|
56 |
EGL_GREEN_SIZE, 8,
|
sl@0
|
57 |
EGL_BLUE_SIZE, 8,
|
sl@0
|
58 |
EGL_DEPTH_SIZE, 16,
|
sl@0
|
59 |
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
sl@0
|
60 |
EGL_NONE
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
const EGLint KColor16MAAttribList[] =
|
sl@0
|
64 |
{
|
sl@0
|
65 |
EGL_BUFFER_SIZE, 32,
|
sl@0
|
66 |
EGL_RED_SIZE, 8,
|
sl@0
|
67 |
EGL_GREEN_SIZE, 8,
|
sl@0
|
68 |
EGL_BLUE_SIZE, 8,
|
sl@0
|
69 |
EGL_ALPHA_SIZE, 8,
|
sl@0
|
70 |
EGL_RENDERABLE_TYPE,EGL_OPENVG_BIT | EGL_OPENGL_ES_BIT,
|
sl@0
|
71 |
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
sl@0
|
72 |
EGL_NONE
|
sl@0
|
73 |
};
|
sl@0
|
74 |
|
sl@0
|
75 |
class CEglBase : public CTestAnimation
|
sl@0
|
76 |
{
|
sl@0
|
77 |
public:
|
sl@0
|
78 |
virtual ~CEglBase();
|
sl@0
|
79 |
|
sl@0
|
80 |
protected:
|
sl@0
|
81 |
CEglBase(const TDisplayMode& aMode,const TSize& aSurfaceSz,const TInt aHRate,const TInt aVRate);
|
sl@0
|
82 |
void BaseConstructL(RWindow* aWin);
|
sl@0
|
83 |
|
sl@0
|
84 |
virtual void DrawToEglL()=0;
|
sl@0
|
85 |
void TestL(const TInt aRet, const TDesC& aMessage);
|
sl@0
|
86 |
|
sl@0
|
87 |
private:
|
sl@0
|
88 |
TInt GetSuitableConfig(const EGLConfig* aConfigs, EGLint aNumConfigs, const EGLint* attribs);
|
sl@0
|
89 |
|
sl@0
|
90 |
|
sl@0
|
91 |
protected: // Data
|
sl@0
|
92 |
EGLDisplay iDisplay;
|
sl@0
|
93 |
EGLSurface iSurface;
|
sl@0
|
94 |
EGLContext iContext;
|
sl@0
|
95 |
EGLConfig iUseConfig;
|
sl@0
|
96 |
float iX;
|
sl@0
|
97 |
float iY;
|
sl@0
|
98 |
|
sl@0
|
99 |
private: //Data
|
sl@0
|
100 |
TDisplayMode iDispMode;
|
sl@0
|
101 |
};
|
sl@0
|
102 |
|
sl@0
|
103 |
#endif //__T_PSEUDOAPPEGLBASE_H__
|