Mesa (master): anv: suppress warning about unhandled image layout

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Oct 2 14:10:11 UTC 2018


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

Author: Eric Engestrom <eric.engestrom at intel.com>
Date:   Tue Oct  2 14:31:42 2018 +0100

anv: suppress warning about unhandled image layout

Let's just be explicit that VK_NV_shading_rate_image is not supported.

Suggested-by: Jason Ekstrand <jason.ekstrand at intel.com>
Fixes: 6ee17091708a41c4aa81a "vulkan: Update the XML and headers to 1.1.86"
Signed-off-by: Eric Engestrom <eric.engestrom at intel.com>
Reviewed-by: Jason Ekstrand <jason.ekstrand at intel.com>

---

 src/intel/vulkan/anv_image.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c
index b0d8c560ad..9f7964ae37 100644
--- a/src/intel/vulkan/anv_image.c
+++ b/src/intel/vulkan/anv_image.c
@@ -920,6 +920,9 @@ anv_layout_to_aux_usage(const struct gen_device_info * const devinfo,
 
    case VK_IMAGE_LAYOUT_SHARED_PRESENT_KHR:
       unreachable("VK_KHR_shared_presentable_image is unsupported");
+
+   case VK_IMAGE_LAYOUT_SHADING_RATE_OPTIMAL_NV:
+      unreachable("VK_NV_shading_rate_image is unsupported");
    }
 
    /* If the layout isn't recognized in the exhaustive switch above, the




More information about the mesa-commit mailing list