mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
venus: Enable Vulkan 1.3
Signed-off-by: Chad Versace <chadversary@chromium.org> Reviewed-by: Yiwei Zhang <zzyiwei@chromium.org> Reviewed-by: Ryan Neph <ryanneph@google.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19046>
This commit is contained in:
parent
85a6a2461d
commit
f8f4648cac
2 changed files with 4 additions and 4 deletions
|
|
@ -28,7 +28,7 @@
|
|||
#ifdef ANDROID
|
||||
#define VN_MAX_API_VERSION VK_MAKE_VERSION(1, 1, VK_HEADER_VERSION)
|
||||
#else
|
||||
#define VN_MAX_API_VERSION VK_MAKE_VERSION(1, 2, VK_HEADER_VERSION)
|
||||
#define VN_MAX_API_VERSION VK_MAKE_VERSION(1, 3, VK_HEADER_VERSION)
|
||||
#endif
|
||||
|
||||
struct vn_instance {
|
||||
|
|
|
|||
|
|
@ -735,9 +735,9 @@ vn_physical_device_init_properties(struct vn_physical_device *physical_dev)
|
|||
"Mesa " PACKAGE_VERSION MESA_GIT_SHA1);
|
||||
vk12_props->conformanceVersion = (VkConformanceVersion){
|
||||
.major = 1,
|
||||
.minor = 2,
|
||||
.subminor = 7,
|
||||
.patch = 1,
|
||||
.minor = 3,
|
||||
.subminor = 0,
|
||||
.patch = 0,
|
||||
};
|
||||
|
||||
vn_physical_device_init_uuids(physical_dev);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue