turnip: Annotate vkGetImageSubresourceLayout with tu_stub
[mesa.git] / src / freedreno / vulkan / tu_image.c
index af90b1ff310911e11ec29cb9d3b98b1e23afb483..0a4bb8712842c46ceaf2ca5de8ba520e07e809ff 100644 (file)
@@ -283,6 +283,12 @@ tu_GetImageSubresourceLayout(VkDevice _device,
                              const VkImageSubresource *pSubresource,
                              VkSubresourceLayout *pLayout)
 {
+   tu_stub();
+
+   /* Even though this is a stub, let's avoid heisenbugs by providing
+    * deterministic behavior.
+    */
+   memset(pLayout, 0, sizeof(*pLayout));
 }
 
 VkResult