summaryrefslogtreecommitdiff
path: root/src/mesa/program/prog_uniform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/program/prog_uniform.h')
-rw-r--r--src/mesa/program/prog_uniform.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/program/prog_uniform.h b/src/mesa/program/prog_uniform.h
index 18c5c71..c6c92b0 100644
--- a/src/mesa/program/prog_uniform.h
+++ b/src/mesa/program/prog_uniform.h
@@ -63,7 +63,8 @@ struct gl_uniform_list
{
GLuint Size; /**< allocated size of Uniforms array */
GLuint NumUniforms; /**< number of uniforms in the array */
- GLuint Slots; /**< number of float[4] slots uniforms will occupy */
+ GLuint Slots; /**< number of float[4] slots non-sampler uniforms occupy */
+ GLuint SamplerSlots; /**< number of float[4] slots samplers occupy */
struct gl_uniform *Uniforms; /**< Array [Size] */
};