diff options
author | Oliver McFadden <[email protected]> | 2012-09-11 09:54:00 +0300 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2012-09-15 12:57:13 +0300 |
commit | 6c4cddadaab3b81410a523ff963c1e6c177c8a9f (patch) | |
tree | 4128414c3b66f835ece62f9b2b69fc87e94a7f62 /src/mesa/main/extensions.c | |
parent | 5489fc7b9f17de35af87cb7ceb464716dd1f946e (diff) |
mesa: remove FEATURE_ARB_vertex_shader define.
Signed-off-by: Oliver McFadden <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index dc5ea7843b3..aaee0afb134 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -438,9 +438,7 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) #if FEATURE_ARB_vertex_program ctx->Extensions.ARB_vertex_program = GL_TRUE; #endif -#if FEATURE_ARB_vertex_shader ctx->Extensions.ARB_vertex_shader = GL_TRUE; -#endif #if FEATURE_ARB_sync ctx->Extensions.ARB_sync = GL_TRUE; #endif @@ -596,9 +594,7 @@ _mesa_enable_2_0_extensions(struct gl_context *ctx) ctx->Extensions.ARB_shading_language_100 = GL_TRUE; #endif ctx->Extensions.EXT_stencil_two_side = GL_TRUE; -#if FEATURE_ARB_vertex_shader ctx->Extensions.ARB_vertex_shader = GL_TRUE; -#endif } |