From 9c1d1f3af8bbda9855f9fb815ba620579a712a76 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 9 May 2016 04:38:20 +0200 Subject: [PATCH] (GL) Remove these conditionals - mipmap support should be detected at runtime --- gfx/drivers/gl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gfx/drivers/gl.c b/gfx/drivers/gl.c index 43bd5e556b..57f3b774f7 100644 --- a/gfx/drivers/gl.c +++ b/gfx/drivers/gl.c @@ -3290,7 +3290,6 @@ static void gl_load_texture_data( if (!gl_check_mipmap()) { -#if defined(HAVE_OPENGLES2) || defined(HAVE_PSGL) || defined(OSX_PPC) /* Assume no mipmapping support. */ switch (filter_type) { @@ -3303,7 +3302,6 @@ static void gl_load_texture_data( default: break; } -#endif } switch (filter_type)