• Home
  • Raw
  • Download

Lines Matching refs:surface

509         EGLSurface surface = cnx->egl.eglCreateWindowSurface(  in eglCreateWindowSurface()  local
511 if (surface != EGL_NO_SURFACE) { in eglCreateWindowSurface()
513 surface, cnx); in eglCreateWindowSurface()
533 EGLSurface surface = cnx->egl.eglCreatePixmapSurface( in eglCreatePixmapSurface() local
535 if (surface != EGL_NO_SURFACE) { in eglCreatePixmapSurface()
537 surface, cnx); in eglCreatePixmapSurface()
552 EGLSurface surface = cnx->egl.eglCreatePbufferSurface( in eglCreatePbufferSurface() local
554 if (surface != EGL_NO_SURFACE) { in eglCreatePbufferSurface()
556 surface, cnx); in eglCreatePbufferSurface()
563 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface) in eglDestroySurface() argument
570 SurfaceRef _s(dp.get(), surface); in eglDestroySurface()
574 egl_surface_t * const s = get_surface(surface); in eglDestroySurface()
575 EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface); in eglDestroySurface()
582 EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface, in eglQuerySurface() argument
590 SurfaceRef _s(dp.get(), surface); in eglQuerySurface()
594 egl_surface_t const * const s = get_surface(surface); in eglQuerySurface()
596 dp->disp.dpy, s->surface, attribute, value); in eglQuerySurface()
599 void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) { in eglBeginFrame() argument
608 SurfaceRef _s(dp.get(), surface); in eglBeginFrame()
744 impl_draw = d->surface; in eglMakeCurrent()
751 impl_read = r->surface; in eglMakeCurrent()
1105 return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface); in eglSwapBuffers()
1108 EGLBoolean eglCopyBuffers( EGLDisplay dpy, EGLSurface surface, in eglCopyBuffers() argument
1116 SurfaceRef _s(dp.get(), surface); in eglCopyBuffers()
1120 egl_surface_t const * const s = get_surface(surface); in eglCopyBuffers()
1121 return s->cnx->egl.eglCopyBuffers(dp->disp.dpy, s->surface, target); in eglCopyBuffers()
1169 EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) in eglSurfaceAttrib() argument
1176 SurfaceRef _s(dp.get(), surface); in eglSurfaceAttrib()
1180 egl_surface_t const * const s = get_surface(surface); in eglSurfaceAttrib()
1183 dp->disp.dpy, s->surface, attribute, value); in eglSurfaceAttrib()
1189 EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglBindTexImage() argument
1196 SurfaceRef _s(dp.get(), surface); in eglBindTexImage()
1200 egl_surface_t const * const s = get_surface(surface); in eglBindTexImage()
1203 dp->disp.dpy, s->surface, buffer); in eglBindTexImage()
1209 EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglReleaseTexImage() argument
1216 SurfaceRef _s(dp.get(), surface); in eglReleaseTexImage()
1220 egl_surface_t const * const s = get_surface(surface); in eglReleaseTexImage()
1223 dp->disp.dpy, s->surface, buffer); in eglReleaseTexImage()
1340 EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface, in eglLockSurfaceKHR() argument
1348 SurfaceRef _s(dp.get(), surface); in eglLockSurfaceKHR()
1352 egl_surface_t const * const s = get_surface(surface); in eglLockSurfaceKHR()
1355 dp->disp.dpy, s->surface, attrib_list); in eglLockSurfaceKHR()
1360 EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface) in eglUnlockSurfaceKHR() argument
1367 SurfaceRef _s(dp.get(), surface); in eglUnlockSurfaceKHR()
1371 egl_surface_t const * const s = get_surface(surface); in eglUnlockSurfaceKHR()
1373 return s->cnx->egl.eglUnlockSurfaceKHR(dp->disp.dpy, s->surface); in eglUnlockSurfaceKHR()
1534 EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface, in eglPresentationTimeANDROID() argument
1544 SurfaceRef _s(dp.get(), surface); in eglPresentationTimeANDROID()
1550 egl_surface_t const * const s = get_surface(surface); in eglPresentationTimeANDROID()