diff options
author | Brian Paul <[email protected]> | 2009-01-23 11:29:05 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-01-23 11:29:05 -0700 |
commit | b8fc605cdb741bd409dbca44150a7ba262b6f157 (patch) | |
tree | d955b8bab44ae9b8f16005b2a656133f418c5c49 /src/mesa/main/extensions.c | |
parent | 42c07d1500c0fc948f17f3eb1c3d527aeb428bd0 (diff) | |
parent | dab586b0755bffa7c4da0fdc571e0f504f4066c2 (diff) |
Merge branch 'vertex_array_bgra'
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 738fda34ddb..43c9d4a7885 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -129,6 +129,7 @@ static const struct { { OFF, "GL_EXT_texture_sRGB", F(EXT_texture_sRGB) }, { OFF, "GL_EXT_timer_query", F(EXT_timer_query) }, { ON, "GL_EXT_vertex_array", F(EXT_vertex_array) }, + { OFF, "GL_EXT_vertex_array_bgra", F(EXT_vertex_array_bgra) }, { OFF, "GL_EXT_vertex_array_set", F(EXT_vertex_array_set) }, { OFF, "GL_3DFX_texture_compression_FXT1", F(TDFX_texture_compression_FXT1) }, { OFF, "GL_APPLE_client_storage", F(APPLE_client_storage) }, @@ -271,6 +272,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) #if FEATURE_EXT_texture_sRGB ctx->Extensions.EXT_texture_sRGB = GL_TRUE; #endif + ctx->Extensions.EXT_vertex_array_bgra = GL_TRUE; ctx->Extensions.IBM_multimode_draw_arrays = GL_TRUE; ctx->Extensions.MESA_pack_invert = GL_TRUE; #if FEATURE_MESA_program_debug |