insert a temporary flush to fix missing triangles artifact

This commit is contained in:
Brian 2008-01-03 08:58:01 -07:00
parent 5cd96f7684
commit bb55835fc0

View file

@ -171,6 +171,11 @@ cell_flush_prim_buffer(struct cell_context *cell)
cell->prim_buffer.ymin = 1e100;
cell->prim_buffer.xmax = -1e100;
cell->prim_buffer.ymax = -1e100;
/* XXX temporary, need to double-buffer the prim buffer until we get
* a real command buffer/list system.
*/
cell_flush(&cell->pipe, 0x0);
}