diff options
author | Brian Paul <[email protected]> | 2003-09-17 03:32:12 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-17 03:32:12 +0000 |
commit | 458c900d3b6fcf9a939884f843e1cadd5be1ed22 (patch) | |
tree | b07aa29743d4fa356595966ff3a829834e1492c0 /src | |
parent | 978646d86fd19c0f564b01a469ffe0432fc5ab98 (diff) |
set ARB_vertex_buffer_object in _mesa_enable_sw_extensions()
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/extensions.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index dc15d1f2619..6f5f715fc1f 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -156,7 +156,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) { ctx->Extensions.ARB_depth_texture = GL_TRUE; #if FEATURE_ARB_fragment_program - ctx->Extensions.ARB_fragment_program = GL_TRUE; + /*ctx->Extensions.ARB_fragment_program = GL_TRUE;*/ #endif ctx->Extensions.ARB_imaging = GL_TRUE; ctx->Extensions.ARB_multitexture = GL_TRUE; @@ -175,6 +175,9 @@ _mesa_enable_sw_extensions(GLcontext *ctx) #if FEATURE_ARB_vertex_program /*ctx->Extensions.ARB_vertex_program = GL_TRUE;*/ #endif +#if FEATURE_ARB_vertex_buffer_object + ctx->Extensions.ARB_vertex_buffer_object = GL_TRUE; +#endif ctx->Extensions.ATI_texture_env_combine3 = GL_TRUE; ctx->Extensions.ATI_texture_mirror_once = GL_TRUE; ctx->Extensions.EXT_blend_color = GL_TRUE; |