From: Brian Paul Date: Thu, 12 Feb 2009 15:58:12 +0000 (-0700) Subject: mesa: restore FLUSH_VERTICES() in _mesa_notifySwapBuffers() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e8cd8be03b9617d75df4e09dc568b6760db1edc4;p=mesa.git mesa: restore FLUSH_VERTICES() in _mesa_notifySwapBuffers() --- diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index c5b90d9cda7..19ff5e552c0 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -183,6 +183,7 @@ GLfloat _mesa_ubyte_to_float_color_tab[256]; void _mesa_notifySwapBuffers(__GLcontext *ctx) { + FLUSH_VERTICES( ctx, 0 ); if (ctx->Driver.Flush) { ctx->Driver.Flush(ctx); }