os/graphics/egl/egltest/src/egltest_image.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-2010 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
#include "egltest_image.h"
sl@0
    22
sl@0
    23
#include <iniparser.h>
sl@0
    24
#include <test/tefunit.h> // for ASSERT macros
sl@0
    25
sl@0
    26
#include <test/egltestcommonconversion.h>
sl@0
    27
#include <test/egltestcommoninisettings.h>
sl@0
    28
#include <test/egltestcommonsgimageinfo.h>
sl@0
    29
sl@0
    30
sl@0
    31
/**
sl@0
    32
@SYMTestCaseID GRAPHICS-EGL-0107
sl@0
    33
sl@0
    34
@SYMTestPriority 1
sl@0
    35
sl@0
    36
@SYMPREQ 39
sl@0
    37
sl@0
    38
@SYMREQ See SGL.GT0386.401 document
sl@0
    39
sl@0
    40
@SYMTestCaseDesc
sl@0
    41
Tests the use of an EglImageKHR object with OpenVG, using the “EGL_IMAGE_PRESERVED” attribute.
sl@0
    42
This means we can draw to the source RSgImage as soon as it is created.
sl@0
    43
sl@0
    44
@SYMTestActions
sl@0
    45
This test will check for the “VG_KHR_EGL_image” extension, if it is not supported on this platform then the test will return immediately without failure.
sl@0
    46
Create a reference Bitmap
sl@0
    47
Create and fully construct an RSgImage object having the same content as the reference bitmap
sl@0
    48
•	Set the iUsage bit to ESgUsageBitOpenVgImage
sl@0
    49
Pass the RSgImage object into eglCreateImageKHR() with
sl@0
    50
•	The target parameter set to EGL_NATIVE_PIXMAP_KHR
sl@0
    51
•	Use the current display and EGL_NO_CONTEXT
sl@0
    52
•	Use the “EGL_IMAGE_PRESERVED” attribute
sl@0
    53
Check that eglCreateImageKHR() does NOT return EGL_NO_IMAGE_KHR
sl@0
    54
Create and make current and EGL context bound to OVG APIs and linked to a pixmap surface.
sl@0
    55
•	Set the iUsage bit of the underlying RSgImage to ESgUsageBitOpenVgSurface 
sl@0
    56
Use vgCreateEGLImageTargetKHR() to construct a VGImage object from the EGLImage.
sl@0
    57
•	Check for errors
sl@0
    58
Use OpenVG to copy  the VGImage created from the EGLImage to the new pixmap surface currently linked to the context.
sl@0
    59
Call eglWaitClient() to finish the above drawing instructions synchronously.
sl@0
    60
Destroy the original image data
sl@0
    61
•	Pass the VGImage into vgDestroyImage()
sl@0
    62
•	Pass the EGLImage into eglDestroyImageKHR()
sl@0
    63
•	Close the RSgImage
sl@0
    64
Check that the pixmap contains expected pixel values.
sl@0
    65
Destroy the pixmap
sl@0
    66
Check for memory and handle leaks
sl@0
    67
sl@0
    68
@SYMTestExpectedResults
sl@0
    69
eglCreateImageKHR() does NOT return EGL_NO_IMAGE_KHR
sl@0
    70
After each call to an OpenVG method, check that vgGetError() returns VG_NO_ERROR
sl@0
    71
The pixmap contains expected pixel values after the original image data has been destroyed
sl@0
    72
No memory or handle leaks
sl@0
    73
*/
sl@0
    74
