summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-09-20 04:25:03 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-09-20 04:25:03 +0000
commit3211b28ee633707218fe7eb2bdfc604c10fd8d29 (patch)
treeb3ab56f47b858a86180ff03e329f73eb3c0db222 /src/mesa/main/mtypes.h
parentcd81190d5c5f7064e0013eb313f2ad5da863fad7 (diff)
remove STENCIL_MAX
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 0c3a63d2e3..85b15b8399 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -77,10 +77,8 @@
*/
#if STENCIL_BITS==8
typedef GLubyte GLstencil;
-# define STENCIL_MAX 0xff
#elif STENCIL_BITS==16
typedef GLushort GLstencil;
-# define STENCIL_MAX 0xffff
#else
# error "illegal number of stencil bits"
#endif