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 #ifndef __T_PSEUDOAPPVGANIMATION_H__
23 #define __T_PSEUDOAPPVGANIMATION_H__
26 #include "t_pseudoappeglbase.h"
29 * Creates an animation (making use of OpenVG API) of a circle
30 * which moves across the screen on x and y axis
32 class CVgAnimation : public CEglBase
35 static CVgAnimation* NewL(RWindow* aWin, const TDisplayMode& aMode, const TSize& aSurfaceSize,
36 const TInt aHorizontalRate,
37 const TInt aVerticalRate);
39 void DrawL(CTestSurfaceRasterizer* aSurfaceRasterizer, SurfaceDetails& aSurfDetails);
42 CVgAnimation(const TDisplayMode& aMode, const TSize& aSurfaceSize, const TInt aHorizontalRate, const TInt aVerticalRate);
46 void ConstructL(RWindow* aWin);
47 void CheckVgErrorL(const TDesC& aMessage);
50 #endif //__T_PSEUDOAPPVGANIMATION_H__