mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-02 07:20:16 +01:00
r600g: cleanup r600_reset_blittable_to_compressed
This commit is contained in:
parent
f664d6a2f3
commit
7a3bbd3d5d
1 changed files with 3 additions and 6 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue