diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-08-11 17:08:27 +0100 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-08-12 11:34:41 +0100 |
commit | d4d8f803884584525a36713b76ce04802658bd0f (patch) | |
tree | f1598bd6274abf767e82c8922feb1a17649346fb /src/gallium | |
parent | e69e94d3010b33cf690a2e4e54b61437a1836617 (diff) |
trace: Fix create_depth_stencil_alpha_state trace.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/trace/tr_context.c | 4 |
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); |