summaryrefslogtreecommitdiff
path: root/src/mesa/main/context.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-10-14 14:15:26 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-10-14 14:18:08 +0100
commit568e96b4533c5135f4d7f568a81cdfc0a6dcd7eb (patch)
tree9fc31ef83e06205e71c957eba8deba5034a6843e /src/mesa/main/context.c
parent6d4d51d647c27288aa625560bc080231099c0b01 (diff)
mesa: modify fixed function vertex programs not to reference constant attributes
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r--src/mesa/main/context.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 144da61384..e5ec35c77f 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -1064,6 +1064,7 @@ init_attrib_groups(GLcontext *ctx)
ctx->NewState = _NEW_ALL;
ctx->ErrorValue = (GLenum) GL_NO_ERROR;
ctx->_Facing = 0;
+ ctx->varying_vp_inputs = ~0;
return GL_TRUE;
}