mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
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:
parent
42246ab1f5
commit
59251610ed
1 changed files with 2 additions and 4 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue