diff options
author | Marek Olšák <[email protected]> | 2011-04-21 12:53:16 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-04-21 15:51:18 +0200 |
commit | 883d8a0b449b53d83cc5970d2ce50df536aef55f (patch) | |
tree | 10b09a02971b2b1194e5406e67c1c7927f2ae143 /src/gallium/drivers/r600 | |
parent | 64f55216e4c11e8acb787bfe40e6dd25e862cd43 (diff) |
gallium: add fallback for copying buffers to all drivers
Just to keep drivers working.
Reviewed-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index 04408a5cc8e..151f48a8bf8 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -277,6 +277,13 @@ static void r600_resource_copy_region(struct pipe_context *ctx, struct texture_orig_info orig_info[2]; boolean restore_orig[2]; + /* Fallback for buffers. */ + if (dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER) { + util_resource_copy_region(ctx, dst, dst_level, dstx, dsty, dstz, + src, src_level, src_box); + return; + } + if (rsrc->depth && !rsrc->is_flushing_texture) r600_texture_depth_flush(ctx, src, FALSE); |