Caio Oliveira
23 hours ago
No known key found for this signature in database
GPG Key ID: AAAE6C7FD4186B0C
1 changed files with
5 additions and
1 deletions
-
src/video_core/vulkan_common/vulkan_device.cpp
|
|
|
@ -663,7 +663,11 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR |
|
|
|
break; |
|
|
|
} |
|
|
|
|
|
|
|
if (!Settings::values.vertex_input_dynamic_state.GetValue() || !extensions.extended_dynamic_state) { |
|
|
|
if (!extensions.extended_dynamic_state) { |
|
|
|
Settings::values.vertex_input_dynamic_state.SetValue(false); |
|
|
|
} |
|
|
|
|
|
|
|
if (!Settings::values.vertex_input_dynamic_state.GetValue()) { |
|
|
|
RemoveExtensionFeature(extensions.vertex_input_dynamic_state, features.vertex_input_dynamic_state, VK_EXT_VERTEX_INPUT_DYNAMIC_STATE_EXTENSION_NAME); |
|
|
|
} |
|
|
|
|
|
|
|
|