diff -r 000000000000 -r bde4ae8d615e os/graphics/graphicsdeviceinterface/gdi/tgdi/TRGB.H --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/graphics/graphicsdeviceinterface/gdi/tgdi/TRGB.H Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,60 @@ +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#ifndef __TRGB_H__ +#define __TRGB_H__ + +#include +#include "TGraphicsHarness.h" + + +class CTRgb : public CTGraphicsBase + { +public: + CTRgb(CTestStep* aStep); + +protected: +//from CTGraphicsStep + virtual void RunTestCaseL(TInt aCurTestCase); +private: + void TestGray2(); + void TestGray4(); + void TestGray16(); + void TestGray256(); + void TestColor16(); + void TestColor256(); + void TestColor4K(); + void TestColor64K(); + void TestColor16M(); + void TestColor16MU(); + void TestColor16MA(); + void TestColor256Util(); + void TestColor16MAP(); + void ValidatePMAndNPM(TInt aAlpha, TInt aValue, TInt aPreMulVal, TInt aNonPreMulValue); + }; + +class CTRgbStep : public CTGraphicsStep + { +public: + CTRgbStep(); +protected: + //from CTGraphicsStep + virtual CTGraphicsBase* CreateTestL(); + }; + +_LIT(KTRgbStep,"TRgb"); + + +#endif