diff options
author | Roland Scheidegger <[email protected]> | 2010-05-29 01:28:21 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-05-29 01:28:21 +0200 |
commit | 4bc7b14224bfb9c5efe37e1505345fb90ba69d9e (patch) | |
tree | f98ac222dae92365a416782d28483f3c83ed4678 /src/gallium/drivers/i915/i915_clear.c | |
parent | 10baf7ec1d31552a268c38422619abc131a37e2b (diff) |
i915g: adapt to clear interface changes
should in theory support separate depth/stencil clears (untested).
Also fix some format omissions?
Diffstat (limited to 'src/gallium/drivers/i915/i915_clear.c')
-rw-r--r-- | src/gallium/drivers/i915/i915_clear.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_clear.c b/src/gallium/drivers/i915/i915_clear.c index 0d0859f8f33..6d824a507aa 100644 --- a/src/gallium/drivers/i915/i915_clear.c +++ b/src/gallium/drivers/i915/i915_clear.c @@ -40,7 +40,7 @@ */ void i915_clear(struct pipe_context *pipe, unsigned buffers, const float *rgba, - double depth, unsigned stencil) + double depth, unsigned stencil) { util_clear(pipe, &i915_context(pipe)->framebuffer, buffers, rgba, depth, stencil); |