mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-30 12:40:41 +02:00
radeonsi: fix brace style
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
91fb4bb2e9
commit
159f182a57
1 changed files with 4 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue