Update contrib.
2 * Copyright (c) 2009 Symbian Foundation Ltd
3 * This component and the accompanying materials are made available
4 * under the terms of the License "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 * Symbian Foundation Ltd - initial contribution.
14 * CTiger class declaration to render OpenVG tiger image
21 #include <e32base.h> // for CBase definition
25 #include <eglosnativewindowtype.h>
27 ////////////////////////////////////////////
28 //Copied from ri_package_11\samples\tiger\tiger.h
29 extern const int KtigerCommandCount;
30 extern const char KtigerCommands[];
31 extern const float KtigerMinX;
32 extern const float KtigerMaxX;
33 extern const float KtigerMinY;
34 extern const float KtigerMaxY;
35 extern const int KtigerPointCount;
36 extern const float KtigerPoints[];
41 * Class that does the actual OpenGL ES rendering.
45 VGFillRule m_fillRule;
46 VGPaintMode m_paintMode;
47 VGCapStyle m_capStyle;
48 VGJoinStyle m_joinStyle;
52 VGPaint m_strokePaint;
62 /////////////////////////////////////////////////////////////
66 class CTiger : public CBase
68 public: // Constructors and destructor
71 * Factory method for creating a new CTiger object.
73 static CTiger* NewL( TUint aWidth, TUint aHeight);
76 * Destructor. Does nothing.
80 public: // New functions
83 * Initializes OpenGL ES, sets the vertex and color
84 * arrays and pointers. Also selects the shading mode.
86 void AppInit( RWindow& aWindow, CFbsBitmap* aBitmapToDraw=NULL );
89 * Called upon application exit. Does nothing.
94 * Notifies that the screen size has dynamically changed during execution of
95 * this program. Resets the viewport to this new size.
96 * @param aWidth New width of the screen.
97 * @param aHeight New height of the screen.
99 void SetScreenSize( TUint aWidth, TUint aHeight );
101 void AppRender( const TRect& aRect, CFbsBitmap* aDst=NULL);
103 protected: // New functions
106 * Standard constructor that must never Leave.
107 * Stores the given screen width and height.
108 * @param aWidth Width of the screen.
109 * @param aHeight Height of the screen.
111 CTiger(TUint aWidth, TUint aHeight);
114 * Second phase contructor. Does nothing.
116 void ConstructL( void );
118 //fucntions copied from ri_package_11\samples\tiger\main.c - no attempt to Symbianise!!
119 void PS_destruct(PS* ps);
120 void render(int w, int h);
121 void PS_render(PS* ps);
122 PS* PS_construct(const char* commands, int commandCount, const float* points, int pointCount);
123 void init(NativeWindowType window, CFbsBitmap* aBitmapToDraw=NULL);
124 void CreateImage(CFbsBitmap* aBitmapToDraw);
125 void renderFromBitmap(int w, int h);
130 /** Width of the screen */
133 /** Height of the screen */
136 private: //OpenVG structures
138 //copied from ri_package_11\samples\tiger\main.c - no attempt to symbianise
142 EGLDisplay iEgldisplay;
143 EGLConfig iEglconfig;
144 EGLSurface iEglsurface;
145 EGLContext iEglcontext;
146 TNativeWindowType iNativeWindowType;
148 CFbsBitmap* iBitmapToDraw;