From: Brian Paul Date: Tue, 18 Oct 2011 14:27:52 +0000 (-0600) Subject: softpipe: remove unused vars in softpipe_clear() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a8791c889160a784207243bf46957647640da5f;p=mesa.git softpipe: remove unused vars in softpipe_clear() --- diff --git a/src/gallium/drivers/softpipe/sp_clear.c b/src/gallium/drivers/softpipe/sp_clear.c index 3cb3b72c264..b59524a2214 100644 --- a/src/gallium/drivers/softpipe/sp_clear.c +++ b/src/gallium/drivers/softpipe/sp_clear.c @@ -50,7 +50,6 @@ softpipe_clear(struct pipe_context *pipe, unsigned buffers, double depth, unsigned stencil) { struct softpipe_context *softpipe = softpipe_context(pipe); - union util_color uc; unsigned cv; uint i; @@ -66,8 +65,6 @@ softpipe_clear(struct pipe_context *pipe, unsigned buffers, if (buffers & PIPE_CLEAR_COLOR) { for (i = 0; i < softpipe->framebuffer.nr_cbufs; i++) { - struct pipe_surface *ps = softpipe->framebuffer.cbufs[i]; - sp_tile_cache_clear(softpipe->cbuf_cache[i], color, 0); } }