diff options
author | Marek Olšák <[email protected]> | 2018-04-01 14:15:34 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-04-05 15:34:58 -0400 |
commit | 85e75b2da5c4ef2ca02417024b154cc24d153a13 (patch) | |
tree | 9740096e1785a88633005f571b6d949e2938dc63 /src/gallium/drivers/radeon/r600_texture.c | |
parent | e04389cc2ad403388f591d31234cae798408e897 (diff) |
radeonsi: remove r600_pipe_common::blit_decompress_depth
Acked-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/r600_texture.c')
-rw-r--r-- | src/gallium/drivers/radeon/r600_texture.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/drivers/radeon/r600_texture.c b/src/gallium/drivers/radeon/r600_texture.c index 86955561e24..85c20022c15 100644 --- a/src/gallium/drivers/radeon/r600_texture.c +++ b/src/gallium/drivers/radeon/r600_texture.c @@ -1747,8 +1747,8 @@ static void *r600_texture_transfer_map(struct pipe_context *ctx, } r600_copy_region_with_blit(ctx, temp, 0, 0, 0, 0, texture, level, box); - rctx->blit_decompress_depth(ctx, (struct r600_texture*)temp, staging_depth, - 0, 0, 0, box->depth, 0, 0); + si_blit_decompress_depth(ctx, (struct r600_texture*)temp, staging_depth, + 0, 0, 0, box->depth, 0, 0); pipe_resource_reference(&temp, NULL); } @@ -1765,10 +1765,10 @@ static void *r600_texture_transfer_map(struct pipe_context *ctx, return NULL; } - rctx->blit_decompress_depth(ctx, rtex, staging_depth, - level, level, - box->z, box->z + box->depth - 1, - 0, 0); + si_blit_decompress_depth(ctx, rtex, staging_depth, + level, level, + box->z, box->z + box->depth - 1, + 0, 0); offset = r600_texture_get_offset(rctx->screen, staging_depth, level, box, |