diff options
| author | JMC47 <JMC4789@gmail.com> | 2022-10-24 15:22:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-24 15:22:37 -0400 |
| commit | b66793194e7b9e34080764e5985d49055ccaa37d (patch) | |
| tree | 1aac40a1e8131609f2471cb16aeae66937e5e4d5 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 4787b25a7f2acfb36a1e49a663c433640e6e3527 (diff) | |
| parent | fd2680d8b4830c312599d3579b0eb02ebf1903b8 (diff) | |
Merge pull request #11028 from tellowkrinkle/MetalFixes
Various Metal renderer improvements
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 91df848c94..760e185304 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -55,6 +55,8 @@ void VideoConfig::Refresh() bVSync = Config::Get(Config::GFX_VSYNC); iAdapter = Config::Get(Config::GFX_ADAPTER); + iManuallyUploadBuffers = Config::Get(Config::GFX_MTL_MANUALLY_UPLOAD_BUFFERS); + bUsePresentDrawable = Config::Get(Config::GFX_MTL_USE_PRESENT_DRAWABLE); bWidescreenHack = Config::Get(Config::GFX_WIDESCREEN_HACK); aspect_mode = Config::Get(Config::GFX_ASPECT_RATIO); |