TVerdict CEglTest_EGL_Image_RSgImage_UseOpenVG_PersistImageData::doTestStepL()
sl@0
    75
	{
sl@0
    76
	SetTestStepID(_L("GRAPHICS-EGL-0107"));
sl@0
    77
	INFO_PRINTF1(_L("CEglTest_EGL_Image_RSgImage_UseOpenVG::doTestStepL"));
sl@0
    78
sl@0
    79
	TBool ret = CheckForExtensionL(KEGL_RSgimage | KEGL_KHR_image_base | KEGL_KHR_image_pixmap | KVG_KHR_EGL_image);
sl@0
    80
	if(!ret)
sl@0
    81
		{
sl@0
    82
		// The extension is not supported
sl@0
    83
		RecordTestResultL();
sl@0
    84
		CloseTMSGraphicsStep();
sl@0
    85
		return TestStepResult();
sl@0
    86
		}
sl@0
    87
sl@0
    88
	// This test is performed for default pixel format
sl@0
    89
	PrintUsedPixelConfiguration();
sl@0
    90
sl@0
    91
	// Create display object
sl@0
    92
	GetDisplayL();
sl@0
    93
	CreateEglSessionL();
sl@0
    94
	iEglSess->InitializeL();
sl@0
    95
	iEglSess->OpenSgDriverL();
sl@0
    96
sl@0
    97
	// Create RSgImage's attributes.
sl@0
    98
	//This image will become a VGImage. It will be Cleared via vgClear
sl@0
    99
	TSgImageInfoTest imageInfo = TSgImageInfoTest(iSourceFormat, KPixmapSize);
sl@0
   100
#ifdef SYMBIAN_GRAPHICS_EGL_SGIMAGELITE
sl@0
   101
	imageInfo.iUsage = 	ESgUsageBitOpenVgImage | ESgUsageBitOpenVgSurface;
sl@0
   102
#else
sl@0
   103
	imageInfo.iUsage =  ESgUsageOpenVgImage | ESgUsageOpenVgTarget;	
sl@0
   104
#endif	
sl@0
   105
	INFO_PRINTF1(_L("Creating an RSgImage"));
sl@0
   106
	RSgImage sgImage;
sl@0
   107
	CleanupClosePushL(sgImage);
sl@0
   108
	ret = sgImage.Create(imageInfo, NULL, NULL);
sl@0
   109
	ASSERT_EQUALS(ret, KErrNone);
sl@0
   110
sl@0
   111
	INFO_PRINTF1(_L("Calling eglBindAPI(EGL_OPENVG_API)"));
sl@0
   112
	ASSERT_EGL_TRUE(eglBindAPI(EGL_OPENVG_API));
sl@0
   113
sl@0
   114
    EGLint numConfigsWithPre = 0;       
sl@0
   115
    EGLConfig configWithPre;
sl@0
   116
    const EGLint KAttribImagePre[] = { EGL_MATCH_NATIVE_PIXMAP,  reinterpret_cast<EGLint>(&sgImage),
sl@0
   117
                                       EGL_RENDERABLE_TYPE,      EGL_OPENVG_BIT,
sl@0
   118
                                       EGL_SURFACE_TYPE,         EGL_PIXMAP_BIT | EGL_VG_ALPHA_FORMAT_PRE_BIT,
sl@0
   119
                                       EGL_NONE };
sl@0
   120
    ASSERT_EGL_TRUE(eglChooseConfig(iDisplay, KAttribImagePre, &configWithPre, 1, &numConfigsWithPre));
sl@0
   121
sl@0
   122
	// Create a pixmap surface from the native image
sl@0
   123
	INFO_PRINTF1(_L("Calling eglCreatePixmapSurface"));
sl@0
   124
	EGLSurface surface = eglCreatePixmapSurface(iDisplay, configWithPre, &sgImage, KPixmapAttribsVgAlphaFormatPre );
sl@0
   125
	ASSERT_EGL_TRUE(surface != EGL_NO_SURFACE);
sl@0
   126
sl@0
   127
	// Create a context for drawing to/reading from the pixmap surface and make it current
sl@0
   128
	INFO_PRINTF1(_L("Calling eglCreateContext"));
sl@0
   129
	EGLContext context = eglCreateContext(iDisplay, configWithPre, EGL_NO_CONTEXT, NULL);
sl@0
   130
	ASSERT_EGL_TRUE(context != EGL_NO_CONTEXT);
sl@0
   131
sl@0
   132
	INFO_PRINTF1(_L("Calling eglMakeCurrent"));
sl@0
   133
	ASSERT_EGL_TRUE(eglMakeCurrent(iDisplay, surface, surface, context));
sl@0
   134
sl@0
   135
	//Drawing to the current surface (and hence to the RSgImage) to test that the contents are preserved
sl@0
   136
	//create a reference bitmap to use the values (we use index=1) 
sl@0
   137
	TDisplayMode bitmapMode = EglTestConversion::PixelFormatToDisplayMode(iSourceFormat);
sl@0
   138
	CFbsBitmap* bitmap = iEglSess->CreateReferenceBitmapL(bitmapMode, KPixmapSize, 1);
sl@0
   139
	CleanupStack::PushL(bitmap);
sl@0
   140
    // Mind the fact that CFbsBitmap and VGImages use different coordinates origin!
sl@0
   141
	TSize bitmapSize = bitmap->SizeInPixels();
sl@0
   142
	TUint8* address = reinterpret_cast<TUint8*>(bitmap->DataAddress());
sl@0
   143
	TInt stride = bitmap->DataStride();
sl@0
   144
	address += (bitmapSize.iHeight - 1) * stride;
sl@0
   145
	vgWritePixels(address, -stride, KDefaultSurfaceFormat,0,0, bitmapSize.iWidth, bitmapSize.iHeight);
sl@0
   146
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   147
	eglWaitClient();   // wait for writing to finish
sl@0
   148
   	ASSERT_EGL_TRUE(eglDestroySurface(iDisplay, surface));				//Destroying Surface handle
sl@0
   149
sl@0
   150
	INFO_PRINTF1(_L("Create a EGLImage out of the SgImage"));
sl@0
   151
	EGLImageKHR imageKHR = iEglSess->eglCreateImageKhrL(iDisplay,EGL_NO_CONTEXT,EGL_NATIVE_PIXMAP_KHR,&sgImage,KEglImageAttribsPreservedTrue);
sl@0
   152
	ASSERT_EGL_TRUE(imageKHR != EGL_NO_IMAGE_KHR);
sl@0
   153
sl@0
   154
	INFO_PRINTF1(_L("Create a VGImage out of the EGLImage"));
sl@0
   155
	VGImage vgImageTarget = iEglSess->vgCreateImageTargetKHR((VGeglImageKHR)imageKHR);
sl@0
   156
	ASSERT_VG_TRUE(vgImageTarget != VG_INVALID_HANDLE);
sl@0
   157
sl@0
   158
	//Create an OffScreen Pixmap to be used as an OpenVg target using the same config of the previous RSgImage
sl@0
   159
	//except for Usage
sl@0
   160
	imageInfo.iSizeInPixels = KPixmapSize;
sl@0
   161
#ifdef SYMBIAN_GRAPHICS_EGL_SGIMAGELITE
sl@0
   162
	imageInfo.iUsage = ESgUsageBitOpenVgSurface;
sl@0
   163
#else
sl@0
   164
	imageInfo.iUsage = ESgUsageOpenVgTarget;
sl@0
   165
#endif
sl@0
   166
	RSgImage sgImageTarget;
sl@0
   167
	CleanupClosePushL(sgImageTarget);
sl@0
   168
	ret = sgImageTarget.Create(imageInfo, NULL, NULL);
sl@0
   169
	ASSERT_EQUALS(ret, KErrNone);
sl@0
   170
sl@0
   171
	surface = eglCreatePixmapSurface(iDisplay, configWithPre, &sgImageTarget, KPixmapAttribsVgAlphaFormatPre);
sl@0
   172
	ASSERT_EGL_TRUE(surface != EGL_NO_SURFACE);
sl@0
   173
sl@0
   174
	INFO_PRINTF1(_L("Calling eglMakeCurrent"));
sl@0
   175
	ASSERT_EGL_TRUE(eglMakeCurrent(iDisplay, surface, surface, context));
sl@0
   176
sl@0
   177
    //Copy the source VGImage to the surface
sl@0
   178
	vgSetPixels(0, 0, vgImageTarget, 0, 0, KPixmapSize.iWidth, KPixmapSize.iHeight);
sl@0
   179
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   180
	eglWaitClient();
sl@0
   181
sl@0
   182
	vgDestroyImage(vgImageTarget);										//Destroying VGImage handle
sl@0
   183
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   184
	ASSERT_EGL_TRUE(iEglSess->DestroyEGLImage(iDisplay, imageKHR));		//Destroying EGLImage handle
sl@0
   185
	sgImage.Close();													//Destroying SgImage and so the actual data
sl@0
   186
sl@0
   187
	// we can now compare the VgImage to the one we would expect for this particular process
sl@0
   188
	iEglSess->CheckVgDrawingL(iSurfaceFormat, bitmap);
sl@0
   189
	
sl@0
   190
	ASSERT_EGL_TRUE(eglDestroyContext(iDisplay, context));				//Closing eglContext
sl@0
   191
	ASSERT_EGL_TRUE(eglDestroySurface(iDisplay,surface));				//Destroying Target Surface handle
sl@0
   192
	sgImageTarget.Close();												//Destroying 2nd RSgImage handle
sl@0
   193
	
sl@0
   194
	//cleanup
sl@0
   195
	CleanupStack::PopAndDestroy(3,&sgImage); // sgImage, bitmap, sgImageTarget 
sl@0
   196
	CleanAll();
sl@0
   197
	RecordTestResultL();
sl@0
   198
	CloseTMSGraphicsStep();
sl@0
   199
	return TestStepResult();
sl@0
   200
	}
