summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util/u_prim.h
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2013-05-02 14:12:27 +0800
committerChia-I Wu <olvaffe@gmail.com>2013-05-03 11:59:10 +0800
commit90d5190594c57c5f5ac63442ff526b312ea79744 (patch)
tree89abfea7ce73c38a05a54ad21f2f1a89208d8f44 /src/gallium/auxiliary/util/u_prim.h
parent30671cecc0817ffe59b47e8f70b584bb55447f5d (diff)
downloadexternal_mesa3d-90d5190594c57c5f5ac63442ff526b312ea79744.zip
external_mesa3d-90d5190594c57c5f5ac63442ff526b312ea79744.tar.gz
external_mesa3d-90d5190594c57c5f5ac63442ff526b312ea79744.tar.bz2
util/prim: assorted fixes for u_decomposed_prims_for_vertices()
Switch to '>=' for comparisons, and it becomes obvious that the comparison for PIPE_PRIM_QUAD_STRIP was wrong. Add minimum vertex count check for PIPE_PRIM_LINE_LOOP. Return 1 for PIPE_PRIM_POLYGON with 3 vertices. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> Acked-by: Zack Rusin <zackr@vmware.com>
Diffstat (limited to 'src/gallium/auxiliary/util/u_prim.h')
-rw-r--r--src/gallium/auxiliary/util/u_prim.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/gallium/auxiliary/util/u_prim.h b/src/gallium/auxiliary/util/u_prim.h
index 94312c2..624a508 100644
--- a/src/gallium/auxiliary/util/u_prim.h
+++ b/src/gallium/auxiliary/util/u_prim.h
@@ -204,42 +204,42 @@ u_vertices_per_prim(int primitive)
static INLINE unsigned
u_decomposed_prims_for_vertices(int primitive, int vertices)
{
- switch(primitive) {
+ switch (primitive) {
case PIPE_PRIM_POINTS:
return vertices;
case PIPE_PRIM_LINES:
return vertices / 2;
case PIPE_PRIM_LINE_LOOP:
- return vertices;
+ return (vertices >= 2) ? vertices : 0;
case PIPE_PRIM_LINE_STRIP:
- return (vertices > 1) ? vertices - 1 : 0;
+ return (vertices >= 2) ? vertices - 1 : 0;
case PIPE_PRIM_TRIANGLES:
- return vertices / 3;
+ return vertices / 3;
case PIPE_PRIM_TRIANGLE_STRIP:
- return (vertices > 2) ? vertices - 2 : 0;
+ return (vertices >= 3) ? vertices - 2 : 0;
case PIPE_PRIM_TRIANGLE_FAN:
- return (vertices > 2) ? vertices - 2 : 0;
+ return (vertices >= 3) ? vertices - 2 : 0;
case PIPE_PRIM_LINES_ADJACENCY:
return vertices / 4;
case PIPE_PRIM_LINE_STRIP_ADJACENCY:
- return (vertices > 3) ? vertices - 3 : 0;
+ return (vertices >= 4) ? vertices - 3 : 0;
case PIPE_PRIM_TRIANGLES_ADJACENCY:
return vertices / 6;
case PIPE_PRIM_TRIANGLE_STRIP_ADJACENCY:
- return (vertices > 5) ? 1 + (vertices - 6)/2 : 0;
+ return (vertices >= 6) ? 1 + (vertices - 6) / 2 : 0;
case PIPE_PRIM_QUADS:
return vertices / 4;
case PIPE_PRIM_QUAD_STRIP:
- return (vertices > 4) ? (vertices - 2) / 2 : 0;
+ return (vertices >= 4) ? (vertices - 2) / 2 : 0;
/* Polygons can't be decomposed
* because the number of their vertices isn't known so
* for them and whatever else we don't recognize just
* return 1 if the number of vertices is greater than
- * 3 and zero otherwise */
+ * or equal to 3 and zero otherwise */
case PIPE_PRIM_POLYGON:
default:
debug_printf("Invalid decomposition primitive!\n");
- return (vertices > 3) ? 1 : 0;
+ return (vertices >= 3) ? 1 : 0;
}
}