diff options
author | Marek Olšák <[email protected]> | 2012-12-19 22:25:22 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-01-04 14:05:40 +0100 |
commit | 23f76f558eac7f59ead6d49325c7edb4a010c0c5 (patch) | |
tree | 2e15ea9dfe76845cbda7a4dd2ac1ac0c0182f1a7 /src/gallium/drivers/r600 | |
parent | 8fdece2896d4b97968c6610a6397d1ce027c2b58 (diff) |
gallium/u_blitter: remove useless parameter from blitter_default_dst_texture
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-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 87b90ac444e..b4e9136416c 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -569,7 +569,7 @@ static void r600_resource_copy_region(struct pipe_context *ctx, src_widthFL = rsrc->surface.level[src_level].npix_x; src_heightFL = rsrc->surface.level[src_level].npix_y; - util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz, src_box); + util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz); util_blitter_default_src_texture(&src_templ, src, src_level); if (util_format_is_compressed(src->format)) { |