• Home
  • Raw
  • Download

Lines Matching refs:egl

138     if (cnx->egl.eglGetPlatformDisplay) {  in getPlatformDisplayAngle()
165 dpy = cnx->egl.eglGetPlatformDisplay(EGL_PLATFORM_ANGLE_ANGLE, in getPlatformDisplayAngle()
204 if (cnx->egl.eglGetPlatformDisplay) { in getPlatformDisplay()
205 dpy = cnx->egl.eglGetPlatformDisplay(EGL_PLATFORM_ANDROID_KHR, display, in getPlatformDisplay()
216 dpy = cnx->egl.eglGetDisplay(display); in getPlatformDisplay()
276 if (cnx->egl.eglInitialize(idpy, &cnx->major, &cnx->minor)) { in initialize()
284 disp.queryString.vendor = cnx->egl.eglQueryString(idpy, EGL_VENDOR); in initialize()
285 disp.queryString.version = cnx->egl.eglQueryString(idpy, EGL_VERSION); in initialize()
286 disp.queryString.extensions = cnx->egl.eglQueryString(idpy, EGL_EXTENSIONS); in initialize()
287 disp.queryString.clientApi = cnx->egl.eglQueryString(idpy, EGL_CLIENT_APIS); in initialize()
291 egl_tls_t::egl_strerror(cnx->egl.eglGetError())); in initialize()
297 if (!cnx->egl.eglCreateImage || !cnx->egl.eglDestroyImage || in initialize()
298 !cnx->egl.eglGetPlatformDisplay || !cnx->egl.eglCreatePlatformWindowSurface || in initialize()
299 !cnx->egl.eglCreatePlatformPixmapSurface || !cnx->egl.eglCreateSync || in initialize()
300 !cnx->egl.eglDestroySync || !cnx->egl.eglClientWaitSync || in initialize()
301 !cnx->egl.eglGetSyncAttrib || !cnx->egl.eglWaitSync) { in initialize()
426 if (cnx->egl.eglTerminate(disp.dpy) == EGL_FALSE) { in terminate()
428 egl_tls_t::egl_strerror(cnx->egl.eglGetError())); in terminate()
504 result = c->cnx->egl.eglMakeCurrent(disp.dpy, impl_draw, impl_read, impl_ctx); in makeCurrent()
509 result = cur_c->cnx->egl.eglMakeCurrent(disp.dpy, impl_draw, impl_read, impl_ctx); in makeCurrent()