aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2018-11-09 16:47:46 -0500
committerMarek Olšák <[email protected]>2018-11-12 16:19:43 -0500
commit32a334777ce2acd2cebfc834853b768eab469e51 (patch)
tree76716f60430aa3eb85ad943fff2ba520cfb4285e /src
parente0c7114eb3c19d4c2653f661698a6baa3bc9bedf (diff)
mesa: mark GL_SR8_EXT non-renderable on GLES
Fixes: dEQP-GLES3.functional.fbo.completeness.renderable.texture.color0.sr8_ext Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/fbobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index c3dded6b928..68e0daf3423 100644
--- a/src/mesa/main/fbobject.c
+++ b/src/mesa/main/fbobject.c
@@ -750,6 +750,7 @@ is_format_color_renderable(const struct gl_context *ctx, mesa_format format,
case GL_SRGB8:
case GL_RGB10:
case GL_RGB9_E5:
+ case GL_SR8_EXT:
return GL_FALSE;
default:
break;