os/graphics/egl/egltest/endpointtestsuite/automated/tsrc/egltest_releaseimagegles_remote.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #include "egltest_releaseimagegles.h"
     2 #include "eglendpointwrap.h"
     3 #include "egltest_surface.h"
     4 
     5 
     6 //Remote test step----------------------------------------------------------------
     7 
     8 CEglTest_RemoteTestStep_EndpointReleaseImageGles::CEglTest_RemoteTestStep_EndpointReleaseImageGles() :
     9     CRemoteTestStepBase(ETestUidEndpointReleaseImageGles)
    10     {
    11     }
    12 
    13 
    14 CEglTest_RemoteTestStep_EndpointReleaseImageGles::~CEglTest_RemoteTestStep_EndpointReleaseImageGles()
    15     {
    16     }
    17 
    18 
    19 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::DoStartRemoteTestStepL(const TRemoteTestParams& /*aMessageIn*/)
    20     {
    21     REMOTE_INFO_PRINTF1(_L("Starting Remote Test Step."));
    22     EglStartL();
    23     
    24     iDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
    25     
    26     //Create a raw surface that will be encapsulated by the endpoint.
    27     iSurface = CRawSurface::NewL();
    28     iSurface->CreateL(EStandardSurface, TPoint(0, 0));
    29 
    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)
    33         {
    34         REMOTE_ERR_PRINTF1(_L("Failed to create endpoint."));
    35         User::Leave(KErrUnknown);
    36         }
    37     
    38     iSurface->DrawContentL(TRgb(128,128,128));
    39     User::LeaveIfError(iSurface->SubmitContent(EFalse));
    40     EGLBoolean ret = EglEndpoint().EndpointBeginStreaming(iDisplay, iEndpoint);
    41     if(!ret)
    42         {
    43         REMOTE_ERR_PRINTF1(_L("Failed to begin streaming from endpoint."));
    44         User::Leave(KErrUnknown);
    45         }
    46     
    47     return ERtvPass;
    48     }
    49 
    50 
    51 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::DoEndRemoteTestStepL(const TRemoteTestParams& /*aMessageIn*/)
    52     {
    53     REMOTE_INFO_PRINTF1(_L("Ending Remote Test Step."));
    54     if(iEndpoint != EGL_NO_ENDPOINT_NOK)
    55         {
    56         EglEndpoint().EndpointEndStreaming(iDisplay, iEndpoint);
    57         EglEndpoint().DestroyEndpoint(iDisplay, iEndpoint);
    58         }
    59     delete iSurface;
    60     EglEndL();
    61     return ERtvPass;
    62     }
    63 
    64 
    65 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::DoRunRemoteTestCaseL(TInt aTestCase, const TRemoteTestParams& aParams)
    66     {
    67     switch(aTestCase)
    68         {
    69         case 0:     return GlesContextTestCaseL(aParams);
    70         default:    return ERtvAbort;
    71         }
    72     }
    73 
    74 
    75 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::GlesContextTestCaseL(const TRemoteTestParams& aParams)
    76     {
    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.
    82     
    83     EGLContext glesContext = EGL_NO_CONTEXT;
    84     EGLSurface glesSurface = EGL_NO_SURFACE;
    85     
    86     //Create GLES state and set it current if the test requires it.
    87     if(aParams.iEndpointReleaseImageGles.iUseValidGlesContext)
    88         {
    89         EGLConfig config;
    90         EGLint nConfigs = 0;
    91         
    92         static const EGLint KConfigAttribs[] =
    93         {
    94             EGL_BUFFER_SIZE,    32,
    95             EGL_RED_SIZE,       8,
    96             EGL_GREEN_SIZE,     8,
    97             EGL_BLUE_SIZE,      8,
    98             EGL_ALPHA_SIZE,     8,
    99             EGL_SURFACE_TYPE,   EGL_PBUFFER_BIT,
   100             EGL_RENDERABLE_TYPE,EGL_OPENGL_ES_BIT,
   101             EGL_NONE
   102         };
   103 
   104         eglChooseConfig(iDisplay, KConfigAttribs, &config, 1, &nConfigs);
   105         if (!nConfigs)
   106             {
   107             RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, eglGetError());
   108             User::Leave(KErrNotSupported);
   109             }
   110     
   111         if (!eglBindAPI(EGL_OPENGL_ES_API))
   112             {
   113             RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, eglGetError());
   114             User::Leave(KErrNotSupported);
   115             }
   116         
   117         glesContext = eglCreateContext(iDisplay, config, 0, NULL);
   118         if (glesContext == EGL_NO_CONTEXT)
   119             {
   120             RDebug::Printf("%s:%d: err = %d", __FILE__, __LINE__, eglGetError());
   121             User::Leave(KErrNotSupported);
   122             }
   123         
   124         static const EGLint KPbufferAttribs[] =
   125             {
   126             EGL_WIDTH, 100,
   127             EGL_HEIGHT, 100,
   128             EGL_NONE,
   129             };
   130         
   131         glesSurface = eglCreatePbufferSurface(iDisplay, config, KPbufferAttribs);
   132         if (glesSurface == EGL_NO_SURFACE)
   133             {
   134             RDebug::Printf("%s:%d: err = %x", __FILE__, __LINE__, eglGetError());
   135             User::Leave(KErrNotSupported);
   136             }
   137         
   138         eglMakeCurrent(iDisplay, glesSurface, glesSurface, glesContext);
   139         }
   140     
   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));
   144     
   145     //Destroy the GLES state if it exists.
   146     if(aParams.iEndpointReleaseImageGles.iUseValidGlesContext)
   147         {
   148         eglMakeCurrent(iDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
   149         eglDestroySurface(iDisplay, glesSurface);
   150         eglDestroyContext(iDisplay, glesContext);
   151         }
   152     
   153     //Releave if the test left or return the verdict.
   154     User::LeaveIfError(err);
   155     return verdict;
   156     }
   157 
   158 
   159 TRemoteTestVerdict CEglTest_RemoteTestStep_EndpointReleaseImageGles::DoGlesContextTestCaseL(const TRemoteTestParams& /*aParams*/)
   160     {
   161     //Draw to the surface and submit the update.
   162     iSurface->DrawContentL(TRgb(128,128,128));
   163     User::LeaveIfError(iSurface->SubmitContent(ETrue));
   164     
   165     //Acquire an image and check that it was successful.
   166     EGLImageKHR image = EglEndpoint().AcquireImage(iDisplay, iEndpoint);
   167     if(image == EGL_NO_IMAGE_KHR)
   168         {
   169         REMOTE_ERR_PRINTF2(_L("Failed to acquire image from endpoint with error = %d"), eglGetError());
   170         return ERtvFail;
   171         }
   172     
   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);
   175     if(!ret)
   176         {
   177         REMOTE_ERR_PRINTF2(_L("Failed to release image from endpoint with error = %d"), eglGetError());
   178         return ERtvFail;
   179         }
   180     
   181     return ERtvPass;
   182     }
   183 
   184 //--------------------------------------------------------------------------------