Skip to content
Snippets Groups Projects
Unverified Commit 008d7e8c authored by liamwhite's avatar liamwhite Committed by GitHub
Browse files

Merge pull request #11876 from liamwhite/apiversion

vulkan_common: use highest API version
parents 6eb3a583 e0834ee5
No related branches found
No related tags found
No related merge requests found
......@@ -522,7 +522,7 @@ Instance Instance::Create(u32 version, Span<const char*> layers, Span<const char
.applicationVersion = VK_MAKE_VERSION(0, 1, 0),
.pEngineName = "yuzu Emulator",
.engineVersion = VK_MAKE_VERSION(0, 1, 0),
.apiVersion = version,
.apiVersion = VK_API_VERSION_1_3,
};
const VkInstanceCreateInfo ci{
.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment