diff options
author | Brian Paul <[email protected]> | 2006-10-10 21:25:27 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-10-10 21:25:27 +0000 |
commit | 97a659337e6effe439434258350498311052f4af (patch) | |
tree | f9532cfd1e0fcffbce83a4ba92869f1212c00f3a /src/mesa | |
parent | fe6947002f7d24e88286f19e05510b199e6990b3 (diff) |
s/GLuint/GLbitfield/
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/shader/nvvertparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/nvvertparse.c b/src/mesa/shader/nvvertparse.c index 17b721a5010..f3821d7f43a 100644 --- a/src/mesa/shader/nvvertparse.c +++ b/src/mesa/shader/nvvertparse.c @@ -62,8 +62,8 @@ struct parse_state { GLboolean isStateProgram; GLboolean isPositionInvariant; GLboolean isVersion1_1; - GLuint inputsRead; - GLuint outputsWritten; + GLbitfield inputsRead; + GLbitfield outputsWritten; GLboolean anyProgRegsWritten; GLuint numInst; /* number of instructions parsed */ }; |