mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-22 15:57:02 +02:00
Fix parenthesis/ build error
This commit is contained in:
parent
4bbde3e5ec
commit
004264d2a6
1 changed files with 1 additions and 1 deletions
|
|
@ -585,7 +585,7 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
|
||||||
VK_EXT_EXTENDED_DYNAMIC_STATE_2_EXTENSION_NAME);
|
VK_EXT_EXTENDED_DYNAMIC_STATE_2_EXTENSION_NAME);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (extensions.extended_dynamic_state2 && is_qualcomm || is_arm) {
|
if (extensions.extended_dynamic_state2 && (is_qualcomm || is_arm)) {
|
||||||
const u32 version = (properties.properties.driverVersion << 3) >> 3;
|
const u32 version = (properties.properties.driverVersion << 3) >> 3;
|
||||||
if (version >= VK_MAKE_API_VERSION(0, 0, 676, 0) &&
|
if (version >= VK_MAKE_API_VERSION(0, 0, 676, 0) &&
|
||||||
version < VK_MAKE_API_VERSION(0, 0, 680, 0) && !force_extensions) {
|
version < VK_MAKE_API_VERSION(0, 0, 680, 0) && !force_extensions) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue