From 89f244931f444056a1ccf544e608b533fa993fa2 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Sun, 25 Apr 2010 15:05:41 +0100 Subject: softpipe: Hardcode TILE_CLEAR_OPTIMIZATION to 1. The un-optimized path relies on surface_fill which can only handle formats with depth <= 32, so it is pointless to keep it around. --- src/gallium/drivers/softpipe/sp_clear.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/gallium/drivers/softpipe/sp_clear.c') diff --git a/src/gallium/drivers/softpipe/sp_clear.c b/src/gallium/drivers/softpipe/sp_clear.c index 5f130453c3..ae3f00f338 100644 --- a/src/gallium/drivers/softpipe/sp_clear.c +++ b/src/gallium/drivers/softpipe/sp_clear.c @@ -69,11 +69,6 @@ softpipe_clear(struct pipe_context *pipe, unsigned buffers, const float *rgba, util_pack_color(rgba, ps->format, &uc); sp_tile_cache_clear(softpipe->cbuf_cache[i], rgba, uc.ui); - -#if !TILE_CLEAR_OPTIMIZATION - /* non-cached surface */ - pipe->surface_fill(pipe, ps, 0, 0, ps->width, ps->height, uc.ui); -#endif } } @@ -83,11 +78,6 @@ softpipe_clear(struct pipe_context *pipe, unsigned buffers, const float *rgba, cv = util_pack_z_stencil(ps->format, depth, stencil); sp_tile_cache_clear(softpipe->zsbuf_cache, zero, cv); - -#if !TILE_CLEAR_OPTIMIZATION - /* non-cached surface */ - pipe->surface_fill(pipe, ps, 0, 0, ps->width, ps->height, cv); -#endif } softpipe->dirty_render_cache = TRUE; -- cgit v1.2.3