Lines Matching refs:m_eglDisplay

141 	virtual EGLDisplay					getEGLDisplay			(void) const { return m_eglDisplay;				}  in getEGLDisplay()
161 EGLDisplay m_eglDisplay; member in eglu::__anon100ec97c0111::RenderContext
179 , m_eglDisplay (EGL_NO_DISPLAY) in RenderContext()
302 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in makeCurrent()
325 m_eglDisplay = eglu::getDisplay(*m_display); in create()
331 EGLU_CHECK_CALL(egl, initialize(m_eglDisplay, &major, &minor)); in create()
334 m_eglConfig = chooseConfig(egl, m_eglDisplay, config); in create()
339 …const EGLint supportedTypes = eglu::getConfigAttribInt(egl, m_eglDisplay, m_eglConfig, EGL_SURFACE… in create()
357 …facePair windowSurface = createWindow(m_display.get(), windowFactory, m_eglDisplay, m_eglConfig, c… in create()
370 …facePair pixmapSurface = createPixmap(m_display.get(), pixmapFactory, m_eglDisplay, m_eglConfig, c… in create()
380 m_eglSurface = createPBuffer(egl, m_eglDisplay, m_eglConfig, config); in create()
387 …m_eglContext = createGLContext(egl, m_eglDisplay, m_eglConfig, config.type, m_eglSharedContext, co… in create()
389 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in create()
393 if (hasExtension(egl, m_eglDisplay, "EGL_KHR_get_all_proc_addresses")) in create()
453 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_WIDTH, &width); in create()
454 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_HEIGHT, &height); in create()
456 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_RED_SIZE, &pixelFmt.redBits); in create()
457 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_GREEN_SIZE, &pixelFmt.greenBits); in create()
458 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_BLUE_SIZE, &pixelFmt.blueBits); in create()
459 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_ALPHA_SIZE, &pixelFmt.alphaBits); in create()
461 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_DEPTH_SIZE, &depthBits); in create()
462 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_STENCIL_SIZE, &stencilBits); in create()
463 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_SAMPLES, &numSamples); in create()
470 egl.swapInterval(m_eglDisplay, 0); in create()
475 if (m_eglDisplay != EGL_NO_DISPLAY) in destroy()
479 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in destroy()
482 EGLU_CHECK_CALL(egl, destroySurface(m_eglDisplay, m_eglSurface)); in destroy()
485 EGLU_CHECK_CALL(egl, destroyContext(m_eglDisplay, m_eglContext)); in destroy()
488 EGLU_CHECK_CALL(egl, terminate(m_eglDisplay)); in destroy()
490 m_eglDisplay = EGL_NO_DISPLAY; in destroy()
510 EGLBoolean swapOk = egl.swapBuffers(m_eglDisplay, m_eglSurface); in postIterate()
525 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in postIterate()
526 EGLU_CHECK_CALL(egl, destroySurface(m_eglDisplay, m_eglSurface)); in postIterate()
534 … windowSurface = createWindow(m_display.get(), m_nativeWindowFactory, m_eglDisplay, m_eglConfig, m… in postIterate()
538 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in postIterate()
547 egl.makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in postIterate()
548 egl.destroySurface(m_eglDisplay, m_eglSurface); in postIterate()
570 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_WIDTH, &newWidth); in postIterate()
571 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_HEIGHT, &newHeight); in postIterate()