From: Chad Versace Date: Thu, 6 Oct 2016 22:21:47 +0000 (-0700) Subject: anv: Add anv_image::hiz_surface X-Git-Tag: upstream/17.1.0~5838 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fe40d026a1400d7651d08eed5321c44beda9bb82;p=platform%2Fupstream%2Fmesa.git anv: Add anv_image::hiz_surface Unused. Signed-off-by: Nanley Chery Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 4fa403f..dfcedd1 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; }; };