projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
518b6f4
)
Add missing break statements
author
Keith Whitwell
<keith@tungstengraphics.com>
Thu, 19 Dec 2002 18:36:01 +0000
(18:36 +0000)
committer
Keith Whitwell
<keith@tungstengraphics.com>
Thu, 19 Dec 2002 18:36:01 +0000
(18:36 +0000)
src/mesa/tnl/t_array_api.c
patch
|
blob
|
history
diff --git
a/src/mesa/tnl/t_array_api.c
b/src/mesa/tnl/t_array_api.c
index b61d29d6625f157818bea3957a3841137bf76910..14ee943c6933afaab3af6c5773ab7b75a02d8392 100644
(file)
--- a/
src/mesa/tnl/t_array_api.c
+++ b/
src/mesa/tnl/t_array_api.c
@@
-1,4
+1,4
@@
-/* $Id: t_array_api.c,v 1.2
8 2002/10/24 23:57:25 brianp
Exp $ */
+/* $Id: t_array_api.c,v 1.2
9 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;