summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-09-13 02:02:03 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-09-13 02:02:03 +0000
commitb5932cfc9d48cf21554e2f9fdaccb7d8b52f2f8d (patch)
tree1f901a0c1600dee190323551a5896c701dc269d8 /src/mesa/main/mtypes.h
parenta96f889a57cd8f304dc60cd75f8660c440f36c0e (diff)
Use GLuint/GLint intead of GLstencil for stencil state.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 0206af937d..30c90c6744 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1037,10 +1037,10 @@ struct gl_stencil_attrib
GLenum FailFunc[2]; /**< Fail function */
GLenum ZPassFunc[2]; /**< Depth buffer pass function */
GLenum ZFailFunc[2]; /**< Depth buffer fail function */
- GLstencil Ref[2]; /**< Reference value */
- GLstencil ValueMask[2]; /**< Value mask */
- GLstencil WriteMask[2]; /**< Write mask */
- GLstencil Clear; /**< Clear value */
+ GLint Ref[2]; /**< Reference value */
+ GLuint ValueMask[2]; /**< Value mask */
+ GLuint WriteMask[2]; /**< Write mask */
+ GLuint Clear; /**< Clear value */
};