From 0db3c8242c01acb7d11a46129e474db70c6b5503 Mon Sep 17 00:00:00 2001 From: fgenesis Date: Tue, 15 Nov 2016 01:18:54 +0100 Subject: [PATCH] Remove hardcoded Intel GMA 950 check --- BBGE/FrameBuffer.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/BBGE/FrameBuffer.cpp b/BBGE/FrameBuffer.cpp index 387364b..7d6123d 100644 --- a/BBGE/FrameBuffer.cpp +++ b/BBGE/FrameBuffer.cpp @@ -59,21 +59,6 @@ float FrameBuffer::getHeightP() bool FrameBuffer::init(int width, int height, bool fitToScreen) { -// !!! FIXME: check for common GMA GL_RENDERER strings on Linux, too. -#ifdef BBGE_BUILD_MACOSX - std::ostringstream oss; - oss << "Vendor: [" << glGetString(GL_VENDOR) << "] Renderer: [" << glGetString(GL_RENDERER) << "]"; - debugLog(oss.str()); - - std::string renderer = (const char*)glGetString(GL_RENDERER); - if (renderer.find("Intel GMA 950") != std::string::npos) - { - debugLog("Video Card is Intel GMA 950. Disabling FrameBuffer Effects."); - return false; - } - -#endif - #ifdef BBGE_BUILD_FRAMEBUFFER _w = width;