Lines Matching refs:eglSurface
1364 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface eglSurface) in eglDestroySurface() argument
1367 VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE); in eglDestroySurface()
1369 egl_surface_t* surface(static_cast<egl_surface_t*>(eglSurface)); in eglDestroySurface()
1389 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface eglSurface, EGLint attribute, EGLint *value) in eglQuerySurface() argument
1392 VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE); in eglQuerySurface()
1394 egl_surface_t* surface( static_cast<egl_surface_t*>(eglSurface) ); in eglQuerySurface()
1636 EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface eglSurface, EGLint buffer) in eglBindTexImage() argument
1639 VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE); in eglBindTexImage()
1640 if (eglSurface == EGL_NO_SURFACE) { in eglBindTexImage()
1648 egl_surface_t* surface( static_cast<egl_surface_t*>(eglSurface) ); in eglBindTexImage()
2191 EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface eglSurface) in eglSwapBuffers() argument
2194 if (eglSurface == EGL_NO_SURFACE) in eglSwapBuffers()
2199 egl_surface_t* d = static_cast<egl_surface_t*>(eglSurface); in eglSwapBuffers()