From: Brian Date: Thu, 14 Feb 2008 21:48:35 +0000 (-0700) Subject: gallium: call draw_flush() in softpipe_flush() X-Git-Tag: 062012170305~17580^2~390^2~2618^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e345a653b0adc59487d786050abd01d4cb8b4ca;p=profile%2Fivi%2Fmesa.git gallium: call draw_flush() in softpipe_flush() Without this, we might not get any rendering at SwapBuffers time when using the vbuf path. --- diff --git a/src/mesa/pipe/softpipe/sp_flush.c b/src/mesa/pipe/softpipe/sp_flush.c index ec6bb4a..fd3078d 100644 --- a/src/mesa/pipe/softpipe/sp_flush.c +++ b/src/mesa/pipe/softpipe/sp_flush.c @@ -50,6 +50,8 @@ softpipe_flush( struct pipe_context *pipe, struct softpipe_context *softpipe = softpipe_context(pipe); uint i; + draw_flush(softpipe->draw); + /* - flush the quad pipeline * - flush the texture cache * - flush the render cache