diff options
author | Keith Whitwell <[email protected]> | 2008-10-14 14:15:26 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-10-14 14:18:08 +0100 |
commit | 568e96b4533c5135f4d7f568a81cdfc0a6dcd7eb (patch) | |
tree | 9fc31ef83e06205e71c957eba8deba5034a6843e /src/mesa/main/context.c | |
parent | 6d4d51d647c27288aa625560bc080231099c0b01 (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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 144da613843..e5ec35c77fd 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; } |