Skip to content
Snippets Groups Projects
Commit 0af7b703 authored by David Parks's avatar David Parks
Browse files

MAINT-804, MAINT-810 Disable framebuffer object usage on intel chips...

MAINT-804, MAINT-810 Disable framebuffer object usage on intel chips (implicitly disables lighting and shadows)
parent 60756667
No related branches found
No related tags found
No related merge requests found
......@@ -748,6 +748,11 @@ bool LLGLManager::initGL()
}
#endif
if (mIsIntel)
{ //never try to use framebuffer objects on intel (crashy)
mHasFramebufferObject = FALSE;
}
if (mHasFramebufferObject)
{
glGetIntegerv(GL_MAX_SAMPLES, &mMaxSamples);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment