diff options
author | Nicolai Hähnle <[email protected]> | 2016-04-22 15:30:37 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-04-27 11:16:39 -0500 |
commit | 159f182a5728338cff2362a3edf2aad1dc0d35e0 (patch) | |
tree | ac17c0bdd91d10a4bbbf97b92ca3f66fcf4efd62 /src/gallium | |
parent | 91fb4bb2e999accfca3394a5720516d03868c521 (diff) |
radeonsi: fix brace style
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_blit.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_blit.c b/src/gallium/drivers/radeonsi/si_blit.c index 7b028c138fd..2b00da98033 100644 --- a/src/gallium/drivers/radeonsi/si_blit.c +++ b/src/gallium/drivers/radeonsi/si_blit.c @@ -403,11 +403,13 @@ static void si_decompress_textures(struct si_context *sctx, int shader_start, } } -void si_decompress_graphics_textures(struct si_context *sctx) { +void si_decompress_graphics_textures(struct si_context *sctx) +{ si_decompress_textures(sctx, 0, SI_NUM_GRAPHICS_SHADERS); } -void si_decompress_compute_textures(struct si_context *sctx) { +void si_decompress_compute_textures(struct si_context *sctx) +{ si_decompress_textures(sctx, SI_NUM_GRAPHICS_SHADERS, SI_NUM_SHADERS); } |