Mesa (master): softpipe: (trivial) honor render_condition_enabled for clear_rt/clear_ds

Roland Scheidegger sroland at kemper.freedesktop.org
Mon Aug 29 16:21:20 UTC 2016


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

Author: Roland Scheidegger <sroland at vmware.com>
Date:   Mon Aug 29 18:15:08 2016 +0200

softpipe: (trivial) honor render_condition_enabled for clear_rt/clear_ds

---

 src/gallium/drivers/softpipe/sp_surface.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_surface.c b/src/gallium/drivers/softpipe/sp_surface.c
index 643b060..3908411 100644
--- a/src/gallium/drivers/softpipe/sp_surface.c
+++ b/src/gallium/drivers/softpipe/sp_surface.c
@@ -102,7 +102,7 @@ softpipe_clear_render_target(struct pipe_context *pipe,
 {
    struct softpipe_context *softpipe = softpipe_context(pipe);
 
-   if (!softpipe_check_render_cond(softpipe))
+   if (render_condition_enabled && !softpipe_check_render_cond(softpipe))
       return;
 
    util_clear_render_target(pipe, dst, color,
@@ -122,7 +122,7 @@ softpipe_clear_depth_stencil(struct pipe_context *pipe,
 {
    struct softpipe_context *softpipe = softpipe_context(pipe);
 
-   if (!softpipe_check_render_cond(softpipe))
+   if (render_condition_enabled && !softpipe_check_render_cond(softpipe))
       return;
 
    util_clear_depth_stencil(pipe, dst, clear_flags,




More information about the mesa-commit mailing list