summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/context.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2009-02-12 08:58:12 -0700
committerBrian Paul <[email protected]>2009-02-12 09:23:46 -0700
commite8cd8be03b9617d75df4e09dc568b6760db1edc4 (patch)
treec4528d32edbe7e206bedbd22fa4e14952fae8ac1 /src/mesa/main/context.c
parent9eff576c947bf4d1c487ec692e8b16aa198ac532 (diff)
mesa: restore FLUSH_VERTICES() in _mesa_notifySwapBuffers()
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r--src/mesa/main/context.c1
1 files changed, 1 insertions, 0 deletions
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);
}