diff options
author | Brian <[email protected]> | 2007-02-23 11:21:03 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-02-23 11:21:03 -0700 |
commit | aa9d22a1c0f3256497088985c290d4046e089456 (patch) | |
tree | e018082a234f43039e7ee8dd2dc7699818690faa /src/mesa/shader/prog_parameter.h | |
parent | 99902198de9a81fa95ab058048d618c5ecb7856e (diff) |
replace GLint with gl_state_index
Diffstat (limited to 'src/mesa/shader/prog_parameter.h')
-rw-r--r-- | src/mesa/shader/prog_parameter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/prog_parameter.h b/src/mesa/shader/prog_parameter.h index 459643f4254..3d32a64f383 100644 --- a/src/mesa/shader/prog_parameter.h +++ b/src/mesa/shader/prog_parameter.h @@ -50,7 +50,7 @@ struct gl_program_parameter /** * A sequence of STATE_* tokens and integers to identify GL state. */ - GLint StateIndexes[STATE_LENGTH]; + gl_state_index StateIndexes[STATE_LENGTH]; }; @@ -115,7 +115,7 @@ _mesa_add_attribute(struct gl_program_parameter_list *paramList, extern GLint _mesa_add_state_reference(struct gl_program_parameter_list *paramList, - const GLint stateTokens[STATE_LENGTH]); + const gl_state_index stateTokens[STATE_LENGTH]); extern GLfloat * _mesa_lookup_parameter_value(const struct gl_program_parameter_list *paramList, |