mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #4176 from raven02/patch-38
Force Nearest when color test enabled and rendering resolution greater t...
This commit is contained in:
commit
a27e6f9add
1 changed files with 2 additions and 2 deletions
|
@ -489,8 +489,8 @@ void TextureCache::UpdateSamplingParams(TexCacheEntry &entry, bool force) {
|
|||
magFilt |= 1;
|
||||
minFilt |= 1;
|
||||
}
|
||||
|
||||
if (g_Config.iTexFiltering == NEAREST) {
|
||||
// Force Nearest when color test enabled and rendering resolution greater than 480x272
|
||||
if (g_Config.iTexFiltering == NEAREST || (gstate.isColorTestEnabled() && g_Config.iInternalResolution != 1)) {
|
||||
magFilt &= ~1;
|
||||
minFilt &= ~1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue