From 6d4ddc47f6d114b3abc23fb28a99da600abf6de9 Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Sun, 8 Feb 2026 13:47:27 +0800 Subject: [PATCH] [Fix] (MG_Backend/DirectVulkan): request Vulkan 1.1 (to make renderdoc happy) --- MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanContext.cpp b/MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanContext.cpp index 113f554f..fc09c89b 100644 --- a/MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanContext.cpp +++ b/MobileGL/MG_Backend/DirectVulkan/Renderer/VulkanContext.cpp @@ -46,7 +46,7 @@ namespace MobileGL::MG_Backend::DirectVulkan { void VulkanContext::CreateInstance(const std::string& appName) { VkApplicationInfo appInfo{VK_STRUCTURE_TYPE_APPLICATION_INFO}; appInfo.pApplicationName = appName.c_str(); - appInfo.apiVersion = VK_API_VERSION_1_0; + appInfo.apiVersion = VK_API_VERSION_1_1; const char* exts[] = {VK_KHR_SURFACE_EXTENSION_NAME, #if __ANDROID__