diff options
author | Dave Airlie <[email protected]> | 2018-11-27 09:03:16 +1000 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:10 -0800 |
commit | 7bbf3ff4a98c861a208e5a19005d35c93507aa39 (patch) | |
tree | e1a814e6a67054da6cb9486720867677650d03e6 /src/gallium/drivers/iris/iris_clear.c | |
parent | dbe198d6bad2f7162e1dc082da3337278bf79c2d (diff) |
iris: add conditional render support
Diffstat (limited to 'src/gallium/drivers/iris/iris_clear.c')
-rw-r--r-- | src/gallium/drivers/iris/iris_clear.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_clear.c b/src/gallium/drivers/iris/iris_clear.c index c9c47afcaa6..7f113fa3657 100644 --- a/src/gallium/drivers/iris/iris_clear.c +++ b/src/gallium/drivers/iris/iris_clear.c @@ -56,7 +56,7 @@ iris_clear(struct pipe_context *ctx, iris_batch_maybe_flush(batch, 1500); struct blorp_batch blorp_batch; - blorp_batch_init(&ice->blorp, &blorp_batch, batch, 0); + blorp_batch_init(&ice->blorp, &blorp_batch, batch, BLORP_BATCH_PREDICATE_ENABLE); if (buffers & PIPE_CLEAR_DEPTHSTENCIL) { struct pipe_surface *psurf = cso_fb->zsbuf; |