Mesa (master): r300g: always set the pitch of the first miplevel in the tiling flags

Marek Olšák mareko at kemper.freedesktop.org
Sun May 2 11:35:54 UTC 2010


Module: Mesa
Branch: master
Commit: 9d3360567346036f1c2b0b5e9de9bd123d883762
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9d3360567346036f1c2b0b5e9de9bd123d883762

Author: Marek Olšák <maraeo at gmail.com>
Date:   Sun May  2 13:27:57 2010 +0200

r300g: always set the pitch of the first miplevel in the tiling flags

This further reduces the number of DRM calls and flushes.

---

 src/gallium/drivers/r300/r300_state.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c
index bea1b58..d31e7c5 100644
--- a/src/gallium/drivers/r300/r300_state.c
+++ b/src/gallium/drivers/r300/r300_state.c
@@ -551,7 +551,7 @@ static void r300_fb_set_tiling_flags(struct r300_context *r300,
         level = new_state->cbufs[i]->level;
 
         r300->rws->buffer_set_tiling(r300->rws, tex->buffer,
-                                        tex->pitch[level],
+                                        tex->pitch[0],
                                         tex->microtile,
                                         tex->mip_macrotile[level]);
     }
@@ -560,7 +560,7 @@ static void r300_fb_set_tiling_flags(struct r300_context *r300,
         level = new_state->zsbuf->level;
 
         r300->rws->buffer_set_tiling(r300->rws, tex->buffer,
-                                        tex->pitch[level],
+                                        tex->pitch[0],
                                         tex->microtile,
                                         tex->mip_macrotile[level]);
     }




More information about the mesa-commit mailing list