sl@0
   201
sl@0
   202
/**
sl@0
   203
@SYMTestCaseID GRAPHICS-EGL-0108
sl@0
   204
sl@0
   205
@SYMTestPriority 1
sl@0
   206
sl@0
   207
@SYMPREQ 39
sl@0
   208
sl@0
   209
@SYMREQ See SGL.GT0386.401 document
sl@0
   210
sl@0
   211
@SYMTestCaseDesc
sl@0
   212
Ensure that if there are more than one EGLImage and some of them are destroyed,
sl@0
   213
the other images remain workable
sl@0
   214
sl@0
   215
@SYMTestActions
sl@0
   216
Create a reference Bitmap
sl@0
   217
Create and fully construct 4 RSgImage objects having the same content as the reference bitmap
sl@0
   218
•	Set the iUsage bit to ESgUsageBitOpenVgImage
sl@0
   219
Pass the 4 RSgImage objects into eglCreateImageKHR() with
sl@0
   220
•	The target parameter set to EGL_NATIVE_PIXMAP_KHR
sl@0
   221
•	Use the current display and EGL_NO_CONTEXT
sl@0
   222
•	Use a NULL attr_list
sl@0
   223
Check that those calls to eglCreateImageKHR() do NOT return EGL_NO_IMAGE_KHR
sl@0
   224
Create and make current and EGL context bound to OVG APIs and linked to a pixmap surface.
sl@0
   225
•	Set the iUsage bit of the underlying RSgImage to ESgUsageBitOpenVgSurface
sl@0
   226
Use vgCreateEGLImageTargetKHR() to construct VGImage objects from the just created EGLImages.
sl@0
   227
•	Check for errors
sl@0
   228
Destroy all the RSgImages.
sl@0
   229
Pass the 2nd and the 3rd EGLImeges to eglDestroyImageKHR().
sl@0
   230
Call vgDestroyImage on the 2nd VGImage too.
sl@0
   231
Use OpenVG to draw the VGImage created from the 4th EGLImage to the new pixmap surface currently linked to the context.
sl@0
   232
Call eglWaitClient() to finish the above drawing instructions synchronously.
sl@0
   233
Check that the pixmap contains expected pixel values.
sl@0
   234
Clear the destination surface to the default background color
sl@0
   235
Use OpenVG to draw the VGImage created from the 3rd EGLImage to the new pixmap surface currently linked to the context.
sl@0
   236
Call eglWaitClient() to finish the above drawing instructions synchronously.
sl@0
   237
Check that the pixmap contains expected pixel values.
sl@0
   238
Clear the destination surface to the default background color
sl@0
   239
Destroy and restore the 4th VGImage and copy it to the pixmap surface.
sl@0
   240
Call eglWaitClient() to finish the above drawing instructions synchronously.
sl@0
   241
Check that the pixmap contains expected pixel values.
sl@0
   242
Pass all the VGImages left into vgDestroyImage()
sl@0
   243
Pass the EGLImage left into eglDestroyImageKHR()
sl@0
   244
Destroy the pixmap
sl@0
   245
Check for memory and handle leaks
sl@0
   246
sl@0
   247
@SYMTestExpectedResults
sl@0
   248
Pixmap surface has the expected contents
sl@0
   249
No memory or handle leaks
sl@0
   250
sl@0
   251
*/
sl@0
   252
