diff options
author | Brian Paul <brianp@vmware.com> | 2009-11-02 15:27:57 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-11-03 09:52:25 -0700 |
commit | c7048f9d9f91ef8c3ef35e31976adbf686349c41 (patch) | |
tree | 27307984fcfae696554b7553ffbf6f654ab84d05 /src/mesa/main | |
parent | 8df699b3bb1aa05b633f05b121d09d812c86a22d (diff) |
mesa: use FLUSH_VERTICES() in _mesa_drawbuffers()
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/buffers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/buffers.c b/src/mesa/main/buffers.c index 028644fe4b..740ac3f4ae 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); } |