Lines Matching refs:m_eglSurface
154 EGLSurface m_eglSurface; member in eglu::__anon100ec97c0111::RenderContext
170 , m_eglSurface (EGL_NO_SURFACE) in RenderContext()
330 m_eglSurface = windowSurface.second; in create()
343 m_eglSurface = pixmapSurface.second; in create()
351 m_eglSurface = createPBuffer(egl, m_eglDisplay, m_eglConfig, config); in create()
360 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in create()
412 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_WIDTH, &width); in create()
413 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_HEIGHT, &height); in create()
438 if (m_eglSurface != EGL_NO_SURFACE) in destroy()
439 EGLU_CHECK_CALL(egl, destroySurface(m_eglDisplay, m_eglSurface)); in destroy()
447 m_eglSurface = EGL_NO_SURFACE; in destroy()
468 EGLBoolean swapOk = egl.swapBuffers(m_eglDisplay, m_eglSurface); in postIterate()
484 EGLU_CHECK_CALL(egl, destroySurface(m_eglDisplay, m_eglSurface)); in postIterate()
485 m_eglSurface = EGL_NO_SURFACE; in postIterate()
494 m_eglSurface = windowSurface.second; in postIterate()
496 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in postIterate()
503 if (m_eglSurface) in postIterate()
506 egl.destroySurface(m_eglDisplay, m_eglSurface); in postIterate()
507 m_eglSurface = EGL_NO_SURFACE; in postIterate()
528 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_WIDTH, &newWidth); in postIterate()
529 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_HEIGHT, &newHeight); in postIterate()