From fd687e06f048c0100c04a9e7c5b2270717a7adc2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Sat, 12 May 2012 16:59:41 +0100 Subject: [PATCH] trace: Fix pipe_context::clear dumping. --- src/gallium/drivers/trace/tr_context.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- 2.30.2