From: José Fonseca Date: Thu, 21 Feb 2013 19:54:55 +0000 (+0000) Subject: trace: Fix set_constant_buffer dumping. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59025d6e951467a8f5a6ebf909128b0e080f484d;p=mesa.git trace: Fix set_constant_buffer dumping. We were dumping the trace driver pointer, instead of the pointer from the underlying pipe driver. --- 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(); }