os/graphics/egl/egltest/endpointtestsuite/automated/tsrc/egltest_releaseimagegles_remote.cpp
Update contrib.
1 #include "egltest_releaseimagegles.h"
2 #include "eglendpointwrap.h"
3 #include "egltest_surface.h"
6 //Remote test step----------------------------------------------------------------
8 CEglTest_RemoteTestStep_EndpointReleaseImageGles::CEglTest_RemoteTestStep_EndpointReleaseImageGles() :
9 CRemoteTestStepBase(ETestUidEndpointReleaseImageGles)
14 CEglTest_RemoteTestStep_EndpointReleaseImageGles::~CEglTest_RemoteTestStep_EndpointReleaseImageGles()
19 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::DoStartRemoteTestStepL(const TRemoteTestParams& /*aMessageIn*/)
21 REMOTE_INFO_PRINTF1(_L("Starting Remote Test Step."));
24 iDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
26 //Create a raw surface that will be encapsulated by the endpoint.
27 iSurface = CRawSurface::NewL();
28 iSurface->CreateL(EStandardSurface, TPoint(0, 0));
30 TSurfaceId id = iSurface->SurfaceId();
31 iEndpoint = EglEndpoint().CreateEndpoint(iDisplay, EGL_ENDPOINT_TYPE_CONSUMER_NOK, EGL_TSURFACEID_NOK, &id, NULL);
32 if(iEndpoint == EGL_NO_ENDPOINT_NOK)
34 REMOTE_ERR_PRINTF1(_L("Failed to create endpoint."));
35 User::Leave(KErrUnknown);
38 iSurface->DrawContentL(TRgb(128,128,128));
39 User::LeaveIfError(iSurface->SubmitContent(EFalse));
40 EGLBoolean ret = EglEndpoint().EndpointBeginStreaming(iDisplay, iEndpoint);
43 REMOTE_ERR_PRINTF1(_L("Failed to begin streaming from endpoint."));
44 User::Leave(KErrUnknown);
51 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::DoEndRemoteTestStepL(const TRemoteTestParams& /*aMessageIn*/)
53 REMOTE_INFO_PRINTF1(_L("Ending Remote Test Step."));
54 if(iEndpoint != EGL_NO_ENDPOINT_NOK)
56 EglEndpoint().EndpointEndStreaming(iDisplay, iEndpoint);
57 EglEndpoint().DestroyEndpoint(iDisplay, iEndpoint);
65 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::DoRunRemoteTestCaseL(TInt aTestCase, const TRemoteTestParams& aParams)
69 case 0: return GlesContextTestCaseL(aParams);
70 default: return ERtvAbort;
75 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::GlesContextTestCaseL(const TRemoteTestParams& aParams)
77 //This test case acquires an image from an endpoint then attempts to
78 //release the image, passing in EGL_OPENGL_ES_API as the API flag.
79 //There are two configurations for the test, that is controlled by
80 //a flag in aParams. The options are to have a valid GLES context
81 //set current, or to have nothing current.
83 EGLContext glesContext = EGL_NO_CONTEXT;
84 EGLSurface glesSurface = EGL_NO_SURFACE;
86 //Create GLES state and set it current if the test requires it.
87 if(aParams.iEndpointReleaseImageGles.iUseValidGlesContext)
92 static const EGLint KConfigAttribs[] =
99 EGL_SURFACE_TYPE, EGL_PBUFFER_BIT,
100 EGL_RENDERABLE_TYPE,EGL_OPENGL_ES_BIT,
104 eglChooseConfig(iDisplay, KConfigAttribs, &config, 1, &nConfigs);
107 RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, eglGetError());
108 User::Leave(KErrNotSupported);
111 if (!eglBindAPI(EGL_OPENGL_ES_API))
113 RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, eglGetError());
114 User::Leave(KErrNotSupported);
117 glesContext = eglCreateContext(iDisplay, config, 0, NULL);
118 if (glesContext == EGL_NO_CONTEXT)
120 RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, eglGetError());
121 User::Leave(KErrNotSupported);
124 static const EGLint KPbufferAttribs[] =
131 glesSurface = eglCreatePbufferSurface(iDisplay, config, KPbufferAttribs);
132 if (glesSurface == EGL_NO_SURFACE)
134 RDebug::Printf("%s:%d: err = %x", __FILE__, __LINE__, eglGetError());
135 User::Leave(KErrNotSupported);
138 eglMakeCurrent(iDisplay, glesSurface, glesSurface, glesContext);
141 //Run the test case ansd trap to give us an opportunity to destroy the GLES state if it exists.
142 TRemoteTestVerdict verdict = ERtvPass;
143 TRAPD(err, verdict = DoGlesContextTestCaseL(aParams));
145 //Destroy the GLES state if it exists.
146 if(aParams.iEndpointReleaseImageGles.iUseValidGlesContext)
148 eglMakeCurrent(iDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
149 eglDestroySurface(iDisplay, glesSurface);
150 eglDestroyContext(iDisplay, glesContext);
153 //Releave if the test left or return the verdict.
154 User::LeaveIfError(err);
159 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::DoGlesContextTestCaseL(const TRemoteTestParams& /*aParams*/)
161 //Draw to the surface and submit the update.
162 iSurface->DrawContentL(TRgb(128,128,128));
163 User::LeaveIfError(iSurface->SubmitContent(ETrue));
165 //Acquire an image and check that it was successful.
166 EGLImageKHR image = EglEndpoint().AcquireImage(iDisplay, iEndpoint);
167 if(image == EGL_NO_IMAGE_KHR)
169 REMOTE_ERR_PRINTF2(_L("Failed to acquire image from endpoint with error = %d"), eglGetError());
173 //Attempt to release the image. This must always succeed regardless of whether there is a valid GLES context.
174 EGLBoolean ret = EglEndpoint().ReleaseImage(iDisplay, iEndpoint, image, EGL_OPENGL_ES_API);
177 REMOTE_ERR_PRINTF2(_L("Failed to release image from endpoint with error = %d"), eglGetError());
184 //--------------------------------------------------------------------------------