From: Brian Paul Date: Mon, 2 Nov 2009 22:27:57 +0000 (-0700) Subject: mesa: use FLUSH_VERTICES() in _mesa_drawbuffers() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7048f9d9f91ef8c3ef35e31976adbf686349c41;p=mesa.git mesa: use FLUSH_VERTICES() in _mesa_drawbuffers() --- diff --git a/src/mesa/main/buffers.c b/src/mesa/main/buffers.c index 028644fe4b2..740ac3f4aef 100644 --- a/src/mesa/main/buffers.c +++ b/src/mesa/main/buffers.c @@ -443,7 +443,7 @@ _mesa_drawbuffers(GLcontext *ctx, GLuint n, const GLenum *buffers, } if (newState) - ctx->NewState |= _NEW_BUFFERS; + FLUSH_VERTICES(ctx, _NEW_BUFFERS); }