We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca5119d commit 3d9ee40Copy full SHA for 3d9ee40
indra/newview/llfeaturemanager.cpp
@@ -655,8 +655,16 @@ void LLFeatureManager::applyBaseMasks()
655
if (gGLManager.mIsIntel)
656
{
657
maskFeatures("Intel");
658
+
659
+ static constexpr F32 TARGET_GL_VERSION =
660
+#if LL_DARWIN
661
+ 4.09f;
662
+#else
663
+ 4.59f;
664
+#endif
665
666
// check against 3.33 to avoid applying this fallback twice
- if (gGLManager.mGLVersion < 4.59f && gGLManager.mGLVersion > 3.33f)
667
+ if (gGLManager.mGLVersion < TARGET_GL_VERSION && gGLManager.mGLVersion > 3.33f)
668
669
// if we don't have OpenGL 4.6 on intel, set it to OpenGL 3.3
670
// we also want to trigger the GL3 fallbacks on these chipsets
0 commit comments