os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappvganimation.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "t_pseudoappvganimation.h"
sl@0
    23
sl@0
    24
//for the inner square
sl@0
    25
const TReal32 KTlx = 0;
sl@0
    26
const TReal32 KTly = 0;
sl@0
    27
const TReal32 KSzx = 60;
sl@0
    28
const TReal32 KSzy = 60;
sl@0
    29
sl@0
    30
void CVgAnimation::DrawToEglL()
sl@0
    31
	{
sl@0
    32
    // clear background
sl@0
    33
    VGfloat bgColor[] = {0.0, 0.0, 0.0, 0.0};
sl@0
    34
    vgSetfv(VG_CLEAR_COLOR, 4, bgColor);
sl@0
    35
    vgClear(0, 0, iSurfaceSize.iWidth, iSurfaceSize.iHeight);
sl@0
    36
sl@0
    37
	//paint creation and setting.
sl@0
    38
	vgSeti(VG_BLEND_MODE, VG_BLEND_SRC_OVER);
sl@0
    39
	vgSeti(VG_RENDERING_QUALITY, VG_RENDERING_QUALITY_BETTER);
sl@0
    40
sl@0
    41
	VGPaint fillPaint=vgCreatePaint();
sl@0
    42
	CheckVgErrorL(_L("vgCreatePaint failed"));
sl@0
    43
sl@0
    44
	//the fill paint
sl@0
    45
	VGfloat fillColor[4];
sl@0
    46
	fillColor[0] = 0.0f/255.0f;  //blue
sl@0
    47
	fillColor[1] = 255.0f/255.0f; //red
sl@0
    48
	fillColor[2] = 0.0f/255.0f; //green
sl@0
    49
	fillColor[3] = 255.0f/255.0f; //alpha = required to be 1.0
sl@0
    50
sl@0
    51
	vgSetParameteri(fillPaint, VG_PAINT_TYPE, VG_PAINT_TYPE_COLOR);
sl@0
    52
	CheckVgErrorL(_L("fillPaint VG_PAINT_TYPE failed"));
sl@0
    53
	vgSetParameterfv(fillPaint, VG_PAINT_COLOR, 4, fillColor);
sl@0
    54
	CheckVgErrorL(_L("fillPaint VG_PAINT_COLOR failed"));
sl@0
    55
sl@0
    56
	VGPath	bgPath;
sl@0
    57
	bgPath= vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_S_32, 1.0f, 0.0f, 4, 4, (unsigned int)VG_PATH_CAPABILITY_ALL);
sl@0
    58
	CheckVgErrorL(_L("vgCreatePath failed"));
sl@0
    59
sl@0
    60
	VGUErrorCode vguerr=vguEllipse(bgPath, KTlx, KTly, KSzx, KSzy);
sl@0
    61
	TestL(vguerr==VGU_NO_ERROR, _L("vguRect failed"));
sl@0
    62
	CheckVgErrorL(_L("vguRect failed"));
sl@0
    63
sl@0
    64
	vgSetPaint(fillPaint, VG_FILL_PATH);
sl@0
    65
	CheckVgErrorL(_L("VG_FILL_PATH failed"));
sl@0
    66
sl@0
    67
	vgLoadIdentity();
sl@0
    68
sl@0
    69
    vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE);
sl@0
    70
	CheckVgErrorL(_L("vgLoadIdentity failed"));
sl@0
    71
sl@0
    72
	vgTranslate(iX, iY);
sl@0
    73
sl@0
    74
	vgDrawPath(bgPath, VG_FILL_PATH);
sl@0
    75
	CheckVgErrorL(_L("vgDrawPath failed"));
sl@0
    76
sl@0
    77
	vgDestroyPath(bgPath);
sl@0
    78
	vgDestroyPaint(fillPaint);
sl@0
    79
sl@0
    80
	vgFinish();
sl@0
    81
sl@0
    82
	TInt ret=eglSwapBuffers(iDisplay,iSurface);
sl@0
    83
	TestL(ret,_L("eglSwapBuffers failed"));
