another fix for gluPartialDisk() in GL_LINE mode
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 11 Jan 2000 22:01:08 +0000 (22:01 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 11 Jan 2000 22:01:08 +0000 (22:01 +0000)
src/glu/mesa/quadric.c

index 00ab45d8ade43d96ffbf3dc6e58dfd10555138bc..0458e97be759a4d1f06368b608f8a57d45f20111 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: quadric.c,v 1.5 2000/01/11 17:21:14 brianp Exp $ */
+/* $Id: quadric.c,v 1.6 2000/01/11 22:01:08 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -706,7 +706,7 @@ void GLAPIENTRY gluPartialDisk( GLUquadricObj *qobj, GLdouble innerRadius,
       }
       /* draw spokes */
       angle = DEG_TO_RAD(startAngle);
-      for (slice=0; slice<slices; slice++) {
+      for (slice=0; slice<=slices; slice++) {
         radius = innerRadius;
         glBegin( GL_LINE_STRIP );
         for (loop=0; loop<loops; loop++) {