diff options
| author | JosJuice <josjuice@gmail.com> | 2022-11-11 17:55:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-11 17:55:45 +0100 |
| commit | f28e5607fec604f998994e5d65931707eafec841 (patch) | |
| tree | db600ef4d85f5e7404a74d546f662e05b944b23e /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | bf69a0bfe09fc7252858afc69d2c218ae1f83e88 (diff) | |
| parent | 37a51f1d091c7db91261e73462d4e67eee5f9252 (diff) | |
Merge pull request #11263 from tellowkrinkle/NoMipsOption
VideoCommon: Add option to disable mipmaps
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); |
