mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 00:40:09 +01:00
use GLbitfield instead of GLuint
This commit is contained in:
parent
1add059bd1
commit
c8d1741b78
1 changed files with 3 additions and 6 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue