From: Brian Date: Thu, 3 Jan 2008 15:58:01 +0000 (-0700) Subject: insert a temporary flush to fix missing triangles artifact X-Git-Tag: 062012170305~17580^2~390^2~3040 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb55835fc07e4d29e94c7db1e3854a5bd37c8aeb;p=profile%2Fivi%2Fmesa.git insert a temporary flush to fix missing triangles artifact --- diff --git a/src/mesa/pipe/cell/ppu/cell_render.c b/src/mesa/pipe/cell/ppu/cell_render.c index 79aa37e..f5a9177 100644 --- a/src/mesa/pipe/cell/ppu/cell_render.c +++ b/src/mesa/pipe/cell/ppu/cell_render.c @@ -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); }