diff options
author | Marek Olšák <[email protected]> | 2012-08-13 19:52:57 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-08-27 04:31:00 +0200 |
commit | 48edfe0505ee79d35f770f53b9c9b7ca3c69fd2b (patch) | |
tree | 2c44b3a9fcad64a48df83e7d8faf9e998a76cb1a /src/gallium/drivers/r600/r600_texture.c | |
parent | 3ac54ac2c85d3ed035a9f1cbcc7de7010c609cfb (diff) |
r600g: cleanup names around depth decompression
for consistency with the upcoming color decompression naming
Reviewed-by: Jerome Glisse <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_texture.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index b9b3ae8323b..90a834ec634 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -517,7 +517,7 @@ struct pipe_transfer* r600_texture_get_transfer(struct pipe_context *ctx, return NULL; } - r600_blit_uncompress_depth(ctx, rtex, staging_depth, + r600_blit_decompress_depth(ctx, rtex, staging_depth, level, level, box->z, box->z + box->depth - 1, 0, 0); |