diff options
author | Juan A. Suarez Romero <[email protected]> | 2018-01-15 10:58:50 +0000 |
---|---|---|
committer | Juan A. Suarez Romero <[email protected]> | 2018-01-25 09:54:31 +0100 |
commit | 513c2263cbff45edb105c7b46e58f316e06746ab (patch) | |
tree | 8fde4836139eecdea8e447069689439b953d54f2 /src | |
parent | df13588d2176dcf4800a882d926f389667772b46 (diff) |
mesa: add missing RGB9_E5 format in _mesa_base_fbo_format
This fixes KHR-GL45.internalformat.renderbuffer.rgb9_e5.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/fbobject.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index d23916d1ad7..c72204e11a0 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -1976,6 +1976,9 @@ _mesa_base_fbo_format(const struct gl_context *ctx, GLenum internalFormat) ctx->Extensions.ARB_texture_float) || _mesa_is_gles3(ctx) /* EXT_color_buffer_float */ ) ? GL_RGBA : 0; + case GL_RGB9_E5: + return (_mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_shared_exponent) + ? GL_RGB: 0; case GL_ALPHA16F_ARB: case GL_ALPHA32F_ARB: return ctx->API == API_OPENGL_COMPAT && |