Mesa (master): r300g: set squared microtiling for the dummy zbuffer

Marek Olšák mareko at kemper.freedesktop.org
Tue May 31 16:20:00 UTC 2011


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

Author: Marek Olšák <maraeo at gmail.com>
Date:   Tue May 31 15:53:11 2011 +0200

r300g: set squared microtiling for the dummy zbuffer

The pitch of 4 is allowed for squared microtiling only.

---

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

diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c
index 5d6188e..d214af4 100644
--- a/src/gallium/drivers/r300/r300_emit.c
+++ b/src/gallium/drivers/r300/r300_emit.c
@@ -450,7 +450,7 @@ void r300_emit_fb_state(struct r300_context* r300, unsigned size, void* state)
         OUT_CS_REG(R300_ZB_DEPTHOFFSET, 0);
         OUT_CS_RELOC(surf);
 
-        OUT_CS_REG(R300_ZB_DEPTHPITCH, 4 | R300_DEPTHMICROTILE_TILED);
+        OUT_CS_REG(R300_ZB_DEPTHPITCH, 4 | R300_DEPTHMICROTILE_TILED_SQUARE);
         OUT_CS_RELOC(surf);
     }
 




More information about the mesa-commit mailing list