From 59025d6e951467a8f5a6ebf909128b0e080f484d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 21 Feb 2013 19:54:55 +0000 Subject: [PATCH] trace: Fix set_constant_buffer dumping. We were dumping the trace driver pointer, instead of the pointer from the underlying pipe driver. --- src/gallium/drivers/trace/tr_context.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c index 538ff4afc9e..f8637bd599d 100644 --- a/src/gallium/drivers/trace/tr_context.c +++ b/src/gallium/drivers/trace/tr_context.c @@ -700,6 +700,7 @@ trace_context_set_constant_buffer(struct pipe_context *_pipe, if (constant_buffer) { cb = *constant_buffer; cb.buffer = trace_resource_unwrap(tr_ctx, constant_buffer->buffer); + constant_buffer = &cb; } trace_dump_call_begin("pipe_context", "set_constant_buffer"); @@ -709,8 +710,7 @@ trace_context_set_constant_buffer(struct pipe_context *_pipe, trace_dump_arg(uint, index); trace_dump_arg(constant_buffer, constant_buffer); - pipe->set_constant_buffer(pipe, shader, index, - constant_buffer ? &cb : NULL); + pipe->set_constant_buffer(pipe, shader, index, constant_buffer); trace_dump_call_end(); } -- 2.30.2