From 4a2ad8500d40038661a99c81e88d4660ca98c032 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Wed, 27 Apr 2016 16:10:59 -0700 Subject: vc4: Add whitespace after each program stage dump. In particular it's been hard to find the point where we switch from dumping pre-optimization QIR and post-optimization QIR. --- src/gallium/drivers/vc4/vc4_program.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gallium/drivers/vc4/vc4_program.c') diff --git a/src/gallium/drivers/vc4/vc4_program.c b/src/gallium/drivers/vc4/vc4_program.c index a1646d7..4cee99f 100644 --- a/src/gallium/drivers/vc4/vc4_program.c +++ b/src/gallium/drivers/vc4/vc4_program.c @@ -1943,6 +1943,7 @@ vc4_shader_ntq(struct vc4_context *vc4, enum qstage stage, qir_get_stage_name(c->stage), c->program_id, c->variant_id); qir_dump(c); + fprintf(stderr, "\n"); } qir_optimize(c); @@ -1955,6 +1956,7 @@ vc4_shader_ntq(struct vc4_context *vc4, enum qstage stage, qir_get_stage_name(c->stage), c->program_id, c->variant_id); qir_dump(c); + fprintf(stderr, "\n"); } qir_reorder_uniforms(c); -- cgit v1.1