From: Brian Paul Date: Thu, 14 Jan 2010 01:58:38 +0000 (-0700) Subject: llvmpipe: use one loop in lp_rast_clear_zstencil() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2ba1c8189a124932b7b35115caf8f442bf4a7125;p=mesa.git llvmpipe: use one loop in lp_rast_clear_zstencil() This is just a tiny bit faster. --- diff --git a/src/gallium/drivers/llvmpipe/lp_rast.c b/src/gallium/drivers/llvmpipe/lp_rast.c index 3849116758f..75562bf62dc 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast.c +++ b/src/gallium/drivers/llvmpipe/lp_rast.c @@ -226,14 +226,13 @@ void lp_rast_clear_zstencil( struct lp_rasterizer *rast, unsigned thread_index, const union lp_rast_cmd_arg arg) { - unsigned i, j; + unsigned i; uint32_t *depth_tile = rast->tasks[thread_index].tile.depth; LP_DBG(DEBUG_RAST, "%s 0x%x\n", __FUNCTION__, arg.clear_zstencil); - for (i = 0; i < TILE_SIZE; i++) - for (j = 0; j < TILE_SIZE; j++) - depth_tile[i*TILE_SIZE + j] = arg.clear_zstencil; + for (i = 0; i < TILE_SIZE * TILE_SIZE; i++) + depth_tile[i] = arg.clear_zstencil; }