From 2b255535efbce4634cdd2c671f597774e1783372 Mon Sep 17 00:00:00 2001 From: Dave Parks Date: Tue, 12 Nov 2024 17:26:38 -0600 Subject: 2590 mac intel and radeon pro 5300m horrible fps 2 (#3030) * OpenGL 3.3 compatibility pass. Fix for FBO driven downscaling corrupting textures. * Increase maximum texture bias, immediately scale down when textures are loaded higher resolution than desired * #2590 Fix for some frame stalls on Intel Macs --- indra/newview/llreflectionmapmanager.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'indra/newview/llreflectionmapmanager.cpp') diff --git a/indra/newview/llreflectionmapmanager.cpp b/indra/newview/llreflectionmapmanager.cpp index f083747bfe..dd13a4e8ea 100644 --- a/indra/newview/llreflectionmapmanager.cpp +++ b/indra/newview/llreflectionmapmanager.cpp @@ -463,6 +463,11 @@ void LLReflectionMapManager::update() LLReflectionMap* LLReflectionMapManager::addProbe(LLSpatialGroup* group) { + if (gGLManager.mGLVersion < 4.05f) + { + return nullptr; + } + LLReflectionMap* probe = new LLReflectionMap(); probe->mGroup = group; -- cgit v1.2.3