Update contrib.
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 #include "t_pseudoappvganimation.h"
24 //for the inner square
25 const TReal32 KTlx = 0;
26 const TReal32 KTly = 0;
27 const TReal32 KSzx = 60;
28 const TReal32 KSzy = 60;
30 void CVgAnimation::DrawToEglL()
33 VGfloat bgColor[] = {0.0, 0.0, 0.0, 0.0};
34 vgSetfv(VG_CLEAR_COLOR, 4, bgColor);
35 vgClear(0, 0, iSurfaceSize.iWidth, iSurfaceSize.iHeight);
37 //paint creation and setting.
38 vgSeti(VG_BLEND_MODE, VG_BLEND_SRC_OVER);
39 vgSeti(VG_RENDERING_QUALITY, VG_RENDERING_QUALITY_BETTER);
41 VGPaint fillPaint=vgCreatePaint();
42 CheckVgErrorL(_L("vgCreatePaint failed"));
46 fillColor[0] = 0.0f/255.0f; //blue
47 fillColor[1] = 255.0f/255.0f; //red
48 fillColor[2] = 0.0f/255.0f; //green
49 fillColor[3] = 255.0f/255.0f; //alpha = required to be 1.0
51 vgSetParameteri(fillPaint, VG_PAINT_TYPE, VG_PAINT_TYPE_COLOR);
52 CheckVgErrorL(_L("fillPaint VG_PAINT_TYPE failed"));
53 vgSetParameterfv(fillPaint, VG_PAINT_COLOR, 4, fillColor);
54 CheckVgErrorL(_L("fillPaint VG_PAINT_COLOR failed"));
57 bgPath= vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_S_32, 1.0f, 0.0f, 4, 4, (unsigned int)VG_PATH_CAPABILITY_ALL);
58 CheckVgErrorL(_L("vgCreatePath failed"));
60 VGUErrorCode vguerr=vguEllipse(bgPath, KTlx, KTly, KSzx, KSzy);
61 TestL(vguerr==VGU_NO_ERROR, _L("vguRect failed"));
62 CheckVgErrorL(_L("vguRect failed"));
64 vgSetPaint(fillPaint, VG_FILL_PATH);
65 CheckVgErrorL(_L("VG_FILL_PATH failed"));
69 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE);
70 CheckVgErrorL(_L("vgLoadIdentity failed"));
74 vgDrawPath(bgPath, VG_FILL_PATH);
75 CheckVgErrorL(_L("vgDrawPath failed"));
77 vgDestroyPath(bgPath);
78 vgDestroyPaint(fillPaint);
82 TInt ret=eglSwapBuffers(iDisplay,iSurface);
83 TestL(ret,_L("eglSwapBuffers failed"));
86 void CVgAnimation::DrawL(CTestSurfaceRasterizer* /*aSurfaceRasterizer*/, SurfaceDetails& /*aSurfDetails*/)
90 if (iY >= iSurfaceSize.iHeight || iX >= iSurfaceSize.iWidth )
102 CVgAnimation* CVgAnimation::NewL(RWindow* aWin, const TDisplayMode& aMode, const TSize& aSurfaceSize,
103 const TInt aHorizontalRate,
104 const TInt aVerticalRate)
106 RDebug::Print(_L("Creating CVgAnimation class\n"));
107 CVgAnimation* self = new (ELeave) CVgAnimation(aMode,aSurfaceSize,aHorizontalRate,aVerticalRate);
108 CleanupStack::PushL(self);
109 self->ConstructL(aWin);
110 CleanupStack::Pop(); // self;
114 CVgAnimation::CVgAnimation(const TDisplayMode& aMode, const TSize& aSurfaceSize, const TInt aHorizontalRate, const TInt aVerticalRate)
115 : CEglBase(aMode,aSurfaceSize,aHorizontalRate,aVerticalRate)
119 void CVgAnimation::ConstructL(RWindow* aWin)
121 BaseConstructL(aWin);
124 TInt ret = eglBindAPI(EGL_OPENVG_API);
125 TestL(ret, _L("eglBindAPI failed"));
127 __ASSERT_DEBUG(iUseConfig>0, User::Panic(_L("CVgAnimation"), KErrArgument));
130 iContext = eglCreateContext(iDisplay, iUseConfig, EGL_NO_CONTEXT, NULL);
131 TestL(iContext!=EGL_NO_CONTEXT, _L("eglCreateContext failed"));
133 // Make surface and context current on the display object
134 ret = eglMakeCurrent(iDisplay, iSurface, iSurface, iContext);
135 TestL(ret, _L("eglMakeCurrent failed"));
137 CheckVgErrorL(_L("VG_Problems creating second surface"));
141 CVgAnimation::~CVgAnimation()
145 void CVgAnimation::CheckVgErrorL(const TDesC& aMessage)
147 VGErrorCode err=vgGetError();
148 if (err != VG_NO_ERROR)
150 RDebug::Print(_L("Error:0x%x - %S"),err,&aMessage);
151 User::Leave(KErrUnknown);