From: José Fonseca Date: Mon, 11 Aug 2008 16:08:27 +0000 (+0100) Subject: trace: Fix create_depth_stencil_alpha_state trace. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d4d8f803884584525a36713b76ce04802658bd0f;p=mesa.git trace: Fix create_depth_stencil_alpha_state trace. --- diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c index c9c15b2bb9e..1df6842b714 100644 --- a/src/gallium/drivers/trace/tr_context.c +++ b/src/gallium/drivers/trace/tr_context.c @@ -457,8 +457,10 @@ trace_context_create_depth_stencil_alpha_state(struct pipe_context *_pipe, result = pipe->create_depth_stencil_alpha_state(pipe, state);; - trace_dump_ret(stream, ptr, result); + trace_dump_arg(stream, ptr, pipe); trace_dump_arg(stream, depth_stencil_alpha_state, state); + + trace_dump_ret(stream, ptr, result); trace_dump_call_end(stream);