summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2016-02-08 09:29:38 -0700
committerBrian Paul <brianp@vmware.com>2016-02-08 09:29:38 -0700
commit59251610ed3a0239ec9b400e97e9b5598fe80f70 (patch)
treeba556a27527fe360fbdd9cf93ae21637fc02ec79 /src/gallium/auxiliary/tgsi
parent42246ab1f5f985aba97d3d7ebc178b02ec6c316e (diff)
downloadexternal_mesa3d-59251610ed3a0239ec9b400e97e9b5598fe80f70.zip
external_mesa3d-59251610ed3a0239ec9b400e97e9b5598fe80f70.tar.gz
external_mesa3d-59251610ed3a0239ec9b400e97e9b5598fe80f70.tar.bz2
tgsi: minor whitespace fixes in tgsi_scan.c
Reviewed-by: Marek Olšák <marek.olsak@amd.com> Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_scan.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c
index 42b62aa..489423d 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_scan.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c
@@ -462,12 +462,10 @@ tgsi_scan_shader(const struct tgsi_token *tokens,
procType == TGSI_PROCESSOR_COMPUTE);
info->processor = procType;
-
/**
** Loop over incoming program tokens/instructions
*/
- while( !tgsi_parse_end_of_tokens( &parse ) ) {
-
+ while (!tgsi_parse_end_of_tokens(&parse)) {
info->num_tokens++;
tgsi_parse_token( &parse );
@@ -510,7 +508,7 @@ tgsi_scan_shader(const struct tgsi_token *tokens,
}
}
- tgsi_parse_free (&parse);
+ tgsi_parse_free(&parse);
}