diff options
author | Lionel Landwerlin <[email protected]> | 2019-07-18 01:00:11 +0300 |
---|---|---|
committer | Juan A. Suarez Romero <[email protected]> | 2019-07-18 08:36:51 +0000 |
commit | 0b1ee72bbc5f4f34e013d408d4d435135016e923 (patch) | |
tree | 62348a77da00850bea19a7413b10264253731135 | |
parent | 3dea2e2ffc6c2f6eaf3b703635fbe3f0ed58ea43 (diff) |
anv: fix format mapping for depth/stencil formats
anv_format is supposed to have a pointer back to the associated
VkFormat, we were missed this for depth/stencil formats.
This doesn't fix anything afaict, but will be needed for future
changes.
Signed-off-by: Lionel Landwerlin <[email protected]>
Fixes: 465de47bad70 ("anv: associate vulkan formats with aspects")
Acked-by: Jason Ekstrand <[email protected]>
(cherry picked from commit 3adc32df922753363d964b637196157587d57565)
-rw-r--r-- | src/intel/vulkan/anv_formats.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_formats.c b/src/intel/vulkan/anv_formats.c index 341a0a14fd2..6573d3e6bd0 100644 --- a/src/intel/vulkan/anv_formats.c +++ b/src/intel/vulkan/anv_formats.c @@ -69,6 +69,7 @@ .aspect = VK_IMAGE_ASPECT_DEPTH_BIT, \ }, \ }, \ + .vk_format = __vk_fmt, \ .n_planes = 1, \ } @@ -80,6 +81,7 @@ .aspect = VK_IMAGE_ASPECT_STENCIL_BIT, \ }, \ }, \ + .vk_format = __vk_fmt, \ .n_planes = 1, \ } @@ -798,6 +800,7 @@ anv_get_image_format_properties( if (format == NULL) goto unsupported; + assert(format->vk_format == info->format); format_feature_flags = anv_get_image_format_features(devinfo, info->format, format, info->tiling); |