diff options
author | Brian Paul <[email protected]> | 2009-06-01 20:43:57 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-06-01 20:43:57 -0600 |
commit | a444d245e5098a85c7b1c0f1923300a8ef9a31d6 (patch) | |
tree | fa8e2154a768eb11958030b0dbfbf3aa2ff6c6ef /src/mesa/main/extensions.c | |
parent | 82bc6e5ae351c8486386cfb1080d0ad30a77e924 (diff) |
mesa: enable GL_EXT_provoking_vertex for sw drivers
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index fc8717e057b..c5695f8a689 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -262,6 +262,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) ctx->Extensions.EXT_pixel_buffer_object = GL_TRUE; #endif ctx->Extensions.EXT_point_parameters = GL_TRUE; + ctx->Extensions.EXT_provoking_vertex = GL_TRUE; ctx->Extensions.EXT_shadow_funcs = GL_TRUE; ctx->Extensions.EXT_secondary_color = GL_TRUE; ctx->Extensions.EXT_shared_texture_palette = GL_TRUE; |