mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
Disable texture compression when ATI's horrible OpenGL implementation is detected
git-svn-id: https://svn.eduke32.com/eduke32@1841 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
3eb9d8fb5c
commit
44ab4b6ca1
1 changed files with 1 additions and 1 deletions
|
@ -2902,7 +2902,7 @@ static int32_t SetupOpenGL(int32_t width, int32_t height, int32_t bitspp)
|
||||||
// support bgra textures
|
// support bgra textures
|
||||||
glinfo.bgra = 1;
|
glinfo.bgra = 1;
|
||||||
}
|
}
|
||||||
else if (!Bstrcmp((char *)p2, "GL_ARB_texture_compression"))
|
else if (!Bstrcmp((char *)p2, "GL_ARB_texture_compression") && Bstrcmp(glinfo.vendor,"ATI Technologies Inc."))
|
||||||
{
|
{
|
||||||
// support texture compression
|
// support texture compression
|
||||||
glinfo.texcompr = 1;
|
glinfo.texcompr = 1;
|
||||||
|
|
Loading…
Reference in a new issue