diff options
author | José Fonseca <[email protected]> | 2012-05-12 16:59:41 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-05-12 17:10:31 +0100 |
commit | fd687e06f048c0100c04a9e7c5b2270717a7adc2 (patch) | |
tree | 429a0e11e2c5dd15c27fe66f5acb039f7aae0e21 | |
parent | b275bed549570462b423026820677a443d386ffe (diff) |
trace: Fix pipe_context::clear dumping.
-rw-r--r-- | src/gallium/drivers/trace/tr_context.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c index 27bc6c538f6..ffaa3d06939 100644 --- a/src/gallium/drivers/trace/tr_context.c +++ b/src/gallium/drivers/trace/tr_context.c @@ -1198,10 +1198,12 @@ trace_context_clear(struct pipe_context *_pipe, trace_dump_arg(ptr, pipe); trace_dump_arg(uint, buffers); + trace_dump_arg_begin("color"); if (color) - trace_dump_arg_array(float, color->f, 4); + trace_dump_array(float, color->f, 4); else trace_dump_null(); + trace_dump_arg_end(); trace_dump_arg(float, depth); trace_dump_arg(uint, stencil); |