diff options
author | Mario Kleiner <[email protected]> | 2017-12-15 23:04:56 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-01-03 22:57:56 +0100 |
commit | 01ce3f2cad415ee9c081c87b9aa2e82c64b12b6d (patch) | |
tree | 99bc5a3bec5f1bc8d7ab50fc175b813cf636976e /src/mesa/main | |
parent | cfb98bcdd0ef14939247c5063f255e3f91bf8ce8 (diff) |
mesa: Add GL_RGBA + GL_UNSIGNED_INT_2_10_10_10_REV for OES read type.
This format + type combo is good for BGRA1010102 framebuffers
for use with glReadPixels() under GLES, so add it for the
GL_IMPLEMENTATION_COLOR_READ_TYPE_OES query.
Allows successful testing of 10 bpc / depth 30 rendering with dEQP test
case dEQP-EGL.functional.wide_color.window_1010102_colorspace_default.
Signed-off-by: Mario Kleiner <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/framebuffer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c index b17d7cbc94c..a0de6694d10 100644 --- a/src/mesa/main/framebuffer.c +++ b/src/mesa/main/framebuffer.c @@ -889,6 +889,9 @@ _mesa_get_color_read_type(struct gl_context *ctx, if (format == MESA_FORMAT_B5G6R5_UNORM) return GL_UNSIGNED_SHORT_5_6_5; + if (format == MESA_FORMAT_B10G10R10A2_UNORM) + return GL_UNSIGNED_INT_2_10_10_10_REV; + switch (data_type) { case GL_SIGNED_NORMALIZED: return GL_BYTE; |