diff options
author | Marek Olšák <[email protected]> | 2012-07-27 22:45:52 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-08-04 13:53:07 +0200 |
commit | c8ff737a18672c86f4ec01b25b4893550667b17c (patch) | |
tree | 533c67bce8aa2829ac4dd31fe05879a697e02919 /src/gallium/drivers/r600/r600_blit.c | |
parent | ef1bf6d69e99d9a12557a09eccaf4f2b6c628997 (diff) |
gallium/u_blitter: remove fallback for stencil copy that all drivers skipped
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_blit.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index 8cdfae8b3f0..9c4e911bee0 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -393,7 +393,7 @@ static void r600_resource_copy_region(struct pipe_context *ctx, r600_blitter_begin(ctx, R600_COPY_TEXTURE); util_blitter_copy_texture(rctx->blitter, dst, dst_level, dstx, dsty, dstz, - src, src_level, psbox, TRUE); + src, src_level, psbox); r600_blitter_end(ctx); if (restore_orig[0]) |