summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
diff options
context:
space:
mode:
authorStenzek <stenzek@gmail.com>2017-11-13 23:40:48 +1000
committerStenzek <stenzek@gmail.com>2017-11-21 17:19:43 +1000
commit39559f6358acf6c3eb6395f215ccc6732fedb1dd (patch)
treeb1443b1e818e4d30d1c75e3633e2c72ac4d21c70 /Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
parentf2f50d4fe5e0f97d36d6d132f40516ad6174601f (diff)
VideoConfig: Remove bSupportsInternalResolutionFrameDumps
Field is unused as of Hybrid XFB.
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/VulkanContext.cpp')
-rw-r--r--Source/Core/VideoBackends/Vulkan/VulkanContext.cpp23
1 files changed, 11 insertions, 12 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
index 9d34174e90..5447e7eea3 100644
--- a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
+++ b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
@@ -233,18 +233,17 @@ void VulkanContext::PopulateBackendInfo(VideoConfig* config)
config->backend_info.bSupportsComputeShaders = true; // Assumed support.
config->backend_info.bSupportsGPUTextureDecoding = true; // Assumed support.
config->backend_info.bSupportsBitfield = true; // Assumed support.
- config->backend_info.bSupportsDynamicSamplerIndexing = true; // Assumed support.
- config->backend_info.bSupportsInternalResolutionFrameDumps = true; // Assumed support.
- config->backend_info.bSupportsPostProcessing = true; // Assumed support.
- config->backend_info.bSupportsDualSourceBlend = false; // Dependent on features.
- config->backend_info.bSupportsGeometryShaders = false; // Dependent on features.
- config->backend_info.bSupportsGSInstancing = false; // Dependent on features.
- config->backend_info.bSupportsBBox = false; // Dependent on features.
- config->backend_info.bSupportsFragmentStoresAndAtomics = false; // Dependent on features.
- config->backend_info.bSupportsSSAA = false; // Dependent on features.
- config->backend_info.bSupportsDepthClamp = false; // Dependent on features.
- config->backend_info.bSupportsST3CTextures = false; // Dependent on features.
- config->backend_info.bSupportsBPTCTextures = false; // Dependent on features.
+ config->backend_info.bSupportsDynamicSamplerIndexing = true; // Assumed support.
+ config->backend_info.bSupportsPostProcessing = true; // Assumed support.
+ config->backend_info.bSupportsDualSourceBlend = false; // Dependent on features.
+ config->backend_info.bSupportsGeometryShaders = false; // Dependent on features.
+ config->backend_info.bSupportsGSInstancing = false; // Dependent on features.
+ config->backend_info.bSupportsBBox = false; // Dependent on features.
+ config->backend_info.bSupportsFragmentStoresAndAtomics = false; // Dependent on features.
+ config->backend_info.bSupportsSSAA = false; // Dependent on features.
+ config->backend_info.bSupportsDepthClamp = false; // Dependent on features.
+ config->backend_info.bSupportsST3CTextures = false; // Dependent on features.
+ config->backend_info.bSupportsBPTCTextures = false; // Dependent on features.
config->backend_info.bSupportsReversedDepthRange = false; // No support yet due to driver bugs.
config->backend_info.bSupportsCopyToVram = true; // Assumed support.
config->backend_info.bForceCopyToRam = false;