gles2: Add GL_EXT_texture_format_BGRA8888 support

This commit is contained in:
Kristian Høgsberg
2010-10-07 17:03:53 -04:00
parent 321ec1a224
commit 1d595c7cd4
4 changed files with 16 additions and 1 deletions

View File

@@ -211,6 +211,7 @@ static const struct {
{ ON, "GL_SGIS_texture_lod", F(SGIS_texture_lod) },
{ ON, "GL_SUN_multi_draw_arrays", F(EXT_multi_draw_arrays) },
{ OFF, "GL_S3_s3tc", F(S3_s3tc) },
{ OFF, "GL_EXT_texture_format_BGRA8888", F(EXT_texture_format_BGRA8888) },
#if FEATURE_OES_EGL_image
{ OFF, "GL_OES_EGL_image", F(OES_EGL_image) },
#endif
@@ -894,6 +895,9 @@ make_extension_string_es2(const GLcontext *ctx, GLubyte *str)
len += append_extension(&str, "GL_OES_EGL_image");
#endif
if (ctx->Extensions.EXT_texture_format_BGRA8888)
len += append_extension(&str, "GL_EXT_texture_format_BGRA8888");
return len;
}