sl@0
    84
	}
sl@0
    85
sl@0
    86
void CVgAnimation::DrawL(CTestSurfaceRasterizer*  /*aSurfaceRasterizer*/, SurfaceDetails& /*aSurfDetails*/)
sl@0
    87
	{
sl@0
    88
	DrawToEglL();
sl@0
    89
sl@0
    90
	if (iY >= iSurfaceSize.iHeight || iX >= iSurfaceSize.iWidth )
sl@0
    91
		{
sl@0
    92
		iX=0;
sl@0
    93
		iY=0;
sl@0
    94
		}
sl@0
    95
	else
sl@0
    96
		{
sl@0
    97
		iX+=iHorizontalRate;
sl@0
    98
		iY+=iVerticalRate;
sl@0
    99
		}
sl@0
   100
	}
sl@0
   101
sl@0
   102
CVgAnimation* CVgAnimation::NewL(RWindow* aWin, const TDisplayMode& aMode, const TSize& aSurfaceSize,
sl@0
   103
																		  const TInt aHorizontalRate,
sl@0
   104
																		  const TInt aVerticalRate)
sl@0
   105
	{
sl@0
   106
	RDebug::Print(_L("Creating CVgAnimation class\n"));
sl@0
   107
    CVgAnimation* self = new (ELeave) CVgAnimation(aMode,aSurfaceSize,aHorizontalRate,aVerticalRate);
sl@0
   108
    CleanupStack::PushL(self);
sl@0
   109
    self->ConstructL(aWin);
sl@0
   110
    CleanupStack::Pop(); // self;
sl@0
   111
    return self;
sl@0
   112
	}
sl@0
   113
sl@0
   114
CVgAnimation::CVgAnimation(const TDisplayMode& aMode, const TSize& aSurfaceSize, const TInt aHorizontalRate, const TInt aVerticalRate)
sl@0
   115
: CEglBase(aMode,aSurfaceSize,aHorizontalRate,aVerticalRate)
sl@0
   116
	{
sl@0
   117
	}
sl@0
   118
sl@0
   119
void CVgAnimation::ConstructL(RWindow* aWin)
sl@0
   120
	{
sl@0
   121
	BaseConstructL(aWin);
sl@0
   122
sl@0
   123
	// eglBindAPI
sl@0
   124
	TInt ret = eglBindAPI(EGL_OPENVG_API);
sl@0
   125
	TestL(ret, _L("eglBindAPI failed"));
sl@0
   126
sl@0
   127
	__ASSERT_DEBUG(iUseConfig>0, User::Panic(_L("CVgAnimation"), KErrArgument));
sl@0
   128
sl@0
   129
	// eglCreateContext
sl@0
   130
	iContext = eglCreateContext(iDisplay, iUseConfig, EGL_NO_CONTEXT, NULL);
sl@0
   131
	TestL(iContext!=EGL_NO_CONTEXT, _L("eglCreateContext failed"));
sl@0
   132
sl@0
   133
	// Make surface and context current on the display object
sl@0
   134
	ret = eglMakeCurrent(iDisplay, iSurface, iSurface, iContext);
sl@0
   135
	TestL(ret, _L("eglMakeCurrent failed"));
sl@0
   136
sl@0
   137
	CheckVgErrorL(_L("VG_Problems creating second surface"));
sl@0
   138
	}
sl@0
   139
sl@0
   140
sl@0
   141
CVgAnimation::~CVgAnimation()
sl@0
   142
	{
sl@0
   143
	}
sl@0
   144
sl@0
   145
void CVgAnimation::CheckVgErrorL(const TDesC& aMessage)
sl@0
   146
	{
sl@0
   147
	VGErrorCode err=vgGetError();
sl@0
   148
	if (err != VG_NO_ERROR)
sl@0
   149
		{
sl@0
   150
		RDebug::Print(_L("Error:0x%x - %S"),err,&aMessage);
sl@0
   151
		User::Leave(KErrUnknown);
sl@0
   152
		}
sl@0
   153
	}