Lines Matching refs:m_eglDisplay
91 EGLDisplay m_eglDisplay; member in deqp::egl::__anon8dd376690111::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()
391 egl.destroySurface(m_eglDisplay, m_eglSurface); in deinit()
395 if (m_eglDisplay != EGL_NO_DISPLAY) in deinit()
397 egl.terminate(m_eglDisplay); in deinit()
398 m_eglDisplay = EGL_NO_DISPLAY; in deinit()
424 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
425 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
449 …EGLU_CHECK_CALL(egl, surfaceAttrib(m_eglDisplay, m_eglSurface, EGL_SWAP_BEHAVIOR, EGL_BUFFER_PRESE… in iterate()
451 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in iterate()
474 EGLU_CHECK_CALL(egl, swapBuffers(m_eglDisplay, m_eglSurface)); in iterate()