From 51ece3297d6cb1bbbdae9990603ce5ad3cf7b76f Mon Sep 17 00:00:00 2001 From: ewasylishen Date: Mon, 2 Mar 2015 03:13:58 +0000 Subject: [PATCH] gl_vidsdl.c: remove AMD driver special case which disabled GLSL mdl renderer, as the latest drivers fixed the bug that was working around git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1178 af15c1b1-3010-417e-b628-4374ebc0bcbd --- quakespasm/Quake/gl_vidsdl.c | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/quakespasm/Quake/gl_vidsdl.c b/quakespasm/Quake/gl_vidsdl.c index 76494690..5571bd15 100644 --- a/quakespasm/Quake/gl_vidsdl.c +++ b/quakespasm/Quake/gl_vidsdl.c @@ -1154,21 +1154,7 @@ static void GL_CheckExtensions (void) Con_Warning ("GLSL alias model rendering disabled at command line\n"); else if (gl_glsl_able && gl_vbo_able && gl_max_texture_units >= 3) { - qboolean broken = false; - // Ugly hack to disable GLSL alias renderer on ATI/Win32 - // (black model bug observed by szo) -#if defined(_WIN32) - if (strstr(gl_vendor, "ATI")) - broken = true; -#endif - if (broken && !COM_CheckParm("-glslalias")) - { - Con_Warning ("Unsupported hardware, GLSL alias rendering disabled (use -glslalias to force enable)\n"); - } - else - { - gl_glsl_alias_able = true; - } + gl_glsl_alias_able = true; } else {