os/graphics/egl/egltest/inc/egltestcommonsgimageinfo.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.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
*/
sl@0
    20
sl@0
    21
#ifndef EGLTESTCOMMONSGIMAGEINFO_H
sl@0
    22
#define EGLTESTCOMMONSGIMAGEINFO_H
sl@0
    23
sl@0
    24
#ifdef SYMBIAN_GRAPHICS_EGL_SGIMAGELITE
sl@0
    25
#include <sgresource/sgimage.h>
sl@0
    26
#else
sl@0
    27
#include <graphics/sgimage.h>
sl@0
    28
#endif //SYMBIAN_GRAPHICS_EGL_SGIMAGELITE
sl@0
    29
#include <test/egltestcommonsession.h>
sl@0
    30
sl@0
    31
/* Common base class, TSgImageInfoTest contains constructors,     */
sl@0
    32
/* copy constructor and a comparison operaror                     */
sl@0
    33
/* Constructors can be used to modify the default pixelformat and */
sl@0
    34
/* pixmap size if desired                                         */
sl@0
    35
/* The concept is that the base class will initialise the bulk of */
sl@0
    36
/* the TSgImageInfo member data and each derived class can modify */
sl@0
    37
/* the iUsage variable to be specific to it's particular type     */
sl@0
    38
/* The base class can be instantiated in the rare situation that  */
sl@0
    39
/* the iUsage member var does not match that of any derived class */
sl@0
    40
/* e.g iUsage = ESgUsageBitOpenVgImage | ESgUsageBitOpenVgSurface */
sl@0
    41
sl@0
    42
//Common base class
sl@0
    43
class TSgImageInfoTest : public TSgImageInfo
sl@0
    44
	{
sl@0
    45
public:
sl@0
    46
	IMPORT_C TSgImageInfoTest();
sl@0
    47
	IMPORT_C TSgImageInfoTest(TUidPixelFormat aPixelformat, TSize aSize = KPixmapSize);
sl@0
    48
	IMPORT_C ~TSgImageInfoTest();
sl@0
    49
	void operator=(const TSgImageInfo& aInfo);
sl@0
    50
	TBool operator==(const TSgImageInfo& aInfo);
sl@0
    51
	};
sl@0
    52
sl@0
    53
/* OpenVgImage Child variant */
sl@0
    54
class TSgImageInfoOpenVgImage : public TSgImageInfoTest
sl@0
    55
	{
sl@0
    56
public:
sl@0
    57
	IMPORT_C TSgImageInfoOpenVgImage();
sl@0
    58
	IMPORT_C TSgImageInfoOpenVgImage(TUidPixelFormat aPixelFormat, TSize aSize = KPixmapSize);
sl@0
    59
	IMPORT_C ~TSgImageInfoOpenVgImage();
sl@0
    60
	};
sl@0
    61
sl@0
    62
/* OpenVgTarget Child variant */
sl@0
    63
class TSgImageInfoOpenVgTarget : public TSgImageInfoTest
sl@0
    64
	{
sl@0
    65
public:
sl@0
    66
	IMPORT_C TSgImageInfoOpenVgTarget();
sl@0
    67
	IMPORT_C TSgImageInfoOpenVgTarget(TUidPixelFormat aPixelFormat, TSize aSize = KPixmapSize);
sl@0
    68
	IMPORT_C ~TSgImageInfoOpenVgTarget();
sl@0
    69
	};
sl@0
    70
sl@0
    71
#endif // EGLTESTCOMMONSGIMAGEINFO_H