• Home
  • Raw
  • Download

Lines Matching refs:m_eglDisplay

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()
358 m_eglContext = createGLContext(egl, m_eglDisplay, m_eglConfig, config.type); in create()
360 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in create()
364 if (hasExtension(egl, m_eglDisplay, "EGL_KHR_get_all_proc_addresses")) 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()
415 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_RED_SIZE, &pixelFmt.redBits); in create()
416 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_GREEN_SIZE, &pixelFmt.greenBits); in create()
417 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_BLUE_SIZE, &pixelFmt.blueBits); in create()
418 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_ALPHA_SIZE, &pixelFmt.alphaBits); in create()
420 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_DEPTH_SIZE, &depthBits); in create()
421 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_STENCIL_SIZE, &stencilBits); in create()
422 egl.getConfigAttrib(m_eglDisplay, m_eglConfig, EGL_SAMPLES, &numSamples); in create()
434 if (m_eglDisplay != EGL_NO_DISPLAY) in destroy()
436 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in destroy()
439 EGLU_CHECK_CALL(egl, destroySurface(m_eglDisplay, m_eglSurface)); in destroy()
442 EGLU_CHECK_CALL(egl, destroyContext(m_eglDisplay, m_eglContext)); in destroy()
444 EGLU_CHECK_CALL(egl, terminate(m_eglDisplay)); in destroy()
446 m_eglDisplay = EGL_NO_DISPLAY; in destroy()
468 EGLBoolean swapOk = egl.swapBuffers(m_eglDisplay, m_eglSurface); in postIterate()
483 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in postIterate()
484 EGLU_CHECK_CALL(egl, destroySurface(m_eglDisplay, m_eglSurface)); in postIterate()
492 …WindowSurfacePair windowSurface = createWindow(m_display, m_nativeWindowFactory, m_eglDisplay, m_e… in postIterate()
496 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in postIterate()
505 egl.makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in postIterate()
506 egl.destroySurface(m_eglDisplay, m_eglSurface); 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()