summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-07-24 14:45:38 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-07-24 14:45:38 -0600
commit8c99f7ba61fcc95ef22d8ccd8cce3e31eaa67757 (patch)
treee40920095f8c84ec753f300fd1fb1299a8aecb87
parent1475d74cfba634cf24da30e48fe66de9c2d75d55 (diff)
s/GLuint/GLbitfield/
-rw-r--r--src/mesa/pipe/p_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h
index c3704177b3..4ae8928018 100644
--- a/src/mesa/pipe/p_state.h
+++ b/src/mesa/pipe/p_state.h
@@ -129,7 +129,7 @@ struct pipe_constant_buffer {
struct pipe_fs_state {
- GLuint inputs_read; /* FRAG_ATTRIB_* */
+ GLbitfield inputs_read; /* FRAG_ATTRIB_* */
const struct tgsi_token *tokens;
struct pipe_constant_buffer *constants; /* XXX temporary? */
};