mesa/vbo: fix compile and replay of nodes ending in a FALLBACK
authorKeith Whitwell <keithw@vmware.com>
Tue, 30 Jun 2009 18:52:44 +0000 (19:52 +0100)
committerKeith Whitwell <keithw@vmware.com>
Tue, 30 Jun 2009 18:52:44 +0000 (19:52 +0100)
commit1fa4cde757cc94c0afa40d855309911247974e98
tree0ad8a007b86bea133c49ab6d2e25432f699df79d
parent70ae7ba818e9d8a5485653b258e76f06c988654c
mesa/vbo: fix compile and replay of nodes ending in a FALLBACK

Where vbo save nodes are terminated with a call to DO_FALLBACK(), as in
the case of a recursive CallList which is itself within a Begin/End pair,
there two problems:
1) The display list node's primitive information was incorrect, stating
the cut-off prim had zero vertices
2) On replay, we would get confused by a primitive that started in a
node, but was terminated by individual opcodes.

This change fixes the first problem by correctly terminating the last
primitive on fallback, and the second by forcing the display list to
use the Loopback path, converting all nodes into immediate-mode rendering.

The loopback fix is a performance hit, but avoiding this would require
a fairly large rework of this code.
progs/trivial/Makefile
progs/trivial/dlist-begin-call-end.c [new file with mode: 0644]
src/mesa/vbo/vbo_save_api.c