diff options
author | Eric Anholt <[email protected]> | 2011-12-16 16:22:33 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-12-29 09:33:56 -0800 |
commit | 6a1e19d0f63cb086e43505522cb72b0183da9b11 (patch) | |
tree | a8039ad6eb31c38b8e527622a70783732c91105f /src | |
parent | 2529fde36ee29bf5789bb8a0234d3c60bd38f511 (diff) |
intel: Drop the batchbuffer flush on glRenderbufferStorage().
There's nothing batchbuffer-related here. State updates by the caller
will trigger re-emitting of any new hardware state.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_fbo.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_fbo.c b/src/mesa/drivers/dri/intel/intel_fbo.c index 0dcc91794c2..ecb4a86b243 100644 --- a/src/mesa/drivers/dri/intel/intel_fbo.c +++ b/src/mesa/drivers/dri/intel/intel_fbo.c @@ -237,8 +237,6 @@ intel_alloc_renderbuffer_storage(struct gl_context * ctx, struct gl_renderbuffer rb->_BaseFormat = _mesa_base_fbo_format(ctx, internalFormat); rb->DataType = intel_mesa_format_to_rb_datatype(rb->Format); - intel_flush(ctx); - intel_miptree_release(&irb->mt); DBG("%s: %s: %s (%dx%d)\n", __FUNCTION__, |