/external/deqp/modules/egl/ |
D | teglSyncTests.cpp | 96 EGLDisplay m_eglDisplay; member in deqp::egl::__anon356dc6e60111::SyncTest 108 , m_eglDisplay (EGL_NO_DISPLAY) in SyncTest() 202 m_eglDisplay = eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay()); in init() 203 m_eglConfig = eglu::chooseSingleConfig(egl, m_eglDisplay, displayAttribList); in init() 209 requiredEGLExtensions(egl, m_eglDisplay, (Extension)(m_extensions | syncTypeExtension)); in init() 214 m_eglContext = egl.createContext(m_eglDisplay, m_eglConfig, EGL_NO_CONTEXT, contextAttribList); in init() 218 …m_nativeWindow = windowFactory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, m_eglC… in init() 219 …createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_nativeWindow, m_eglDisplay, m_eglConfig, D… in init() 221 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in init() 230 if (m_eglDisplay != EGL_NO_DISPLAY) in deinit() [all …]
|
D | teglPreservingSwapTests.cpp | 91 EGLDisplay m_eglDisplay; member in deqp::egl::__anon0c8e14090111::PreservingSwapTest 287 , m_eglDisplay (EGL_NO_DISPLAY) in PreservingSwapTest() 333 …m_window = factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, config, DE_NULL, … in initEGLSurface() 334 …m_eglSurface = eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_window, m_eglDisplay,… in initEGLSurface() 347 m_eglContext = egl.createContext(m_eglDisplay, config, EGL_NO_CONTEXT, attribList); in initEGLContext() 351 egl.makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext); in initEGLContext() 357 m_eglDisplay = eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay()); in init() 358 m_eglConfig = getEGLConfig(m_eglTestCtx.getLibrary(), m_eglDisplay, m_preserveColorbuffer); in init() 384 egl.makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in deinit() 385 egl.destroyContext(m_eglDisplay, m_eglContext); in deinit() [all …]
|
D | teglGLES2SharedRenderingPerfTests.cpp | 122 EGLDisplay m_eglDisplay; member in deqp::egl::__anon3e823a280111::TestContext 483 , m_eglDisplay (eglDisplay) in TestContext() 498 const vector<string> extensions = eglu::getClientExtensions(egl, m_eglDisplay); in TestContext() 505 …m_eglContext = createEGLContext(m_testCtx, m_eglDisplay, eglConfig, (share && parent ? parent->get… in TestContext() 506 m_eglSurface = createEGLSurface(m_testCtx, m_eglDisplay, eglConfig, config); in TestContext() 508 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in TestContext() 588 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in TestContext() 604 …EGLImageKHR image = egl.createImageKHR(m_eglDisplay, m_eglContext, EGL_GL_TEXTURE_2D_KHR, (EGLClie… in createEGLImage() 645 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in ~TestContext() 648 EGLU_CHECK_CALL(egl, destroyImageKHR(m_eglDisplay, m_eglImage)); in ~TestContext() [all …]
|
D | teglGLES2SharingThreadedTests.cpp | 2096 EGLDisplay m_eglDisplay; member in deqp::egl::GLES2SharingRandomTest 2127 , m_eglDisplay (EGL_NO_DISPLAY) in GLES2SharingRandomTest() 2150 m_eglDisplay = eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay()); in init() 2151 m_eglConfig = eglu::chooseSingleConfig(egl, m_eglDisplay, attribList); in init() 2157 requireEGLExtension(egl, m_eglDisplay, "EGL_KHR_fence_sync"); in init() 2160 requireEGLExtension(egl, m_eglDisplay, "EGL_KHR_wait_sync"); in init() 2164 requireEGLExtension(egl, m_eglDisplay, "EGL_KHR_image_base"); in init() 2165 requireEGLExtension(egl, m_eglDisplay, "EGL_KHR_gl_texture_2D_image"); in init() 2175 …m_threads[threadNdx]->addOperation(new GLES2ThreadTest::CreateContext(m_eglDisplay, m_eglConfig, s… in init() 2187 …m_threads[threadNdx]->addOperation(new GLES2ThreadTest::CreatePBufferSurface(m_eglDisplay, m_eglCo… in init() [all …]
|
/external/deqp/framework/egl/ |
D | egluGLContextFactory.cpp | 138 virtual EGLDisplay getEGLDisplay (void) const { return m_eglDisplay; } in getEGLDisplay() 152 EGLDisplay m_eglDisplay; member in eglu::__anoned1c331c0111::RenderContext 169 , m_eglDisplay (EGL_NO_DISPLAY) in RenderContext() 295 m_eglDisplay = eglu::getDisplay(*m_display); in create() 302 EGLU_CHECK_CALL(egl, initialize(m_eglDisplay, &major, &minor)); in create() 305 m_eglConfig = chooseConfig(egl, m_eglDisplay, config); in create() 310 …const EGLint supportedTypes = eglu::getConfigAttribInt(egl, m_eglDisplay, m_eglConfig, EGL_SURFACE… in create() 328 …const WindowSurfacePair windowSurface = createWindow(m_display, windowFactory, m_eglDisplay, m_egl… in create() 341 …const PixmapSurfacePair pixmapSurface = createPixmap(m_display, pixmapFactory, m_eglDisplay, m_egl… in create() 351 m_eglSurface = createPBuffer(egl, m_eglDisplay, m_eglConfig, config); in create() [all …]
|