mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 20:00:10 +01:00
intel/isl: Allow non-2D HiZ surfaces
Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
This commit is contained in:
parent
4e397c6c75
commit
0176c6a692
1 changed files with 2 additions and 2 deletions
|
|
@ -1373,11 +1373,11 @@ isl_surf_get_hiz_surf(const struct isl_device *dev,
|
|||
const unsigned samples = ISL_DEV_GEN(dev) >= 9 ? 1 : surf->samples;
|
||||
|
||||
isl_surf_init(dev, hiz_surf,
|
||||
.dim = ISL_SURF_DIM_2D,
|
||||
.dim = surf->dim,
|
||||
.format = ISL_FORMAT_HIZ,
|
||||
.width = surf->logical_level0_px.width,
|
||||
.height = surf->logical_level0_px.height,
|
||||
.depth = 1,
|
||||
.depth = surf->logical_level0_px.depth,
|
||||
.levels = surf->levels,
|
||||
.array_len = surf->logical_level0_px.array_len,
|
||||
.samples = samples,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue