Browse Source
Merge pull request #11876 from liamwhite/apiversion
vulkan_common: use highest API version
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/video_core/vulkan_common/vulkan_wrapper.cpp
|
|
|
@ -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, |
|
|
|
|