diff options
author | Bas Nieuwenhuizen <[email protected]> | 2016-03-19 18:41:20 +0100 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2016-04-19 18:10:31 +0200 |
commit | 061ce9399a08f3edd4f5af16afd36bb14d58c864 (patch) | |
tree | 2e6af20ea43038a716bccae21298371d653ca732 /src/gallium/drivers/radeonsi/si_pipe.h | |
parent | e56514f6316e48ee2231841d45695ff2b8f8b4f5 (diff) |
radeonsi: split texture decompression for compute shaders
Signed-off-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pipe.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.h b/src/gallium/drivers/radeonsi/si_pipe.h index 5a5249cd8c6..c77353fba32 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.h +++ b/src/gallium/drivers/radeonsi/si_pipe.h @@ -339,7 +339,8 @@ void cik_sdma_copy(struct pipe_context *ctx, /* si_blit.c */ void si_init_blit_functions(struct si_context *sctx); -void si_decompress_textures(struct si_context *sctx); +void si_decompress_graphics_textures(struct si_context *sctx); +void si_decompress_compute_textures(struct si_context *sctx); void si_resource_copy_region(struct pipe_context *ctx, struct pipe_resource *dst, unsigned dst_level, |