diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp index bd6016eca..4097d0cee 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp @@ -1675,10 +1675,7 @@ void RasterizerOpenGL::SamplerInfo::SyncWithConfig( if (!GLES && lod_bias != config.lod.bias) { lod_bias = config.lod.bias; - if (!GLES) { - // Can't sample LOD_BIAS on GLES - glSamplerParameterf(s, GL_TEXTURE_LOD_BIAS, lod_bias / 256.0f); - } + glSamplerParameterf(s, GL_TEXTURE_LOD_BIAS, lod_bias / 256.0f); } }