mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 06:44:27 +00:00
Use GL_LINEAR_MIPMAP_NEAREST instead of GL_LINEAR_MIPMAP_LINEAR for a 10fps gain on XMB on imx6
This commit is contained in:
parent
e44087d62a
commit
04140f7093
@ -38,7 +38,7 @@ void gl_load_texture_data(GLuint id,
|
|||||||
switch (filter_type)
|
switch (filter_type)
|
||||||
{
|
{
|
||||||
case TEXTURE_FILTER_MIPMAP_LINEAR:
|
case TEXTURE_FILTER_MIPMAP_LINEAR:
|
||||||
min_filter = GL_LINEAR_MIPMAP_LINEAR;
|
min_filter = GL_LINEAR_MIPMAP_NEAREST;
|
||||||
mag_filter = GL_LINEAR;
|
mag_filter = GL_LINEAR;
|
||||||
#ifndef HAVE_PSGL
|
#ifndef HAVE_PSGL
|
||||||
want_mipmap = true;
|
want_mipmap = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user