Mesa (lp-binning): llvmpipe: rename one of the two rasterize_bins functions

Keith Whitwell keithw at kemper.freedesktop.org
Sun Dec 13 18:20:54 UTC 2009


Module: Mesa
Branch: lp-binning
Commit: 314d3cd751448f9ae36126937b3bbf0330542da3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=314d3cd751448f9ae36126937b3bbf0330542da3

Author: Keith Whitwell <keithw at vmware.com>
Date:   Sat Dec 12 20:19:46 2009 +0000

llvmpipe: rename one of the two rasterize_bins functions

---

 src/gallium/drivers/llvmpipe/lp_setup.c |    8 ++++----
 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 3967b4f..6d20975 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;
    }
 




More information about the mesa-commit mailing list