• Home
  • Raw
  • Download

Lines Matching refs:fDisplay

94     void*                       fDisplay;  member in __anon3e5f26090111::ANGLEGLContext
113 , fDisplay(display) in ANGLEGLContext()
121 if (EGL_NO_DISPLAY == fDisplay) { in ANGLEGLContext()
159 fDisplay = get_angle_egl_display(fDeviceContext, type); in ANGLEGLContext()
162 SkASSERT(EGL_NO_DISPLAY == fDisplay); in ANGLEGLContext()
163 fDisplay = get_angle_egl_display(EGL_DEFAULT_DISPLAY, type); in ANGLEGLContext()
165 if (EGL_NO_DISPLAY == fDisplay) { in ANGLEGLContext()
172 if (!eglInitialize(fDisplay, &majorVersion, &minorVersion)) { in ANGLEGLContext()
190 if (!eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs)) { in ANGLEGLContext()
202 fContext = eglCreateContext(fDisplay, surfaceConfig, eglShareContext, contextAttribs); in ANGLEGLContext()
215 fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, surfaceAttribs); in ANGLEGLContext()
217 if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) { in ANGLEGLContext()
272 EGLCreateImage(fDisplay, fContext, GR_EGL_GL_TEXTURE_2D, clientBuffer, in texture2DToEGLImage()
278 GR_GL_CALL(this->gl(), EGLDestroyImage(fDisplay, image)); in destroyEGLImage()
314 sk_gpu_test::MakeANGLETestContext(fType, fVersion, nullptr, fDisplay); in makeNew()
322 if (EGL_NO_DISPLAY != fDisplay) { in destroyGLContext()
323 eglMakeCurrent(fDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in destroyGLContext()
326 eglDestroyContext(fDisplay, fContext); in destroyGLContext()
331 eglDestroySurface(fDisplay, fSurface); in destroyGLContext()
335 eglTerminate(fDisplay); in destroyGLContext()
336 fDisplay = EGL_NO_DISPLAY; in destroyGLContext()
353 if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) { in onPlatformMakeCurrent()
359 if (!eglSwapBuffers(fDisplay, fSurface)) { in onPlatformSwapBuffers()