TVerdict CEglTest_EGL_Image_Consistent_Linked_List::doTestStepL()
sl@0
   253
	{
sl@0
   254
	SetTestStepID(_L("GRAPHICS-EGL-0108"));
sl@0
   255
	INFO_PRINTF1(_L("CEglTest_EGL_Image_Consistent_Linked_List::doTestStepL"));
sl@0
   256
sl@0
   257
	TBool ret = CheckForExtensionL(KEGL_RSgimage | KEGL_KHR_image_base | KEGL_KHR_image_pixmap | KVG_KHR_EGL_image);
sl@0
   258
	if(!ret)
sl@0
   259
		{
sl@0
   260
		// The extension is not supported
sl@0
   261
		RecordTestResultL();
sl@0
   262
		CloseTMSGraphicsStep();
sl@0
   263
		return TestStepResult();
sl@0
   264
		}
sl@0
   265
sl@0
   266
	// This test is performed for default pixel format
sl@0
   267
	PrintUsedPixelConfiguration();
sl@0
   268
sl@0
   269
	// Create display object
sl@0
   270
	GetDisplayL();
sl@0
   271
	CreateEglSessionL();
sl@0
   272
	iEglSess->InitializeL();
sl@0
   273
	iEglSess->OpenSgDriverL();
sl@0
   274
sl@0
   275
	// Create a reference bitmap which we use to init the SgImage (we use index=6)
sl@0
   276
	TDisplayMode bitmapMode = EglTestConversion::PixelFormatToDisplayMode(iSourceFormat);
sl@0
   277
	CFbsBitmap* bitmap = iEglSess->CreateReferenceBitmapL(bitmapMode, KPixmapSize, 6);
sl@0
   278
	CleanupStack::PushL(bitmap);
sl@0
   279
	
sl@0
   280
	INFO_PRINTF1(_L("Creating 4 RSgImages"));
sl@0
   281
	TSgImageInfoOpenVgImage imageInfo = TSgImageInfoOpenVgImage(iSourceFormat, KPixmapSize);
sl@0
   282
	RSgImage sgImage1;
sl@0
   283
	CleanupClosePushL(sgImage1);
sl@0
   284
	ASSERT_EQUALS(sgImage1.Create(imageInfo, bitmap->DataAddress(), bitmap->DataStride()), KErrNone);
sl@0
   285
	RSgImage sgImage2;
sl@0
   286
	CleanupClosePushL(sgImage2);
sl@0
   287
	ASSERT_EQUALS(sgImage2.Create(imageInfo, bitmap->DataAddress(), bitmap->DataStride()), KErrNone);
sl@0
   288
	RSgImage sgImage3;
sl@0
   289
	CleanupClosePushL(sgImage3);
sl@0
   290
	ASSERT_EQUALS(sgImage3.Create(imageInfo, bitmap->DataAddress(), bitmap->DataStride()), KErrNone);
sl@0
   291
	RSgImage sgImage4;
sl@0
   292
	CleanupClosePushL(sgImage4);
sl@0
   293
	ASSERT_EQUALS(sgImage4.Create(imageInfo, bitmap->DataAddress(), bitmap->DataStride()), KErrNone);
sl@0
   294
	
sl@0
   295
	INFO_PRINTF1(_L("Creating 4 EGLImages"));
sl@0
   296
	EGLImageKHR imageKHR1 = iEglSess->eglCreateImageKhrL(iDisplay, EGL_NO_CONTEXT, EGL_NATIVE_PIXMAP_KHR, &sgImage1, KEglImageAttribsPreservedTrue);
sl@0
   297
	ASSERT_EGL_TRUE(imageKHR1 != EGL_NO_IMAGE_KHR);
sl@0
   298
	EGLImageKHR imageKHR2 = iEglSess->eglCreateImageKhrL(iDisplay, EGL_NO_CONTEXT, EGL_NATIVE_PIXMAP_KHR, &sgImage2, KEglImageAttribsPreservedTrue);
sl@0
   299
	ASSERT_EGL_TRUE(imageKHR2 != EGL_NO_IMAGE_KHR);
sl@0
   300
	EGLImageKHR imageKHR3 = iEglSess->eglCreateImageKhrL(iDisplay, EGL_NO_CONTEXT, EGL_NATIVE_PIXMAP_KHR, &sgImage3, KEglImageAttribsPreservedTrue);
sl@0
   301
	ASSERT_EGL_TRUE(imageKHR3 != EGL_NO_IMAGE_KHR);
sl@0
   302
	EGLImageKHR imageKHR4 = iEglSess->eglCreateImageKhrL(iDisplay, EGL_NO_CONTEXT, EGL_NATIVE_PIXMAP_KHR, &sgImage4, KEglImageAttribsPreservedTrue);
sl@0
   303
	ASSERT_EGL_TRUE(imageKHR4 != EGL_NO_IMAGE_KHR);
sl@0
   304
	
sl@0
   305
	//Create a Surface and Link it to a Context bound to OpenVG
sl@0
   306
	TUidPixelFormat pixelFormat = EglTestConversion::VgFormatToSgPixelFormat(iSurfaceFormat);
sl@0
   307
	TSgImageInfoOpenVgTarget imageInfo2 = TSgImageInfoOpenVgTarget(pixelFormat, KPixmapSize);
sl@0
   308
	iEglSess->CreatePixmapSurfaceAndMakeCurrentAndMatchL(imageInfo2, CTestEglSession::EResourceCloseSgImageEarly);
sl@0
   309
	
sl@0
   310
    INFO_PRINTF1(_L("Creating 4 VGImages from the four EGLImages"));
sl@0
   311
	VGImage vgImage1 = iEglSess->vgCreateImageTargetKHR((VGeglImageKHR)imageKHR1);
sl@0
   312
	ASSERT_VG_TRUE(vgImage1 != VG_INVALID_HANDLE);
sl@0
   313
	VGImage vgImage2 = iEglSess->vgCreateImageTargetKHR((VGeglImageKHR)imageKHR2);
sl@0
   314
	ASSERT_VG_TRUE(vgImage2 != VG_INVALID_HANDLE);
sl@0
   315
	VGImage vgImage3 = iEglSess->vgCreateImageTargetKHR((VGeglImageKHR)imageKHR3);
sl@0
   316
	ASSERT_VG_TRUE(vgImage3 != VG_INVALID_HANDLE);
sl@0
   317
	VGImage vgImage4 = iEglSess->vgCreateImageTargetKHR((VGeglImageKHR)imageKHR4);
sl@0
   318
	ASSERT_VG_TRUE(vgImage4 != VG_INVALID_HANDLE);
sl@0
   319
	
sl@0
   320
	INFO_PRINTF1(_L("Destroying all RSgImage, the 2nd and the 3rd EGLImage, the 2nd VGImage"));
sl@0
   321
	CleanupStack::PopAndDestroy(4, &sgImage1); 							// closes the 4 RSgImages
sl@0
   322
	ASSERT_EGL_TRUE(iEglSess->DestroyEGLImage(iDisplay, imageKHR2));	//Destroying 2nd EGLImage handle
sl@0
   323
	ASSERT_EGL_TRUE(iEglSess->DestroyEGLImage(iDisplay, imageKHR3));	//Destroying 3rd EGLImage handle
sl@0
   324
	vgDestroyImage(vgImage2);											//Destroying 2nd VGImage handle
sl@0
   325
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   326
	
sl@0
   327
	//Copy the source VGImage to the surface
sl@0
   328
	INFO_PRINTF1(_L("Drawing the 4th VGImage content to the surface"));
sl@0
   329
	vgSetPixels(0, 0, vgImage4, 0, 0, KPixmapSize.iWidth, KPixmapSize.iHeight);
sl@0
   330
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   331
	eglWaitClient();
sl@0
   332
    iEglSess->CheckVgDrawingL(iSurfaceFormat, bitmap);
sl@0
   333
	INFO_PRINTF1(_L("Content is as expected"));
sl@0
   334
	
sl@0
   335
	INFO_PRINTF1(_L("Clear the surface and draw the 3rd VGImage content to the surface"));
sl@0
   336
	VGfloat bgColor[] = {0.25, 0.50, 0.75, 1.0}; // random opaque colour
sl@0
   337
	vgSetfv(VG_CLEAR_COLOR, 4, bgColor);
sl@0
   338
	vgClear(0, 0, KPixmapSize.iWidth, KPixmapSize.iHeight);
sl@0
   339
	ASSERT_EGL_TRUE(vgGetError() == VG_NO_ERROR);
sl@0
   340
	vgSetPixels(0, 0, vgImage3, 0, 0, KPixmapSize.iWidth, KPixmapSize.iHeight);
sl@0
   341
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   342
	eglWaitClient();
sl@0
   343
    iEglSess->CheckVgDrawingL(iSurfaceFormat, bitmap);
sl@0
   344
	INFO_PRINTF1(_L("Content is as expected"));
sl@0
   345
	
sl@0
   346
	INFO_PRINTF1(_L("Clear the surface, destroy the 4th VGImage and, after having it set up again, copy its content to the surface"));
sl@0
   347
	vgSetfv(VG_CLEAR_COLOR, 4, bgColor);
sl@0
   348
	vgClear(0, 0, KPixmapSize.iWidth, KPixmapSize.iHeight);
sl@0
   349
	ASSERT_EGL_TRUE(vgGetError() == VG_NO_ERROR);
sl@0
   350
	vgDestroyImage(vgImage4);													//Destroying 4th VGImage handle
sl@0
   351
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   352
	vgImage4 = VG_INVALID_HANDLE;
sl@0
   353
	vgImage4 = iEglSess->vgCreateImageTargetKHR((VGeglImageKHR)imageKHR4);		//Creating 4th image again
sl@0
   354
	ASSERT_VG_TRUE(vgImage4 != VG_INVALID_HANDLE);
sl@0
   355
	vgSetPixels(0, 0, vgImage4, 0, 0, KPixmapSize.iWidth, KPixmapSize.iHeight);
sl@0
   356
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   357
	eglWaitClient();
sl@0
   358
    iEglSess->CheckVgDrawingL(iSurfaceFormat, bitmap);
sl@0
   359
	INFO_PRINTF1(_L("Content is as expected"));
sl@0
   360
sl@0
   361
	INFO_PRINTF1(_L("Destroying remaining images"));
sl@0
   362
	vgDestroyImage(vgImage1);											//Destroying 1st VGImage handle
sl@0
   363
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   364
	vgDestroyImage(vgImage3);											//Destroying 3rd VGImage handle
sl@0
   365
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   366
	vgDestroyImage(vgImage4);											//Destroying 4th VGImage handle
sl@0
   367
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   368
	ASSERT_EGL_TRUE(iEglSess->DestroyEGLImage(iDisplay, imageKHR1));	//Destroying 1st EGLImage handle
sl@0
   369
	ASSERT_EGL_TRUE(iEglSess->DestroyEGLImage(iDisplay, imageKHR4));	//Destroying 4th EGLImage handle
sl@0
   370
sl@0
   371
	//cleanup
sl@0
   372
	CleanupStack::PopAndDestroy(bitmap);
sl@0
   373
	CleanAll();
sl@0
   374
	RecordTestResultL();
sl@0
   375
	CloseTMSGraphicsStep();
sl@0
   376
	return TestStepResult();
sl@0
   377
	}
