summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2014-02-11 01:50:03 +0100
committerMarek Olšák <[email protected]>2014-02-25 16:08:20 +0100
commitf7176d700f265ed3c3fdec5a09cbfbe2c93c7e2f (patch)
tree2d6bc726ccf0bad7e7cc49f563b257778ddf19ec /src/gallium/drivers/radeonsi
parent80eb377a37c8172c918fd76d162876dcc4ac59ca (diff)
radeonsi: remove useless psbox variable from resource_copy_region
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi')
-rw-r--r--src/gallium/drivers/radeonsi/si_blit.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeonsi/si_blit.c b/src/gallium/drivers/radeonsi/si_blit.c
index bf76ecf5bcc..8bfa6ed96e6 100644
--- a/src/gallium/drivers/radeonsi/si_blit.c
+++ b/src/gallium/drivers/radeonsi/si_blit.c
@@ -485,7 +485,6 @@ static void si_resource_copy_region(struct pipe_context *ctx,
struct si_context *sctx = (struct si_context *)ctx;
struct texture_orig_info orig_info[2];
struct pipe_box sbox;
- const struct pipe_box *psbox = src_box;
boolean restore_orig[2];
/* Fallback for buffers. */
@@ -513,7 +512,7 @@ static void si_resource_copy_region(struct pipe_context *ctx,
sbox.width = util_format_get_nblocksx(orig_info[0].format, src_box->width);
sbox.height = util_format_get_nblocksy(orig_info[0].format, src_box->height);
sbox.depth = src_box->depth;
- psbox=&sbox;
+ src_box = &sbox;
si_compressed_to_blittable(dst, dst_level, &orig_info[1]);
restore_orig[1] = TRUE;
@@ -565,7 +564,7 @@ static void si_resource_copy_region(struct pipe_context *ctx,
si_blitter_begin(ctx, SI_COPY);
util_blitter_copy_texture(sctx->blitter, dst, dst_level, dstx, dsty, dstz,
- src, src_level, psbox);
+ src, src_level, src_box);
si_blitter_end(ctx);
if (restore_orig[0])