From 36138bb7fcc2d98cb77d7d084052cf48ffcd84f0 Mon Sep 17 00:00:00 2001 From: Rafael Antognolli Date: Fri, 15 Feb 2019 15:23:56 -0800 Subject: [PATCH] iris/clear: Pass on render_condition_enabled. --- src/gallium/drivers/iris/iris_clear.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/iris/iris_clear.c b/src/gallium/drivers/iris/iris_clear.c index e913dc63e1a..a7d8228ee5a 100644 --- a/src/gallium/drivers/iris/iris_clear.c +++ b/src/gallium/drivers/iris/iris_clear.c @@ -299,7 +299,8 @@ iris_clear_render_target(struct pipe_context *ctx, /* pipe_color_union and isl_color_value are interchangeable */ union isl_color_value *color = (void *) p_color; - clear_color(ice, psurf->texture, psurf->u.tex.level, &box, true, + clear_color(ice, psurf->texture, psurf->u.tex.level, &box, + render_condition_enabled, isurf->view.format, *color); } @@ -330,7 +331,8 @@ iris_clear_depth_stencil(struct pipe_context *ctx, assert(util_format_is_depth_or_stencil(psurf->texture->format)); - clear_depth_stencil(ice, psurf->texture, psurf->u.tex.level, &box, true, + clear_depth_stencil(ice, psurf->texture, psurf->u.tex.level, &box, + render_condition_enabled, flags & PIPE_CLEAR_DEPTH, flags & PIPE_CLEAR_STENCIL, depth, stencil); } -- 2.30.2