summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_pt_emit.c
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-08-10 01:05:25 +0800
committerChia-I Wu <olv@lunarg.com>2010-08-16 21:04:24 +0800
commitaaf51ed7c24a5d9488f8225972e5d5d108c6c197 (patch)
treefdb9a212e676d87ad05ecd2fb11504ba36c58672 /src/gallium/auxiliary/draw/draw_pt_emit.c
parentc3fee80f2b35f6a7e48d6015bfc759c66b7e1a2c (diff)
draw: No need to make max_vertices even.
Triangle strip alternates the front/back orientation of its triangles. max_vertices was made even so that varray never splitted a triangle strip at the wrong positions. It did not work with triangle strips with adjacencies. And it is no longer relevant with vsplit.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pt_emit.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_pt_emit.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_emit.c b/src/gallium/auxiliary/draw/draw_pt_emit.c
index 5568fbb9f8..89d96c4235 100644
--- a/src/gallium/auxiliary/draw/draw_pt_emit.c
+++ b/src/gallium/auxiliary/draw/draw_pt_emit.c
@@ -120,9 +120,6 @@ void draw_pt_emit_prepare( struct pt_emit *emit,
*max_vertices = (draw->render->max_vertex_buffer_bytes /
(vinfo->size * 4));
-
- /* even number */
- *max_vertices = *max_vertices & ~1;
}