summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/stencil.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2003-03-17 21:38:47 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2003-03-17 21:38:47 +0000
commitaaa46798f1d0b009e35fcd88504f6f1e1f69672f (patch)
treed3818a68f9805137f0609ef21e00a538b9ddbada /src/mesa/main/stencil.c
parentc6dcb0fe89aed5ca3659c9bd0206bbd6ab352e44 (diff)
downloadexternal_mesa3d-aaa46798f1d0b009e35fcd88504f6f1e1f69672f.zip
external_mesa3d-aaa46798f1d0b009e35fcd88504f6f1e1f69672f.tar.gz
external_mesa3d-aaa46798f1d0b009e35fcd88504f6f1e1f69672f.tar.bz2
Fix typo
Diffstat (limited to 'src/mesa/main/stencil.c')
-rw-r--r--src/mesa/main/stencil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/stencil.c b/src/mesa/main/stencil.c
index b6afd66..3bcdd2f 100644
--- a/src/mesa/main/stencil.c
+++ b/src/mesa/main/stencil.c
@@ -1,4 +1,4 @@
-/* $Id: stencil.c,v 1.29 2002/10/24 23:57:21 brianp Exp $ */
+/* $Id: stencil.c,v 1.30 2003/03/17 21:38:47 keithw Exp $ */
/*
* Mesa 3-D graphics library
@@ -134,7 +134,7 @@ _mesa_StencilOp(GLenum fail, GLenum zfail, GLenum zpass)
break;
case GL_INCR_WRAP_EXT:
case GL_DECR_WRAP_EXT:
- if (!ctx->Extensions.EXT_stencil_wrap) {
+ if (ctx->Extensions.EXT_stencil_wrap) {
break;
}
/* FALL-THROUGH */