diff options
author | Brian Paul <[email protected]> | 2010-02-24 13:30:57 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-24 13:54:25 -0700 |
commit | 1c9db3c57f1538e21b839df0989b958be3465a36 (patch) | |
tree | 5e748ddb22b8c46fc2e9d34abf5275e6c003d30b /src/gallium/drivers/llvmpipe/lp_rast.c | |
parent | ab71a5e4c918eee19b518603a2db11d2793b2c91 (diff) |
llvmpipe: pass fewer parameters to rasterization functions
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_rast.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast.c b/src/gallium/drivers/llvmpipe/lp_rast.c index bbd63aec2b3..159ef0d55d7 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast.c +++ b/src/gallium/drivers/llvmpipe/lp_rast.c @@ -396,14 +396,13 @@ void lp_rast_shade_tile( struct lp_rasterizer *rast, * Compute shading for a 4x4 block of pixels. * This is a bin command called during bin processing. */ -void lp_rast_shade_quads( struct lp_rasterizer *rast, - unsigned thread_index, +void lp_rast_shade_quads( struct lp_rasterizer_task *task, const struct lp_rast_shader_inputs *inputs, unsigned x, unsigned y, int32_t c1, int32_t c2, int32_t c3) { - struct lp_rasterizer_task *task = &rast->tasks[thread_index]; const struct lp_rast_state *state = task->current_state; + struct lp_rasterizer *rast = task->rast; struct lp_rast_tile *tile = &task->tile; uint8_t *color[PIPE_MAX_COLOR_BUFS]; void *depth; |