From 54c3e217dc65fd5ec663329a852f693160b3ab5f Mon Sep 17 00:00:00 2001 From: plagman Date: Sun, 1 Apr 2012 04:32:17 +0000 Subject: [PATCH] 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 --- polymer/eduke32/build/src/winlayer.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/polymer/eduke32/build/src/winlayer.c b/polymer/eduke32/build/src/winlayer.c index 4ed9c1eba..c2d6a3199 100644 --- a/polymer/eduke32/build/src/winlayer.c +++ b/polymer/eduke32/build/src/winlayer.c @@ -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; else if (!Bstrcmp(glinfo.vendor,"SiS")) 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 { if (!Bstrcmp(glinfo.vendor,"ATI Technologies Inc."))