diff options
author | Eric Anholt <[email protected]> | 2018-06-25 15:18:51 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-07-27 17:55:57 -0700 |
commit | 3c02838d2956692101ae205f1aff362fa3a93c76 (patch) | |
tree | 29212902352d823cf674c5afb94fc3b3bb3cd5e5 /src/gallium | |
parent | 422910d2e75063b80ffcc16aa4087880f20319c1 (diff) |
v3d: Stop doing pretty-printed colorful booleans in CLIF output.
The parser wants to see a 1 or 0. We can put "true" and "false" in a
comment to clarify that it's a boolean and the parser will skip it.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_cl_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_cl_dump.c b/src/gallium/drivers/vc4/vc4_cl_dump.c index bd2d7137c58..bb26b057a44 100644 --- a/src/gallium/drivers/vc4/vc4_cl_dump.c +++ b/src/gallium/drivers/vc4/vc4_cl_dump.c @@ -63,7 +63,7 @@ vc4_dump_cl(void *cl, uint32_t size, bool is_render) fprintf(stderr, "0x%08x 0x%08x: 0x%02x %s\n", offset, hw_offset, header, v3d_group_get_name(inst)); - v3d_print_group(clif, inst, offset, p, ""); + v3d_print_group(clif, inst, offset, p); switch (header) { case VC4_PACKET_HALT: |