Skip to content
Snippets Groups Projects
Commit fb73cf01 authored by Graham Madarasz (Graham)'s avatar Graham Madarasz (Graham)
Browse files

NORSPEC-144 make code to nerf use of FBOs on old windows drivers not affect Mac too

parent 90c2be46
No related branches found
No related tags found
No related merge requests found
...@@ -760,12 +760,13 @@ bool LLGLManager::initGL() ...@@ -760,12 +760,13 @@ bool LLGLManager::initGL()
{ //using multisample textures on ATI results in black screen for some reason { //using multisample textures on ATI results in black screen for some reason
mHasTextureMultisample = FALSE; mHasTextureMultisample = FALSE;
} }
#endif
if (mIsIntel && mGLVersion <= 3.f) if (mIsIntel && mGLVersion <= 3.f)
{ //never try to use framebuffer objects on older intel drivers (crashy) { //never try to use framebuffer objects on older intel drivers (crashy)
mHasFramebufferObject = FALSE; mHasFramebufferObject = FALSE;
} }
#endif
if (mHasFramebufferObject) if (mHasFramebufferObject)
{ {
......
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