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_TESTSURFACERASTERIZER_H__
23 #define __T_TESTSURFACERASTERIZER_H__
27 #include <graphics/surface.h> //TSurfaceId
28 #include <graphics/surfacemanager.h> //RSurfaceManager
29 #include <graphics/surfaceupdateclient.h>
31 #include "t_pseudoapptestresults.h"
33 typedef struct SurfaceDetails
35 TSurfaceId aSurfaceId;
40 class CTestSurfaceRasterizer : public CBase
43 IMPORT_C static CTestSurfaceRasterizer* NewL(const TSurfaceId& aSurfaceId, TInt aSurfaceScreenNumber, RSurfaceManager* aSurfaceManager);
44 IMPORT_C void DrawRect(TUint32* aBuffer, SurfaceDetails& aSurfDetails);
45 IMPORT_C void PerfTestL(TInt aFrameNumber);
46 ~CTestSurfaceRasterizer();
51 CTestSurfaceRasterizer();
52 TBool ConstructL(const TSurfaceId& aSurfaceId, TInt aSurfaceScreenNumber, RSurfaceManager* aSurfaceManager);
53 void SendUpdateRequest(const TPoint aPoint, const TSize aSurfaceSize);
56 TSurfaceId iSurfaceId;
57 TInt iSurfaceScreenNumber;
58 TInt iSurfaceCurrentBuffer;
60 RSurfaceManager* iSurfaceManager;
61 RSurfaceManager::TInfoBuf iInfoBuf;
64 #endif //__T_TESTSURFACERASTERIZER_H__