diff options
| author | Brian Paul <brianp@vmware.com> | 2010-03-30 19:53:28 -0600 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2010-03-30 20:04:04 -0600 | 
| commit | 4e9f07544821fbf7e7b079871c83555042073848 (patch) | |
| tree | edc2e060ef9454783cc5e4eae5d0fb263cb4fa4d /src | |
| parent | 066f0097959fe705c57556b658a09af0ba6be8fb (diff) | |
mesa: add EXT_transform_feedback to extension list
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/main/extensions.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index ca992d1261..f7b0e5abf5 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -146,6 +146,7 @@ static const struct {     { OFF, "GL_EXT_texture_sRGB",               F(EXT_texture_sRGB) },     { OFF, "GL_EXT_texture_swizzle",            F(EXT_texture_swizzle) },     { OFF, "GL_EXT_timer_query",                F(EXT_timer_query) }, +   { OFF, "GL_EXT_transform_feedback",         F(EXT_transform_feedback) },     { 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) }, @@ -319,6 +320,9 @@ _mesa_enable_sw_extensions(GLcontext *ctx)     ctx->Extensions.EXT_texture_sRGB = GL_TRUE;  #endif     ctx->Extensions.EXT_texture_swizzle = GL_TRUE; +#if FEATURE_EXT_transform_feedback +   ctx->Extensions.EXT_transform_feedback = 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; | 
