mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 19:20:46 +00:00
winlayer: remove Intel whitelist
Allow all drivers for now; if anything, we should start maintaining a blacklist now that most Intel chips have decent enough support to be able to run stuff satisfactorily. git-svn-id: https://svn.eduke32.com/eduke32@2580 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
17d91781c5
commit
54c3e217dc
1 changed files with 0 additions and 14 deletions
|
@ -2882,20 +2882,6 @@ static int32_t SetupOpenGL(int32_t width, int32_t height, int32_t bitspp)
|
||||||
if (!Bstrcmp(glinfo.vendor,"Microsoft Corporation")) err = 1;
|
if (!Bstrcmp(glinfo.vendor,"Microsoft Corporation")) err = 1;
|
||||||
else if (!Bstrcmp(glinfo.vendor,"SiS")) err = 1;
|
else if (!Bstrcmp(glinfo.vendor,"SiS")) err = 1;
|
||||||
else if (!Bstrcmp(glinfo.vendor,"3Dfx Interactive Inc.")) err = 1;
|
else if (!Bstrcmp(glinfo.vendor,"3Dfx Interactive Inc.")) err = 1;
|
||||||
else if (!Bstrcmp(glinfo.vendor,"Intel"))
|
|
||||||
{
|
|
||||||
if (!Bstrncmp(glinfo.renderer,"Intel 8", 7)) // 845G and 865G confirmed to work
|
|
||||||
err = 0;
|
|
||||||
else if (!Bstrncmp(glinfo.renderer,"Intel 9", 7)) // 915G, 945GM, 965/963 GMA confirmed to work
|
|
||||||
err = 0;
|
|
||||||
else if (!Bstrcmp(glinfo.renderer,"Intel Cantiga"))
|
|
||||||
err = 0;
|
|
||||||
else if (!Bstrcmp(glinfo.renderer,"Mobile Intel(R) 4 Series Express Chipset Family"))
|
|
||||||
err = 0;
|
|
||||||
else if (!Bstrcmp(glinfo.renderer,"Intel Brookdale-G"))
|
|
||||||
err = 0;
|
|
||||||
else err = 1;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!Bstrcmp(glinfo.vendor,"ATI Technologies Inc."))
|
if (!Bstrcmp(glinfo.vendor,"ATI Technologies Inc."))
|
||||||
|
|
Loading…
Reference in a new issue