sl@0
   378
sl@0
   379
/**
sl@0
   380
@SYMTestCaseID GRAPHICS-EGL-0112
sl@0
   381
sl@0
   382
@SYMTestPriority 1
sl@0
   383
sl@0
   384
@SYMPREQ 39
sl@0
   385
sl@0
   386
@SYMREQ See SGL.GT0386.401 document
sl@0
   387
sl@0
   388
@SYMTestCaseDesc
sl@0
   389
Ensure that the EGL implementation holds a handle to the SgDriver.
sl@0
   390
In this way all the resource may be used even though a call to SgDriver::Close() has been made.
sl@0
   391
sl@0
   392
@SYMTestActions
sl@0
   393
Create a RSgImage with the same content as the reference bitmap.
sl@0
   394
Create a EGLImage from the RSgImage.
sl@0
   395
Close the SgDriver.
sl@0
   396
Create a pbuffer surface, a context and make them current.
sl@0
   397
Create a VGImage from the eglImage.
sl@0
   398
Copy the VGImage to the surface.
sl@0
   399
Check the contents
sl@0
   400
Release all resources.
sl@0
   401
sl@0
   402
@SYMTestExpectedResults
sl@0
   403
If creation of pbuffer fails, silently terminate the test without failing, as it is not mandatory to support
sl@0
   404
a pbuffer format.
sl@0
   405
The surface contains the expected contents. 
sl@0
   406
No memory or handle leaks.
sl@0
   407
*/
sl@0
   408
