Mesa (master): r300g: fix printing whether Z compression is enabled

Marek Olšák mareko at kemper.freedesktop.org
Tue Mar 1 00:09:45 UTC 2011


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

Author: Marek Olšák <maraeo at gmail.com>
Date:   Mon Feb 28 22:57:50 2011 +0100

r300g: fix printing whether Z compression is enabled

---

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

diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c
index 61041bf..db24901 100644
--- a/src/gallium/drivers/r300/r300_context.c
+++ b/src/gallium/drivers/r300/r300_context.c
@@ -519,7 +519,8 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,
                 rws->get_value(rws, R300_VID_GART_SIZE) >> 20,
                 rws->get_value(rws, R300_VID_VRAM_SIZE) >> 20,
                 rws->get_value(rws, R300_CAN_AACOMPRESS) ? "YES" : "NO",
-                rws->get_value(rws, R300_CAN_HYPERZ) ? "YES" : "NO",
+                rws->get_value(rws, R300_CAN_HYPERZ) &&
+                r300->screen->caps.zmask_ram ? "YES" : "NO",
                 rws->get_value(rws, R300_CAN_HYPERZ) &&
                 r300->screen->caps.hiz_ram ? "YES" : "NO");
     }




More information about the mesa-commit mailing list