Lines Matching refs:eglSurface
719 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface eglSurface) in eglDestroySurface() argument
722 VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE); in eglDestroySurface()
724 egl_surface_t* surface(static_cast<egl_surface_t*>(eglSurface)); in eglDestroySurface()
730 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface eglSurface, EGLint attribute, EGLint *value) in eglQuerySurface() argument
733 VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE); in eglQuerySurface()
735 egl_surface_t* surface( static_cast<egl_surface_t*>(eglSurface) ); in eglQuerySurface()
845 EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface eglSurface, EGLint buffer) in eglBindTexImage() argument
848 VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE); in eglBindTexImage()
849 if (eglSurface == EGL_NO_SURFACE) { in eglBindTexImage()
857 egl_surface_t* surface( static_cast<egl_surface_t*>(eglSurface) ); in eglBindTexImage()
1162 EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface eglSurface) in eglSwapBuffers() argument
1165 if (eglSurface == EGL_NO_SURFACE) in eglSwapBuffers()
1170 egl_surface_t* d = static_cast<egl_surface_t*>(eglSurface); in eglSwapBuffers()