diff --git a/GPU/GLES/TextureCache.cpp b/GPU/GLES/TextureCache.cpp index c79f68261e..004737ed11 100644 --- a/GPU/GLES/TextureCache.cpp +++ b/GPU/GLES/TextureCache.cpp @@ -512,7 +512,6 @@ void TextureCache::UpdateSamplingParams(TexCacheEntry &entry, bool force) { } if (!g_Config.bMipMap || noMip) { - magFilt &= 1; minFilt &= 1; } @@ -526,6 +525,8 @@ void TextureCache::UpdateSamplingParams(TexCacheEntry &entry, bool force) { } // Workaround for a clamping bug in pre-HD ATI/AMD drivers + // Applies to Tegra too apparently. Maybe the issue is that we can't wrap non-pow2 textures on these + // platforms, if so then we should change the name of this bool. if (gl_extensions.ATIClampBug && entry.framebuffer) return; diff --git a/native b/native index ecd364d854..6670d0003a 160000 --- a/native +++ b/native @@ -1 +1 @@ -Subproject commit ecd364d85484303a61a45d8b7e2aef5f170714f1 +Subproject commit 6670d0003a1960244993145703cd26c732b1c435