mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 07:40:11 +01:00
ir_print_visitor: Remove commas between ir_constant's components.
The IR reader does not expect commas.
This commit is contained in:
parent
74e1802f5d
commit
7ea977a15c
1 changed files with 1 additions and 1 deletions
|
|
@ -272,7 +272,7 @@ void ir_print_visitor::visit(ir_constant *ir)
|
|||
|
||||
for (unsigned i = 0; i < ir->type->components(); i++) {
|
||||
if (i != 0)
|
||||
printf(", ");
|
||||
printf(" ");
|
||||
|
||||
switch (base_type->base_type) {
|
||||
case GLSL_TYPE_UINT: printf("%u", ir->value.u[i]); break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue