os/graphics/windowing/windowserver/test/t_integ/inc/t_testsurfacerasterizer.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #ifndef __T_TESTSURFACERASTERIZER_H__
    23 #define __T_TESTSURFACERASTERIZER_H__
    24 
    25 #include <e32base.h>
    26 #include <e32std.h>
    27 #include <graphics/surface.h>		//TSurfaceId
    28 #include <graphics/surfacemanager.h>	//RSurfaceManager
    29 #include <graphics/surfaceupdateclient.h>
    30 
    31 #include "t_pseudoapptestresults.h"
    32 
    33 typedef struct SurfaceDetails
    34 	{
    35 	TSurfaceId aSurfaceId;
    36 	TSize aSurfaceSize;
    37 	TInt aBufferNumber;
    38 	}SurfaceDetails;
    39 
    40 class CTestSurfaceRasterizer : public CBase
    41 	{
    42 public:
    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();
    47 
    48 protected:
    49 
    50 private:
    51 	CTestSurfaceRasterizer();
    52 	TBool ConstructL(const TSurfaceId& aSurfaceId, TInt aSurfaceScreenNumber, RSurfaceManager* aSurfaceManager);
    53 	void SendUpdateRequest(const TPoint aPoint, const TSize aSurfaceSize);
    54 
    55 private:
    56 	TSurfaceId iSurfaceId;
    57 	TInt iSurfaceScreenNumber;
    58 	TInt iSurfaceCurrentBuffer;
    59 	RChunk iChunk;
    60 	RSurfaceManager* iSurfaceManager;
    61 	RSurfaceManager::TInfoBuf iInfoBuf;
    62 	};
    63 
    64 #endif	//__T_TESTSURFACERASTERIZER_H__