summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-12-14 03:06:16 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-12-14 03:06:16 +0000
commitc8d1741b78eda547762b35a6e4dea7ccb563ffa5 (patch)
treeca5d8c9ba9d57199dcb2405354612f4f4f6e2965 /src
parent1add059bd114f90e32c4b574be411d314eca6d90 (diff)
use GLbitfield instead of GLuint
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/texenvprogram.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c
index 23d6239fb7..04738b019b 100644
--- a/src/mesa/main/texenvprogram.c
+++ b/src/mesa/main/texenvprogram.c
@@ -277,12 +277,9 @@ struct texenv_fragment_program {
GLcontext *ctx;
struct state_key *state;
- GLuint alu_temps; /* Track texture indirections, see spec. */
- GLuint temps_output; /* Track texture indirections, see spec. */
-
- GLuint temp_in_use; /* Tracks temporary regs which are in
- * use.
- */
+ GLbitfield alu_temps; /* Track texture indirections, see spec. */
+ GLbitfield temps_output; /* Track texture indirections, see spec. */
+ GLbitfield temp_in_use; /* Tracks temporary regs which are in use. */
GLboolean error;
struct ureg src_texture[MAX_TEXTURE_UNITS];