diff options
author | Michal Krol <[email protected]> | 2005-01-18 12:04:53 +0000 |
---|---|---|
committer | Michal Krol <[email protected]> | 2005-01-18 12:04:53 +0000 |
commit | 092af29ea18723558a194e20375dce6e53a06bd8 (patch) | |
tree | bf5793d36e4c01b73b8cedeefecf264e907f8302 /src/mesa/main/get_gen.py | |
parent | af72b4dd8e7f752786ae785795c726c2aada6ae8 (diff) |
fix MAX_VERTEX_ATTRIBS_ARB query
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 97fe8c78beb..c8f1834d1aa 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -865,7 +865,7 @@ StateVars = [ # GL_ARB_vertex_program ( "GL_MAX_VERTEX_ATTRIBS_ARB", GLint, - ["ctx->Const.MaxVertexProgramAttribs > 0"], "", "ARB_vertex_program" ), + ["ctx->Const.MaxVertexProgramAttribs"], "", "ARB_vertex_program" ), # GL_ARB_fragment_program ( "GL_FRAGMENT_PROGRAM_ARB", GLboolean, |