summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_setup.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-12-12 20:19:46 +0000
committerKeith Whitwell <keithw@vmware.com>2009-12-12 20:19:46 +0000
commit314d3cd751448f9ae36126937b3bbf0330542da3 (patch)
tree2823299f040909dd4b2d751d11042ef25520689b /src/gallium/drivers/llvmpipe/lp_setup.c
parent6cbb1219a3f6b83ee4d24aecb61f5b5943e3cac3 (diff)
llvmpipe: rename one of the two rasterize_bins functions
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_setup.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_setup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c
index 3967b4f21e..6d20975cb8 100644
--- a/src/gallium/drivers/llvmpipe/lp_setup.c
+++ b/src/gallium/drivers/llvmpipe/lp_setup.c
@@ -128,8 +128,8 @@ static void reset_context( struct setup_context *setup )
/** Rasterize all tile's bins */
static void
-rasterize_bins( struct setup_context *setup,
- boolean write_depth )
+lp_setup_rasterize_bins( struct setup_context *setup,
+ boolean write_depth )
{
struct lp_bins *bins = lp_setup_get_current_bins(setup);
@@ -189,7 +189,7 @@ execute_clears( struct setup_context *setup )
LP_DBG(DEBUG_SETUP, "%s\n", __FUNCTION__);
begin_binning( setup );
- rasterize_bins( setup, TRUE );
+ lp_setup_rasterize_bins( setup, TRUE );
}
@@ -220,7 +220,7 @@ set_state( struct setup_context *setup,
if (old_state == SETUP_CLEARED)
execute_clears( setup );
else
- rasterize_bins( setup, TRUE );
+ lp_setup_rasterize_bins( setup, TRUE );
break;
}