Mesa (master): softpipe: honor the render_condition_enable bit in blits.

Roland Scheidegger sroland at kemper.freedesktop.org
Sat May 31 20:48:35 UTC 2014


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

Author: Roland Scheidegger <sroland at vmware.com>
Date:   Thu May 29 01:22:19 2014 +0200

softpipe: honor the render_condition_enable bit in blits.

Reviewed-by: Brian Paul <brianp at vmware.com>
Reviewed-by: Jose Fonseca <jfonseca at vmware.com>

---

 src/gallium/drivers/softpipe/sp_surface.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/gallium/drivers/softpipe/sp_surface.c b/src/gallium/drivers/softpipe/sp_surface.c
index 102e8e8..768e898 100644
--- a/src/gallium/drivers/softpipe/sp_surface.c
+++ b/src/gallium/drivers/softpipe/sp_surface.c
@@ -36,6 +36,9 @@ static void sp_blit(struct pipe_context *pipe,
 {
    struct softpipe_context *sp = softpipe_context(pipe);
 
+   if (info->render_condition_enable && !softpipe_check_render_cond(sp))
+      return;
+
    if (info->src.resource->nr_samples > 1 &&
        info->dst.resource->nr_samples <= 1 &&
        !util_format_is_depth_or_stencil(info->src.resource->format) &&




More information about the mesa-commit mailing list