Lines Matching refs:mEGLDisplay
275 mEGLDisplay(display), in SkiaGLRenderEngine()
284 eglDestroySurface(mEGLDisplay, mPlaceholderSurface); in ~SkiaGLRenderEngine()
287 eglDestroySurface(mEGLDisplay, mProtectedPlaceholderSurface); in ~SkiaGLRenderEngine()
290 eglDestroyContext(mEGLDisplay, mEGLContext); in ~SkiaGLRenderEngine()
293 eglDestroyContext(mEGLDisplay, mProtectedEGLContext); in ~SkiaGLRenderEngine()
295 eglMakeCurrent(mEGLDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in ~SkiaGLRenderEngine()
296 eglTerminate(mEGLDisplay); in ~SkiaGLRenderEngine()
330 return eglMakeCurrent(mEGLDisplay, surface, surface, context) == EGL_TRUE; in useProtectedContextImpl()
382 EGLSyncKHR sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_NATIVE_FENCE_ANDROID, attribs); in waitGpuFence()
391 eglWaitSyncKHR(mEGLDisplay, sync, 0); in waitGpuFence()
393 eglDestroySyncKHR(mEGLDisplay, sync); in waitGpuFence()
408 EGLSyncKHR sync = eglCreateSyncKHR(mEGLDisplay, EGL_SYNC_NATIVE_FENCE_ANDROID, nullptr); in flushGL()
418 base::unique_fd fenceFd(eglDupNativeFenceFDANDROID(mEGLDisplay, sync)); in flushGL()
419 eglDestroySyncKHR(mEGLDisplay, sync); in flushGL()
540 eglQueryContext(mEGLDisplay, mEGLContext, EGL_CONTEXT_PRIORITY_LEVEL_IMG, &value); in getContextPriority()