Mesa (lp-binning): llvmpipe: added some debug/info code

Brian Paul brianp at kemper.freedesktop.org
Thu Dec 10 21:56:53 UTC 2009


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

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Dec  9 16:32:32 2009 -0700

llvmpipe: added some debug/info code

---

 src/gallium/drivers/llvmpipe/lp_rast.c |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/llvmpipe/lp_rast.c b/src/gallium/drivers/llvmpipe/lp_rast.c
index 3165128..5659ae2 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast.c
+++ b/src/gallium/drivers/llvmpipe/lp_rast.c
@@ -40,6 +40,7 @@
 
 
 
+
 /**
  * Begin the rasterization phase.
  * Map the framebuffer surfaces.  Initialize the 'rast' state.
@@ -555,8 +556,22 @@ lp_rasterize_bins( struct lp_rasterizer *rast,
                    const struct pipe_framebuffer_state *fb,
                    bool write_depth )
 {
+   boolean debug = false;
+
    LP_DBG(DEBUG_SETUP, "%s\n", __FUNCTION__);
 
+   if (debug) {
+      unsigned x, y;
+      printf("rasterize bins:\n");
+      printf("  data size: %u\n", lp_bin_data_size(bins));
+      for (y = 0; y < bins->tiles_y; y++) {
+         for (x = 0; x < bins->tiles_x; x++) {
+            printf("  bin %u, %u size: %u\n", x, y,
+                   lp_bin_cmd_size(bins, x, y));
+         }
+      }
+   }
+
    lp_rast_begin( rast,
                   fb->cbufs[0], 
                   fb->zsbuf,




More information about the mesa-commit mailing list