summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/trace
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-04-08 15:23:48 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-04-08 16:26:04 +0100
commit7000b9d74a4b9690c236ee40ddbeba1f24df1ab4 (patch)
treeb18002e72f3796aacbb67a2c1bfa803baacbce00 /src/gallium/drivers/trace
parenta3277c542b40169684778122a8b6e1cdfb1f9f92 (diff)
trace: Match pipe_context::clear prototype.
Diffstat (limited to 'src/gallium/drivers/trace')
-rw-r--r--src/gallium/drivers/trace/tr_context.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c
index 6e86a5dfdd..d50d872a77 100644
--- a/src/gallium/drivers/trace/tr_context.c
+++ b/src/gallium/drivers/trace/tr_context.c
@@ -973,7 +973,7 @@ trace_context_surface_fill(struct pipe_context *_pipe,
static INLINE void
trace_context_clear(struct pipe_context *_pipe,
- unsigned surfaces,
+ unsigned buffers,
const float *rgba,
double depth,
unsigned stencil)
@@ -984,15 +984,12 @@ trace_context_clear(struct pipe_context *_pipe,
trace_dump_call_begin("pipe_context", "clear");
trace_dump_arg(ptr, pipe);
- trace_dump_arg(uint, surfaces);
- trace_dump_arg(float, rgba[0]);
- trace_dump_arg(float, rgba[1]);
- trace_dump_arg(float, rgba[2]);
- trace_dump_arg(float, rgba[3]);
+ trace_dump_arg(uint, buffers);
+ trace_dump_arg_array(float, rgba, 4);
trace_dump_arg(float, depth);
trace_dump_arg(uint, stencil);
- pipe->clear(pipe, surfaces, rgba, depth, stencil);
+ pipe->clear(pipe, buffers, rgba, depth, stencil);
trace_dump_call_end();
}