From: Brian Date: Thu, 14 Feb 2008 21:48:35 +0000 (-0700) Subject: gallium: call draw_flush() in softpipe_flush() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5e345a653b0adc59487d786050abd01d4cb8b4ca;p=mesa.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 ec6bb4a0dca..fd3078d870b 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