Mesa (master): r300g: fix conversion from int to boolean

Marek Olšák mareko at kemper.freedesktop.org
Sun May 15 01:31:21 UTC 2011


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

Author: Marek Olšák <maraeo at gmail.com>
Date:   Sun May 15 02:10:44 2011 +0200

r300g: fix conversion from int to boolean

---

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

diff --git a/src/gallium/drivers/r300/r300_blit.c b/src/gallium/drivers/r300/r300_blit.c
index 95a43fe..8ec6479 100644
--- a/src/gallium/drivers/r300/r300_blit.c
+++ b/src/gallium/drivers/r300/r300_blit.c
@@ -113,7 +113,7 @@ static boolean r300_fast_zclear_allowed(struct r300_context *r300)
     struct pipe_framebuffer_state *fb =
         (struct pipe_framebuffer_state*)r300->fb_state.state;
 
-    return r300_resource(fb->zsbuf->texture)->tex.zmask_dwords[fb->zsbuf->u.tex.level];
+    return r300_resource(fb->zsbuf->texture)->tex.zmask_dwords[fb->zsbuf->u.tex.level] != 0;
 }
 
 static boolean r300_hiz_clear_allowed(struct r300_context *r300)
@@ -121,7 +121,7 @@ static boolean r300_hiz_clear_allowed(struct r300_context *r300)
     struct pipe_framebuffer_state *fb =
         (struct pipe_framebuffer_state*)r300->fb_state.state;
 
-    return r300_resource(fb->zsbuf->texture)->tex.hiz_dwords[fb->zsbuf->u.tex.level];
+    return r300_resource(fb->zsbuf->texture)->tex.hiz_dwords[fb->zsbuf->u.tex.level] != 0;
 }
 
 static uint32_t r300_depth_clear_value(enum pipe_format format,




More information about the mesa-commit mailing list