From 287d573f5d992416e8355b597224e817c137387b Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 31 Oct 2007 12:01:08 -0600 Subject: [PATCH] fix type for Samplers field --- src/mesa/shader/prog_execute.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/shader/prog_execute.h b/src/mesa/shader/prog_execute.h index db7bcee..af77d42 100644 --- a/src/mesa/shader/prog_execute.h +++ b/src/mesa/shader/prog_execute.h @@ -62,7 +62,7 @@ struct gl_program_machine GLuint CondCodes[4]; /**< COND_* value for x/y/z/w */ GLint AddressReg[MAX_PROGRAM_ADDRESS_REGS][4]; - GLuint *Samplers; /** Array mapping sampler var to tex unit */ + const GLubyte *Samplers; /** Array mapping sampler var to tex unit */ GLuint CallStack[MAX_PROGRAM_CALL_DEPTH]; /**< For CAL/RET instructions */ GLuint StackDepth; /**< Index/ptr to top of CallStack[] */ -- 2.7.4