From: Brian Paul Date: Wed, 14 Dec 2005 03:06:16 +0000 (+0000) Subject: use GLbitfield instead of GLuint X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c8d1741b78eda547762b35a6e4dea7ccb563ffa5;p=mesa.git use GLbitfield instead of GLuint --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 23d6239fb77..04738b019b6 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];