summaryrefslogtreecommitdiff
path: root/src/mesa/softpipe/sp_state.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-05-24 22:16:26 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-05-24 22:16:26 -0600
commitcbe4dbef8e8e9ff29d64ca588e81c2bb079d99f1 (patch)
tree1ef989a614cb565b957f2f0e837d53723f1c1c8f /src/mesa/softpipe/sp_state.h
parent008fb50174fb6717f3b71836427bc6be4e44613c (diff)
use GLubyte for stencil ref/mask/clear
Diffstat (limited to 'src/mesa/softpipe/sp_state.h')
-rw-r--r--src/mesa/softpipe/sp_state.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/softpipe/sp_state.h b/src/mesa/softpipe/sp_state.h
index 73ed7a619c..f7d904bffe 100644
--- a/src/mesa/softpipe/sp_state.h
+++ b/src/mesa/softpipe/sp_state.h
@@ -131,10 +131,10 @@ struct softpipe_stencil_state {
GLuint back_fail_op:3;
GLuint back_zpass_op:3;
GLuint back_zfail_op:3;
- GLint ref_value[2]; /**< [0] = front, [1] = back */
- GLuint value_mask[2];
- GLuint write_mask[2];
- GLuint clear_value;
+ GLubyte ref_value[2]; /**< [0] = front, [1] = back */
+ GLubyte value_mask[2];
+ GLubyte write_mask[2];
+ GLubyte clear_value;
};