radv: fix error reporting for VkExternalMemoryTypeFlagBitsKHR

wrong type name is confusing

cc: mesa-stable

Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33323>
(cherry picked from commit ca8a740e3b)
This commit is contained in:
Mike Blumenkrantz 2025-01-30 07:45:54 -05:00 committed by Eric Engestrom
parent 62dbbe79ec
commit 78577b19bc
2 changed files with 2 additions and 2 deletions

View file

@ -134,7 +134,7 @@
"description": "radv: fix error reporting for VkExternalMemoryTypeFlagBitsKHR",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null

View file

@ -1231,7 +1231,7 @@ radv_GetPhysicalDeviceImageFormatProperties2(VkPhysicalDevice physicalDevice,
* vkGetPhysicalDeviceImageFormatProperties2 returns
* VK_ERROR_FORMAT_NOT_SUPPORTED.
*/
result = vk_errorf(pdev, VK_ERROR_FORMAT_NOT_SUPPORTED, "unsupported VkExternalMemoryTypeFlagBitsKHR 0x%x",
result = vk_errorf(pdev, VK_ERROR_FORMAT_NOT_SUPPORTED, "unsupported VkExternalMemoryHandleTypeFlagBits 0x%x",
external_info->handleType);
goto fail;
}