diff options
| author | TellowKrinkle <tellowkrinkle@gmail.com> | 2022-06-18 22:49:03 -0500 |
|---|---|---|
| committer | TellowKrinkle <tellowkrinkle@gmail.com> | 2022-09-19 16:28:24 -0500 |
| commit | 936b4d5d0d4aae87507fb4952f9ad570ee7522fe (patch) | |
| tree | 320531a70ae51b4881425d171e7f3c4ab54375b4 /Source/Core/VideoBackends/Vulkan/VulkanContext.cpp | |
| parent | 7edc8b4e794a71da5b21cfbdb850420dfbac5122 (diff) | |
VideoBackends:Vulkan: Dynamic vertex loader support
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/VulkanContext.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Vulkan/VulkanContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp index ca2d793910..5b970cc9b1 100644 --- a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp +++ b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp @@ -295,7 +295,7 @@ void VulkanContext::PopulateBackendInfo(VideoConfig* config) config->backend_info.bSupportsLodBiasInSampler = false; // Dependent on OS. config->backend_info.bSupportsSettingObjectNames = false; // Dependent on features. config->backend_info.bSupportsPartialMultisampleResolve = true; // Assumed support. - config->backend_info.bSupportsDynamicVertexLoader = false; // Not yet supported + config->backend_info.bSupportsDynamicVertexLoader = true; // Assumed support. } void VulkanContext::PopulateBackendInfoAdapters(VideoConfig* config, const GPUList& gpu_list) |
