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_pipe.h | |
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_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 3686521862e..0aff0f680d8 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -267,7 +267,7 @@ struct r600_samplerview_state { struct r600_pipe_sampler_view *views[NUM_TEX_UNITS]; uint32_t enabled_mask; uint32_t dirty_mask; - uint32_t depth_texture_mask; /* which textures are depth */ + uint32_t compressed_depthtex_mask; /* which textures are depth */ }; struct r600_textures_info { @@ -496,14 +496,14 @@ void r600_copy_buffer(struct pipe_context *ctx, struct pipe_resource *dst, unsigned dstx, struct pipe_resource *src, const struct pipe_box *src_box); void r600_init_blit_functions(struct r600_context *rctx); -void r600_blit_uncompress_depth(struct pipe_context *ctx, +void r600_blit_decompress_depth(struct pipe_context *ctx, struct r600_texture *texture, struct r600_texture *staging, unsigned first_level, unsigned last_level, unsigned first_layer, unsigned last_layer, unsigned first_sample, unsigned last_sample); -void r600_flush_depth_textures(struct r600_context *rctx, - struct r600_samplerview_state *textures); +void r600_decompress_depth_textures(struct r600_context *rctx, + struct r600_samplerview_state *textures); /* r600_buffer.c */ bool r600_init_resource(struct r600_screen *rscreen, |