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://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1178 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Eric Wasylishen 2015-03-02 03:13:58 +00:00
parent 5b008f218b
commit 96f7d2004f
1 changed files with 1 additions and 15 deletions

View File

@ -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
{