draw: use correct output prim for non-adjacent topologies in prim assembler.
authorRoland Scheidegger <sroland@vmware.com>
Mon, 1 Dec 2014 22:40:31 +0000 (23:40 +0100)
committerRoland Scheidegger <sroland@vmware.com>
Sat, 6 Dec 2014 17:03:05 +0000 (18:03 +0100)
commitfe86415beb8edfe3a6a4300ca537fae1bbad64a7
tree0bd4e19efb3c6e9293e43bc29b4bce3740bab5a3
parent3fdbad1142224f4cae9f97b75b94afba353ab392
draw: use correct output prim for non-adjacent topologies in prim assembler.

The decomposition done in the prim assembler will turn tri fans into tris,
but this wasn't reflected in the output prim type. Meaning with a tri fan
with 6 verts input, the output was a tri fan with 12 vertices instead of a
tri list with 12 vertices (not as bad as it sounds, since the additional tris
created would all be degenerate since they'd all have two times vertex zero
but still bogus).
This is because the prim assembler is used if either the input topology is
something with adjacency, or if prim id needs to be injected, and for the
latter case topologies without adjacency can be converted to basic ones.
Unfortunately decomposition here for inserting prim ids is necessary, at
least for the indexed case where we can't just insert the prim id at the
right place depending on provoking vertex.

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/gallium/auxiliary/draw/draw_prim_assembler.c