diff options
author | Brian Paul <[email protected]> | 2009-09-04 09:15:35 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-04 09:17:59 -0600 |
commit | 592a6642fc5c9f697bcc6521c99fe00b2de827c8 (patch) | |
tree | f4e8a49703124c4a875cbb910e66548fcc5988b1 /src/mesa/shader/program_parse.tab.h | |
parent | 3fedd08779c2bc4a5f02c035e7ca4cab5da649dd (diff) |
ARB prog: replace 'unsigned' with 'gl_state_index'
Fixes compilation warnings with MSVC.
Diffstat (limited to 'src/mesa/shader/program_parse.tab.h')
-rw-r--r-- | src/mesa/shader/program_parse.tab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/program_parse.tab.h b/src/mesa/shader/program_parse.tab.h index b0f757ffa00..dabb3bf1a36 100644 --- a/src/mesa/shader/program_parse.tab.h +++ b/src/mesa/shader/program_parse.tab.h @@ -166,7 +166,7 @@ typedef union YYSTYPE unsigned attrib; int integer; float real; - unsigned state[5]; + gl_state_index state[STATE_LENGTH]; int negate; struct asm_vector vector; gl_inst_opcode opcode; |