summaryrefslogtreecommitdiff
path: root/src/mesa/main/extensions.c
diff options
context:
space:
mode:
authorKarl Rasche <karlrasche@gmail.com>2003-11-19 13:15:13 +0000
committerKarl Rasche <karlrasche@gmail.com>2003-11-19 13:15:13 +0000
commit1c27a1e957546ed849b3fd0c35904e9680f113f8 (patch)
tree485cbf480ca63603e25f209f30f5fa5b8b3fc659 /src/mesa/main/extensions.c
parentef563d011b5a11dc5f7a0da6445e68f14cc33062 (diff)
Initial checking of new ARB_frag/vertex program parser
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r--src/mesa/main/extensions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
index fb67683a39..05ae619ea2 100644
--- a/src/mesa/main/extensions.c
+++ b/src/mesa/main/extensions.c
@@ -281,9 +281,11 @@ void
_mesa_enable_1_4_extensions(GLcontext *ctx)
{
ctx->Extensions.ARB_depth_texture = GL_TRUE;
+ ctx->Extensions.ARB_fragment_program = GL_TRUE;
ctx->Extensions.ARB_shadow = GL_TRUE;
ctx->Extensions.ARB_texture_env_crossbar = GL_TRUE;
ctx->Extensions.ARB_texture_mirrored_repeat = GL_TRUE;
+ ctx->Extensions.ARB_vertex_program = GL_TRUE;
ctx->Extensions.ARB_window_pos = GL_TRUE;
ctx->Extensions.EXT_blend_color = GL_TRUE;
ctx->Extensions.EXT_blend_func_separate = GL_TRUE;