diff options
author | Ian Romanick <[email protected]> | 2011-08-31 11:43:39 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-26 12:14:14 -0700 |
commit | 29386d1f2d60e905d63f4c5f045ff3794b2ff99c (patch) | |
tree | 74c63a1767356ec4f9e6a3c4694720008c87d6fa /src/mesa/main/texformat.c | |
parent | 425284e88244e63a627b3fc4ae4514f064c71a83 (diff) |
mesa: Remove EXT_bgra and EXT_texture_format_BGRA8888 extension enable flags
All drivers remaining in Mesa support this extension. This extension
is either required or optional features in desktop OpenGL, OpenGL ES
1.x, and OpenGL ES 2.x.
EXT_texture_format_BGRA8888 is mostly a subset of EXT_bgra. The only
difference seems to be that EXT_texture_format_BGRA8888 allows GL_BGRA
as an internal format to glTexImage2D and friends.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/texformat.c')
-rw-r--r-- | src/mesa/main/texformat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/texformat.c b/src/mesa/main/texformat.c index 4f02720ce7f..b763a689a11 100644 --- a/src/mesa/main/texformat.c +++ b/src/mesa/main/texformat.c @@ -703,7 +703,9 @@ _mesa_choose_tex_format( struct gl_context *ctx, GLint internalFormat, } } - if (ctx->Extensions.EXT_texture_format_BGRA8888) { + /* GL_BGRA can be an internal format *only* in OpenGL ES (1.x or 2.0). + */ + if (ctx->API != API_OPENGL) { switch (internalFormat) { case GL_BGRA: RETURN_IF_SUPPORTED(MESA_FORMAT_ARGB8888); |