diff options
| author | TellowKrinkle <tellowkrinkle@gmail.com> | 2022-06-21 02:07:35 -0500 |
|---|---|---|
| committer | TellowKrinkle <tellowkrinkle@gmail.com> | 2022-07-21 20:44:19 -0500 |
| commit | 6ee0248eab7622d2db19f28f120b447b5db11379 (patch) | |
| tree | f1c1001e82f488ed774bdf04f44613b2875e99be /Source/Core/VideoBackends/Vulkan/VulkanContext.cpp | |
| parent | c0fd1281713f0ffe8bcfb628f8d328c7a1b5ae09 (diff) | |
VideoBackends:Metal: MSAA support
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/VulkanContext.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Vulkan/VulkanContext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp index a6cb201d72..cad326c83a 100644 --- a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp +++ b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp @@ -294,6 +294,7 @@ void VulkanContext::PopulateBackendInfo(VideoConfig* config) config->backend_info.bSupportsTextureQueryLevels = true; // Assumed support. config->backend_info.bSupportsLodBiasInSampler = false; // Dependent on OS. config->backend_info.bSupportsSettingObjectNames = false; // Dependent on features. + config->backend_info.bSupportsPartialMultisampleResolve = true; // Assumed support. } void VulkanContext::PopulateBackendInfoAdapters(VideoConfig* config, const GPUList& gpu_list) |
