mesa: change state query return value for RGB565
authorHaixia Shi <hshi@chromium.org>
Fri, 12 Aug 2016 22:34:09 +0000 (15:34 -0700)
committerChad Versace <chadversary@chromium.org>
Fri, 12 Aug 2016 22:34:09 +0000 (15:34 -0700)
commit8c56ff643b1d6d18d81d82a4d23103a1cd51500a
treeecbfa1ff2d4840400e94a360d7b9da65ba2612cf
parent0bf531aee6a2e6556a6c54f55c2ad23298677adb
mesa: change state query return value for RGB565

The GL_BGR and GL_UNSIGNED_SHORT_5_6_5_REV are not defined anywhere in
OpenGL ES 3.2 (or earlier) specification, and there are no known extensions
in the Khronos registry that would add these enums as valid responses for
glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_TYPE) and
glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_FORMAT) queries.

Note that this patch does not change the bit layout returned by the query. As
defined by the GL spec, the bit layout of GL_RGB + GL_UNSIGNED_SHORT_5_6_5 and
GL_BGR + GL_UNSIGNED_SHORT_5_6_5_REV are identical.

TEST=dEQP-GLES3.functional.state_query.integers.*

Signed-off-by: Haixia Shi <hshi@chromium.org>
Reviewed-by: Chad Versace <chadversary@chromium.org>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Cc: Stéphane Marchesin <marcheu@chromium.org>
Change-Id: I81bbc8ccdc7e125edaeae443baf6fa8fdefcc6b6
src/mesa/main/framebuffer.c