Skip to content
Snippets Groups Projects
Commit acd0a5ed authored by Graham Linden's avatar Graham Linden
Browse files

Tweak conversion from tested bandwidth to get better reads on low-end systems

parent d8040ad4
No related branches found
No related tags found
No related merge requests found
......@@ -452,15 +452,23 @@ bool LLFeatureManager::loadGPUClass()
}
#endif
}
else if (gGLManager.mGLVersion < 2.f)
{
mGPUClass = GPU_CLASS_0;
}
else if (gGLManager.mGLVersion < 3.f)
{
mGPUClass = GPU_CLASS_1;
}
else if (gbps < 5.f)
{
mGPUClass = GPU_CLASS_0;
}
else if (gbps < 10.f)
else if (gbps < 16.f)
{
mGPUClass = GPU_CLASS_1;
}
else if (gbps < 20.f)
else if (gbps < 32.f)
{
mGPUClass = GPU_CLASS_2;
}
......
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