Skip to content
Snippets Groups Projects
Commit 1197da3c authored by andreykproductengine's avatar andreykproductengine
Browse files

MAINT-8974 Reduce default settings for intel GPUs in case of failed benchmark

parent ed17ca78
No related branches found
No related tags found
No related merge requests found
......@@ -461,6 +461,11 @@ bool LLFeatureManager::loadGPUClass()
{
mGPUClass = GPU_CLASS_4;
}
if (gGLManager.mIsIntel && mGPUClass > GPU_CLASS_1)
{
// Intels are generally weaker then other GPUs despite having advanced features
mGPUClass = (EGPUClass)(mGPUClass - 1);
}
#endif
}
else if (gGLManager.mGLVersion <= 2.f)
......
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