summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-11 11:25:22 -0700
committerBrian Paul <brianp@vmware.com>2009-12-11 11:25:22 -0700
commit205da96fc64a197b7d1a15010456402030d8893b (patch)
treec5c23f56b998857ff83bfe3eb2b2dfbfcd134d7a
parent4e67f10331bfd87560e2900e66f3b942902bc65c (diff)
llvmpipe: remove unused fb parameter
-rw-r--r--src/gallium/drivers/llvmpipe/lp_rast.c5
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 2c9c13ab22f..7083029e458 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast.c
+++ b/src/gallium/drivers/llvmpipe/lp_rast.c
@@ -561,7 +561,6 @@ static void
rasterize_bins( struct lp_rasterizer *rast,
unsigned thread_index,
struct lp_bins *bins,
- const struct pipe_framebuffer_state *fb,
bool write_depth )
{
/* loop over tile bins, rasterize each */
@@ -626,7 +625,7 @@ lp_rasterize_bins( struct lp_rasterizer *rast,
if (rast->num_threads == 0) {
/* no threading */
lp_bin_iter_begin( bins );
- rasterize_bins( rast, 0, bins, fb, write_depth );
+ rasterize_bins( rast, 0, bins, write_depth );
/* reset bins and put into the empty queue */
lp_reset_bins( bins );
@@ -690,7 +689,7 @@ thread_func( void *init_data )
if (debug)
debug_printf("thread %d doing work\n", task->thread_index);
rasterize_bins(rast, task->thread_index,
- bins, rast->fb, rast->write_depth);
+ bins, rast->write_depth);
release_current_bin( rast );