diff options
| author | TellowKrinkle <tellowkrinkle@gmail.com> | 2022-11-06 23:28:46 -0600 |
|---|---|---|
| committer | TellowKrinkle <tellowkrinkle@gmail.com> | 2022-11-07 22:18:56 -0600 |
| commit | 37a51f1d091c7db91261e73462d4e67eee5f9252 (patch) | |
| tree | 9f869f782c1c65edb3569f2feaad0e9f94724c7f /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | ee7887b7511dd3cdb27fd8517d42088cf26cdade (diff) | |
VideoCommon: Add an option to disable mipmaps
Needed by M1 fifoci to work around a minor non-determinism bug
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 760e185304..40d5841714 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -140,6 +140,9 @@ void VideoConfig::Refresh() iEFBAccessTileSize = Config::Get(Config::GFX_HACK_EFB_ACCESS_TILE_SIZE); iMissingColorValue = Config::Get(Config::GFX_HACK_MISSING_COLOR_VALUE); bFastTextureSampling = Config::Get(Config::GFX_HACK_FAST_TEXTURE_SAMPLING); +#ifdef __APPLE__ + bNoMipmapping = Config::Get(Config::GFX_HACK_NO_MIPMAPPING); +#endif bPerfQueriesEnable = Config::Get(Config::GFX_PERF_QUERIES_ENABLE); |
