summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2000-03-16 07:36:33 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2000-03-16 07:36:33 +0000
commit46f717f949dd13d7be1621873f76d6fbc620149d (patch)
tree63a98c861995238104695fb64288ab0682c152b3 /src/mesa/main
parent27b2e83805b77a7d2cae5a33af41b041e4d2e4a9 (diff)
fix for tristrip bug and unfilled quad/polygon bug
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h
index af11356f36..0a25acc69f 100644
--- a/src/mesa/main/config.h
+++ b/src/mesa/main/config.h
@@ -1,4 +1,4 @@
-/* $Id: config.h,v 1.7 2000/03/03 17:47:39 brianp Exp $ */
+/* $Id: config.h,v 1.8 2000/03/16 07:36:33 keithw Exp $ */
/*
* Mesa 3-D graphics library
@@ -177,7 +177,7 @@
* VB_MAX vertices. (This only happens when mixed primitives are
* sharing the vb).
*/
-#define VB_MAX_CLIPPED_VERTS (2 * (6 + MAX_CLIP_PLANES))
+#define VB_MAX_CLIPPED_VERTS ((2 * (6 + MAX_CLIP_PLANES))+1)
#define VB_SIZE (VB_MAX + VB_MAX_CLIPPED_VERTS)