TVerdict CEglTest_EGL_Image_SgDriverHandle::doTestStepL()
sl@0
   409
	{
sl@0
   410
	SetTestStepID(_L("GRAPHICS-EGL-0112"));
sl@0
   411
	INFO_PRINTF1(_L("CEglTest_EGL_Image_SgDriverHandle::doTestStepL"));
sl@0
   412
sl@0
   413
	TBool ret = CheckForExtensionL(KEGL_RSgimage | KEGL_KHR_image_base | KEGL_KHR_image_pixmap | KVG_KHR_EGL_image);
sl@0
   414
	if(!ret)
sl@0
   415
		{
sl@0
   416
		// The extension is not supported
sl@0
   417
		RecordTestResultL();
sl@0
   418
		CloseTMSGraphicsStep();
sl@0
   419
		return TestStepResult();
sl@0
   420
		}
sl@0
   421
sl@0
   422
	// This test is performed for default pixel format
sl@0
   423
	PrintUsedPixelConfiguration();
sl@0
   424
sl@0
   425
	// Create display object
sl@0
   426
	GetDisplayL();
sl@0
   427
	CreateEglSessionL();
sl@0
   428
	iEglSess->InitializeL();
sl@0
   429
	iEglSess->OpenSgDriverL();
sl@0
   430
sl@0
   431
	RSgImage sgImage;
sl@0
   432
	CleanupClosePushL(sgImage);
sl@0
   433
sl@0
   434
	// Create a reference bitmap which we use to init the SgImage (we use index=6)
sl@0
   435
	TDisplayMode bitmapMode = EglTestConversion::PixelFormatToDisplayMode(iSourceFormat);
sl@0
   436
	CFbsBitmap* bitmap = iEglSess->CreateReferenceBitmapL(bitmapMode, KPixmapSize, 6);
sl@0
   437
	CleanupStack::PushL(bitmap);
sl@0
   438
	
sl@0
   439
	INFO_PRINTF1(_L("Creating 1 RSgImage"));
sl@0
   440
	TSgImageInfoOpenVgImage imageInfo = TSgImageInfoOpenVgImage(iSourceFormat, KPixmapSize);
sl@0
   441
	ASSERT_EQUALS(sgImage.Create(imageInfo, bitmap->DataAddress(), bitmap->DataStride()), KErrNone);
sl@0
   442
	CleanupStack::PopAndDestroy(bitmap);
sl@0
   443
	
sl@0
   444
	INFO_PRINTF1(_L("Creating 1 EGLImage from the RSgImage"));
sl@0
   445
	EGLImageKHR imageKHR = iEglSess->eglCreateImageKhrL(iDisplay, EGL_NO_CONTEXT, EGL_NATIVE_PIXMAP_KHR, &sgImage, KEglImageAttribsPreservedTrue);
sl@0
   446
	ASSERT_EGL_TRUE(imageKHR != EGL_NO_IMAGE_KHR);
sl@0
   447
sl@0
   448
	//close SgImage before closing the SgDriver
sl@0
   449
	CleanupStack::PopAndDestroy(&sgImage);
sl@0
   450
sl@0
   451
	INFO_PRINTF1(_L("Closing the SgDriver now should cause no difference"));
sl@0
   452
	iEglSess->CloseSgDriver();
sl@0
   453
	
sl@0
   454
	// If create pbuffer surface fails, don't fail if there's no matching config (but fail in any other situation):
sl@0
   455
    //		Support for a pbuffer surface is not mandated for any pixel format
sl@0
   456
    //		We should not enforce it in the tests
sl@0
   457
    //		Silently terminate the test without failing.
sl@0
   458
	TEglTestConfig pbufferFormat = EglTestConversion::VgFormatToPBufferSurfaceFormat(iSurfaceFormat);
sl@0
   459
	EGLConfig currentConfig = 0;
sl@0
   460
	TRAPD(res, currentConfig = iEglSess->GetConfigExactMatchL( pbufferFormat ));
sl@0
   461
	if(res == KTestNoMatchingConfig)
sl@0
   462
	    {
sl@0
   463
		WARN_PRINTF2(_L("Can't create pbuffer, format %d. Terminating the test without failing"), pbufferFormat);
sl@0
   464
		ASSERT_EGL_TRUE(iEglSess->DestroyEGLImage(iDisplay, imageKHR));
sl@0
   465
		CleanAll();
sl@0
   466
		RecordTestResultL();
sl@0
   467
		CloseTMSGraphicsStep();
sl@0
   468
		return TestStepResult();
sl@0
   469
	    }
sl@0
   470
    User::LeaveIfError(res); // leave here if any other error was raised other than the one above.
sl@0
   471
	iEglSess->CreatePbufferSurfaceAndMakeCurrentL(currentConfig, KPixmapSizeBigger, EGL_OPENVG_API);
sl@0
   472
	
sl@0
   473
	INFO_PRINTF1(_L("Creating 1 VGImage from the EGLImage"));
sl@0
   474
	VGImage vgImage = iEglSess->vgCreateImageTargetKHR((VGeglImageKHR)imageKHR);
sl@0
   475
	ASSERT_VG_TRUE(vgImage != VG_INVALID_HANDLE);
sl@0
   476
sl@0
   477
    INFO_PRINTF1(_L("Copying the VGImage to the surface"));
sl@0
   478
	vgSetPixels(0, 0, vgImage, 0, 0, KPixmapSize.iWidth, KPixmapSize.iHeight);
sl@0
   479
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   480
	eglWaitClient();
sl@0
   481
	
sl@0
   482
	// Re-create a reference bitmap which we use to init the SgImage (we use index=6)
sl@0
   483
	CFbsBitmap* refBitmap = iEglSess->CreateReferenceBitmapL(bitmapMode, KPixmapSize, 6);
sl@0
   484
	CleanupStack::PushL(refBitmap);
sl@0
   485
	iEglSess->CheckVgDrawingL(iSurfaceFormat, refBitmap);
sl@0
   486
	CleanupStack::PopAndDestroy(refBitmap);
sl@0
   487
	INFO_PRINTF1(_L("Content is as expected"));
sl@0
   488
sl@0
   489
	// destroy eglimage and vgimage
sl@0
   490
	vgDestroyImage(vgImage);
sl@0
   491
	ASSERT_TRUE(vgGetError()==VG_NO_ERROR);
sl@0
   492
	ASSERT_EGL_TRUE(iEglSess->DestroyEGLImage(iDisplay, imageKHR));
sl@0
   493
sl@0
   494
	//cleanup
sl@0
   495
	CleanAll();
sl@0
   496
	RecordTestResultL();
sl@0
   497
	CloseTMSGraphicsStep();
sl@0
   498
	return TestStepResult();
sl@0
   499
	}
sl@0
   500