diff options
author | Chad Versace <chad.versace@intel.com> | 2016-10-06 15:21:47 -0700 |
---|---|---|
committer | Nanley Chery <nanley.g.chery@intel.com> | 2016-10-07 12:54:17 -0700 |
commit | fe40d026a1400d7651d08eed5321c44beda9bb82 (patch) | |
tree | 06f9f65d697254ec009546fd6caaf423f78114a3 | |
parent | 814fa1237935884c3c0ba47a31e3599b975aec1a (diff) |
anv: Add anv_image::hiz_surface
Unused.
Signed-off-by: Nanley Chery <nanley.g.chery@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
-rw-r--r-- | src/intel/vulkan/anv_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 4fa403ff18d..dfcedd16a15 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -1648,6 +1648,7 @@ anv_pipeline_setup_l3_config(struct anv_pipeline *pipeline, bool needs_slm); * Subsurface of an anv_image. */ struct anv_surface { + /** Valid only if isl_surf::size > 0. */ struct isl_surf isl; /** @@ -1694,6 +1695,7 @@ struct anv_image { struct { struct anv_surface depth_surface; + struct anv_surface hiz_surface; struct anv_surface stencil_surface; }; }; |