mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-26 11:10:49 +02:00
aubinator: Fix indentation.
Three space, not four. Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
bd25d9670b
commit
65138ce019
1 changed files with 6 additions and 7 deletions
|
|
@ -798,18 +798,17 @@ parse_commands(struct gen_spec *spec, uint32_t *cmds, int size, int engine)
|
|||
idx = 0;
|
||||
print_dword_val(&iter, offset, &dword_num);
|
||||
if (dword_num > 0)
|
||||
token = print_iterator_values(&iter, &idx);
|
||||
token = print_iterator_values(&iter, &idx);
|
||||
if (token != NULL) {
|
||||
printf("0x%08"PRIx64": 0x%08x : Dword %d\n",
|
||||
offset + 4 * idx, p[idx], idx);
|
||||
handle_struct_decode(spec,token, &p[idx]);
|
||||
token = NULL;
|
||||
printf("0x%08"PRIx64": 0x%08x : Dword %d\n",
|
||||
offset + 4 * idx, p[idx], idx);
|
||||
handle_struct_decode(spec,token, &p[idx]);
|
||||
token = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_LENGTH(custom_handlers); i++) {
|
||||
if (gen_group_get_opcode(inst) ==
|
||||
custom_handlers[i].opcode)
|
||||
if (gen_group_get_opcode(inst) == custom_handlers[i].opcode)
|
||||
custom_handlers[i].handle(spec, p);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue