From: Roland Scheidegger Date: Mon, 29 Aug 2016 16:14:49 +0000 (+0200) Subject: llvmpipe: (trivial) honor render_condition_enabled for clear_rt/clear_ds X-Git-Tag: upstream/17.1.0~6863 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5d7624e1d94195c775b4f4b58c92553ed52a779;p=platform%2Fupstream%2Fmesa.git llvmpipe: (trivial) honor render_condition_enabled for clear_rt/clear_ds --- diff --git a/src/gallium/drivers/llvmpipe/lp_surface.c b/src/gallium/drivers/llvmpipe/lp_surface.c index 643c416..784db7f 100644 --- a/src/gallium/drivers/llvmpipe/lp_surface.c +++ b/src/gallium/drivers/llvmpipe/lp_surface.c @@ -195,7 +195,7 @@ llvmpipe_clear_render_target(struct pipe_context *pipe, { struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe); - if (!llvmpipe_check_render_cond(llvmpipe)) + if (render_condition_enabled && !llvmpipe_check_render_cond(llvmpipe)) return; util_clear_render_target(pipe, dst, color, @@ -215,7 +215,7 @@ llvmpipe_clear_depth_stencil(struct pipe_context *pipe, { struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe); - if (!llvmpipe_check_render_cond(llvmpipe)) + if (render_condition_enabled && !llvmpipe_check_render_cond(llvmpipe)) return; util_clear_depth_stencil(pipe, dst, clear_flags,