EGL: Combine the GL and GLES current contexts (v2)
authorKyle Brenneman <kbrenneman@nvidia.com>
Fri, 8 Jul 2016 21:21:17 +0000 (15:21 -0600)
committerAdam Jackson <ajax@redhat.com>
Wed, 7 Sep 2016 15:56:48 +0000 (11:56 -0400)
commit6e066f76ee22909b0653ff8b89429de819e60f14
tree07b82d16ed9c2a74263f8ca92a8dad65875cbc14
parent74b1969d717f2428f0b9dcaaea611e95736120a5
EGL: Combine the GL and GLES current contexts (v2)

Only keep track of a single current context, instead of separate
contexts for GL and GLES.

In EGL 1.4 (and 1.5), EGL_OPENGL_API and EGL_OPENGL_ES_API are supposed
to be interchangeable for all purposes except for eglCreateContext.

The _EGLThreadInfo::CurrentContexts array is now a single pointer to the
current context, which may be a GL or GLES context. In addition, it now
keeps track of the current API as an enum instead of an index.

eglMakeCurrent will now replace the current context, regardless of which
client API is used for for the current and new contexts. It no longer
checks for a conflicting context. In addition, calling eglMakeCurrent
with EGL_NO_CONTEXT will now release the current context regardless of
the current API.

v2: Rebased against master (Adam Jackson)

Reviewed-by: Adam Jackson <ajax@redhat.com>
src/egl/main/eglapi.c
src/egl/main/eglcontext.c
src/egl/main/eglcurrent.c
src/egl/main/eglcurrent.h