summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/trace/tr_context.c
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-08-11 17:08:27 +0100
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-08-12 11:34:41 +0100
commitd4d8f803884584525a36713b76ce04802658bd0f (patch)
treef1598bd6274abf767e82c8922feb1a17649346fb /src/gallium/drivers/trace/tr_context.c
parente69e94d3010b33cf690a2e4e54b61437a1836617 (diff)
trace: Fix create_depth_stencil_alpha_state trace.
Diffstat (limited to 'src/gallium/drivers/trace/tr_context.c')
-rw-r--r--src/gallium/drivers/trace/tr_context.c4
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 c9c15b2bb9..1df6842b71 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);