diff options
author | Eric Anholt <eric@anholt.net> | 2009-10-01 17:59:05 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-10-02 11:42:07 -0700 |
commit | 6d0fc3cfde3dd730de17e925c5594a8b317ba200 (patch) | |
tree | a5b02d18359d6743518b83f97f25193908a536a1 | |
parent | f019577f0c2ff83e20bd198a467ddb03579ddae3 (diff) |
mesa: Remove another unexplained Flush call, this time from BindFramebuffer.
Combined with the previous fix, it takes cairo-gl firefox-talos-gfx time
from 120 seconds to 90 seconds on my GM45.
-rw-r--r-- | src/mesa/main/fbobject.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index a73a7659ad..6e767bb24d 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -1207,9 +1207,6 @@ _mesa_BindFramebufferEXT(GLenum target, GLuint framebuffer) } FLUSH_CURRENT(ctx, _NEW_BUFFERS); - if (ctx->Driver.Flush) { - ctx->Driver.Flush(ctx); - } if (framebuffer) { /* Binding a user-created framebuffer object */ |