Mesa (master): radeonsi: fix brace style

Nicolai Hähnle nh at kemper.freedesktop.org
Wed Apr 27 16:16:54 UTC 2016


Module: Mesa
Branch: master
Commit: 159f182a5728338cff2362a3edf2aad1dc0d35e0
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=159f182a5728338cff2362a3edf2aad1dc0d35e0

Author: Nicolai Hähnle <nicolai.haehnle at amd.com>
Date:   Fri Apr 22 15:30:37 2016 -0500

radeonsi: fix brace style

Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/gallium/drivers/radeonsi/si_blit.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/radeonsi/si_blit.c b/src/gallium/drivers/radeonsi/si_blit.c
index 7b028c1..2b00da9 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);
 }
 




More information about the mesa-commit mailing list