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>
This commit is contained in:
Brian Paul 2016-02-08 09:29:38 -07:00
parent 42246ab1f5
commit 59251610ed

View file

@ -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);
}