Mesa (master): intel/isl: Allow non-2D HiZ surfaces

Jason Ekstrand jekstrand at kemper.freedesktop.org
Mon Oct 3 22:42:44 UTC 2016


Module: Mesa
Branch: master
Commit: 0176c6a69236466a7f4bd1cb41fc09d88a5b4778
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0176c6a69236466a7f4bd1cb41fc09d88a5b4778

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Mon Sep 12 17:56:38 2016 -0700

intel/isl: Allow non-2D HiZ surfaces

Signed-off-by: Jason Ekstrand <jason at jlekstrand.net>
Reviewed-by: Nanley Chery <nanley.g.chery at intel.com>

---

 src/intel/isl/isl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/intel/isl/isl.c b/src/intel/isl/isl.c
index 1a57f7c..66e2df3 100644
--- a/src/intel/isl/isl.c
+++ b/src/intel/isl/isl.c
@@ -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,




More information about the mesa-commit mailing list