OSDN Git Service

Fix EGL shim extension injection for GL ES 3 drivers.
authorAlistair Strachan <alistair.strachan@imgtec.com>
Fri, 22 May 2015 21:10:09 +0000 (14:10 -0700)
committerJesse Hall <jessehall@google.com>
Thu, 28 May 2015 22:34:31 +0000 (15:34 -0700)
commit89301eaf214f0da74c5266e7a548899d5f491b50
tree0a2b2ed131b684635f7fc1d4793abef920d67488
parentf008799d3753e52c10849824ff8146985ea66284
Fix EGL shim extension injection for GL ES 3 drivers.

The Android EGL shim injects GL_EXT_debug_marker into the ES driver
EXTENSIONS string for the OpenGL ES 1.x and 2.0/3.0/3.1 drivers if
the extension is not already provided. This feature is used by
GLES_trace.

In Open GL ES 3.0 it became possible to query an indexed version of
the EXTENSIONS string via GetStringi(). NUM_EXTENSIONS Gets were
also added to the specification (taken from Open GL).

If the shim does not have to inject the extension, then there is no
problem, as glGetString() and glGetStringi() / NUM_EXTENSIONS will
be consistent. However, if the Android EGL shim injects the
extension, NUM_EXTENSIONS and GetStringi() will report one less
extension than is really available.

Consistency between these methods is tested by the dEQP framework
with the dEQP-GLES3.functional.state_query.string.extensions test.
If the driver does not provide GL_EXT_debug_marker, this test
fails.

This change wraps all of the affected entry points so that the
wrapped driver extensions are never visible directly to dEQP,
eliminating the inconsistency.
opengl/libs/EGL/egl.cpp
opengl/libs/EGL/egl_object.cpp
opengl/libs/EGL/egl_object.h
opengl/libs/GLES2/gl2.cpp
opengl/libs/GLES2/gl2_api.in
opengl/libs/egl_impl.h
opengl/tools/glgen2/glgen.py