From 628c41ac1d788cac4310bd62e52323de98b392c9 Mon Sep 17 00:00:00 2001 From: Trevor David Black Date: Mon, 27 Sep 2021 05:07:22 +0000 Subject: Change Vulkan API to 1.3 The commit changes the platform code to support Vulkan 1.3. Bug: 191881132 Test: build Change-Id: I75ed8a0737ef20ff95e4a27ce39cc855d8a1deeb --- vulkan/libvulkan/api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vulkan/libvulkan/api.cpp') diff --git a/vulkan/libvulkan/api.cpp b/vulkan/libvulkan/api.cpp index 9ecc5687cc..c335e2a952 100644 --- a/vulkan/libvulkan/api.cpp +++ b/vulkan/libvulkan/api.cpp @@ -1473,7 +1473,7 @@ VkResult EnumerateInstanceVersion(uint32_t* pApiVersion) { if (!EnsureInitialized()) return VK_ERROR_OUT_OF_HOST_MEMORY; - *pApiVersion = VK_API_VERSION_1_2; + *pApiVersion = VK_API_VERSION_1_3; return VK_SUCCESS; } -- cgit v1.2.3-59-g8ed1b