summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_rast.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-01-13 18:58:38 -0700
committerBrian Paul <brianp@vmware.com>2010-01-13 18:58:42 -0700
commit2ba1c8189a124932b7b35115caf8f442bf4a7125 (patch)
tree50fa5690a26d926ea88fe69dd07c41e8580d562b /src/gallium/drivers/llvmpipe/lp_rast.c
parentf94a99170ecdc3286408b3628fbae9f45518007e (diff)
llvmpipe: use one loop in lp_rast_clear_zstencil()
This is just a tiny bit faster.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_rast.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast.c b/src/gallium/drivers/llvmpipe/lp_rast.c
index 3849116758..75562bf62d 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;
}