diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-07-24 14:45:38 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-07-24 14:45:38 -0600 |
commit | 8c99f7ba61fcc95ef22d8ccd8cce3e31eaa67757 (patch) | |
tree | e40920095f8c84ec753f300fd1fb1299a8aecb87 /src/mesa/pipe | |
parent | 1475d74cfba634cf24da30e48fe66de9c2d75d55 (diff) |
s/GLuint/GLbitfield/
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r-- | src/mesa/pipe/p_state.h | 2 |
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? */ }; |