Home | History | Annotate | Download | only in command_buffer

Lines Matching defs:EGLContext

25 typedef void *EGLContext;
36 #define EGL_NO_CONTEXT ((EGLContext)0)
63 typedef EGLContext (*CreateContextProc)(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint* attrib_list);
64 typedef EGLBoolean (*DestroyContextProc)(EGLDisplay dpy, EGLContext ctx);
65 typedef EGLBoolean (*MakeCurrentProc)(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
167 static EGLContext CurrentContext() {
175 EGLContext ctx) {
193 EGLContext fContext = EGL_NO_CONTEXT;
275 EGLContext eglShareContext = shareContext
276 ? reinterpret_cast<EGLContext>(shareContext->fContext) : nullptr;