diff options
author | Kenneth Graunke <[email protected]> | 2018-11-26 20:55:59 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:10 -0800 |
commit | 0c3ea03e4bcc4a334d862cf96b3fa70a5b8a64cc (patch) | |
tree | 52110bbdd20fad838ffaeae77f1361b5d88a1458 /src/gallium/drivers/iris/iris_blit.c | |
parent | 7bbf3ff4a98c861a208e5a19005d35c93507aa39 (diff) |
iris: for BLORP, only use the predicate enable bit when USE_BIT
Diffstat (limited to 'src/gallium/drivers/iris/iris_blit.c')
-rw-r--r-- | src/gallium/drivers/iris/iris_blit.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/gallium/drivers/iris/iris_blit.c b/src/gallium/drivers/iris/iris_blit.c index 729d8f7b038..b8562d08945 100644 --- a/src/gallium/drivers/iris/iris_blit.c +++ b/src/gallium/drivers/iris/iris_blit.c @@ -254,6 +254,15 @@ iris_blit(struct pipe_context *ctx, const struct pipe_blit_info *info) struct iris_context *ice = (void *) ctx; struct iris_screen *screen = (struct iris_screen *)ctx->screen; const struct gen_device_info *devinfo = &screen->devinfo; + enum blorp_batch_flags blorp_flags = 0; + + if (info->render_condition_enable) { + if (ice->predicate == IRIS_PREDICATE_STATE_DONT_RENDER) + return; + + if (ice->predicate == IRIS_PREDICATE_STATE_USE_BIT) + blorp_flags |= BLORP_BATCH_PREDICATE_ENABLE; + } struct blorp_surf src_surf, dst_surf; iris_blorp_surf_for_resource(&src_surf, info->src.resource, @@ -338,8 +347,7 @@ iris_blit(struct pipe_context *ctx, const struct pipe_blit_info *info) struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER]; struct blorp_batch blorp_batch; - blorp_batch_init(&ice->blorp, &blorp_batch, batch, - info->render_condition_enable ? BLORP_BATCH_PREDICATE_ENABLE : 0); + blorp_batch_init(&ice->blorp, &blorp_batch, batch, blorp_flags); for (int slice = 0; slice < info->dst.box.depth; slice++) { iris_batch_maybe_flush(batch, 1500); |