diff options
| author | JMC47 <JMC4789@gmail.com> | 2022-09-20 17:14:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-20 17:14:07 -0400 |
| commit | 22197c09a3cf2753c007d8ef8d75daa5fc2c44b9 (patch) | |
| tree | 14d5aa4ae61d100f3bc7a394021963258fbf3dc1 /Source/Core/VideoCommon/ShaderGenCommon.cpp | |
| parent | 4ea694a7e403c673b457643e52435b355c96fd87 (diff) | |
| parent | ee692abbe1032e9eb888defedb1bb00f569f68a3 (diff) | |
Merge pull request #10781 from tellowkrinkle/UberVertexLoader
VideoCommon: Add dynamic vertex loader for ubershaders to reduce pipeline count
Diffstat (limited to 'Source/Core/VideoCommon/ShaderGenCommon.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/ShaderGenCommon.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/ShaderGenCommon.cpp b/Source/Core/VideoCommon/ShaderGenCommon.cpp index b9965421cc..7b407f9aaf 100644 --- a/Source/Core/VideoCommon/ShaderGenCommon.cpp +++ b/Source/Core/VideoCommon/ShaderGenCommon.cpp @@ -43,6 +43,7 @@ ShaderHostConfig ShaderHostConfig::GetCurrent() bits.manual_texture_sampling_custom_texture_sizes = g_ActiveConfig.ManualTextureSamplingWithHiResTextures(); bits.backend_sampler_lod_bias = g_ActiveConfig.backend_info.bSupportsLodBiasInSampler; + bits.backend_dynamic_vertex_loader = g_ActiveConfig.backend_info.bSupportsDynamicVertexLoader; return bits; } |
