Add missing break statements
authorKeith Whitwell <keith@tungstengraphics.com>
Thu, 19 Dec 2002 18:36:01 +0000 (18:36 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Thu, 19 Dec 2002 18:36:01 +0000 (18:36 +0000)
src/mesa/tnl/t_array_api.c

index b61d29d6625f157818bea3957a3841137bf76910..14ee943c6933afaab3af6c5773ab7b75a02d8392 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t_array_api.c,v 1.28 2002/10/24 23:57:25 brianp Exp $ */
+/* $Id: t_array_api.c,v 1.29 2002/12/19 18:36:01 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -168,10 +168,12 @@ _tnl_DrawArrays(GLenum mode, GLint start, GLsizei count)
         minimum = 0;
         modulo = 1;
         skip = 0;
+        break;
       case GL_LINES:
         minimum = 1;
         modulo = 2;
         skip = 1;
+        break;
       case GL_LINE_STRIP:
         minimum = 1;
         modulo = 1;