diff options
author | Kenneth Graunke <[email protected]> | 2018-12-10 00:35:48 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:12 -0800 |
commit | 2cddc953cd05b5ed136582c39cac0a77c0d9e311 (patch) | |
tree | a4e11c4d2bfdc81474f7fc335f35e2c27a2d3bb6 /src/gallium/drivers/iris/iris_clear.c | |
parent | 9b1126c9904598e67148d930f3f79d0de0914c20 (diff) |
iris: some initial HiZ bits
Diffstat (limited to 'src/gallium/drivers/iris/iris_clear.c')
-rw-r--r-- | src/gallium/drivers/iris/iris_clear.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/iris/iris_clear.c b/src/gallium/drivers/iris/iris_clear.c index 11b0a55ba41..e913dc63e1a 100644 --- a/src/gallium/drivers/iris/iris_clear.c +++ b/src/gallium/drivers/iris/iris_clear.c @@ -72,7 +72,7 @@ clear_color(struct iris_context *ice, box->z, box->depth, aux_usage); struct blorp_surf surf; - iris_blorp_surf_for_resource(&surf, p_res, aux_usage, true); + iris_blorp_surf_for_resource(&surf, p_res, aux_usage, level, true); if (!isl_format_supports_rendering(devinfo, format) && isl_format_is_rgbx(format)) @@ -130,12 +130,12 @@ clear_depth_stencil(struct iris_context *ice, if (z_res) { iris_resource_prepare_depth(ice, batch, z_res, level, box->z, box->depth); iris_blorp_surf_for_resource(&z_surf, &z_res->base, - z_res->aux.usage, true); + z_res->aux.usage, level, true); } if (stencil_res) { iris_blorp_surf_for_resource(&stencil_surf, &stencil_res->base, - stencil_res->aux.usage, true); + stencil_res->aux.usage, level, true); } blorp_clear_depth_stencil(&blorp_batch, &z_surf, &stencil_surf, |