From 7a3bbd3d5d551ede6c8cbd2b0ac8ef005ee9e043 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Fri, 21 Oct 2011 02:00:40 +0200 Subject: [PATCH] r600g: cleanup r600_reset_blittable_to_compressed --- src/gallium/drivers/r600/r600_blit.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index 6c4a66471ff..372bfc23c37 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -295,11 +295,8 @@ static void r600_compressed_to_blittable(struct pipe_resource *tex, } static void r600_reset_blittable_to_compressed(struct pipe_resource *tex, - unsigned level, - struct texture_orig_info *orig) + struct texture_orig_info *orig) { - struct r600_resource_texture *rtex = (struct r600_resource_texture*)tex; - tex->format = orig->format; tex->width0 = orig->width0; tex->height0 = orig->height0; @@ -356,10 +353,10 @@ static void r600_resource_copy_region(struct pipe_context *ctx, src, src_level, psbox); if (restore_orig[0]) - r600_reset_blittable_to_compressed(src, src_level, &orig_info[0]); + r600_reset_blittable_to_compressed(src, &orig_info[0]); if (restore_orig[1]) - r600_reset_blittable_to_compressed(dst, dst_level, &orig_info[1]); + r600_reset_blittable_to_compressed(dst, &orig_info[1]); } void r600_init_blit_functions(struct r600_pipe_context *rctx) -- 2.30.2