diff options
| author | Jonathan Hamilton <jtrhamilton@gmail.com> | 2018-05-16 17:12:56 -0700 |
|---|---|---|
| committer | Jonathan Hamilton <jtrhamilton@gmail.com> | 2018-05-16 17:15:38 -0700 |
| commit | 29b7e33c1466a07db07e796ce9492ee384d4da2c (patch) | |
| tree | 923491adbeb89437804829d7c9a5eef792af46e8 /Source/Core/VideoCommon/TextureCacheBase.cpp | |
| parent | b547f72878f954ca030c7a6d6672ee676a57eba4 (diff) | |
Make arbitrary mipmap detection a config option
Under GFX::Enhancements::ArbitraryMipmapDetection - default enabled
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index bf9dc98b9d..00d65c953d 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -500,6 +500,9 @@ public: if (levels.size() < 2) return false; + if (!g_ActiveConfig.bArbitraryMipmapDetection) + return false; + // This is the average per-pixel, per-channel difference in percent between what we // expect a normal blurred mipmap to look like and what we actually received // 4.5% was chosen because it's just below the lowest clearly-arbitrary texture |
