excluding any intel gpu from deferred on mac for the next few days

This commit is contained in:
Sam Gateau 2019-06-14 12:49:11 -07:00
parent b84a8ce668
commit aff139f495

View file

@ -149,6 +149,11 @@ bool Profiler::isRenderMethodDeferredCapable() {
if ((computerModel.find("MacBookPro11,1") != std::string::npos) && (gpuModel.find("Intel Iris") != std::string::npos)) {
return false;
}
// TO avoid issues for the next few days, we are excluding all of intel chipset...
if ((gpuModel.find("Intel ") != std::string::npos)) {
return false;
}
return true;
#elif defined(Q_OS_ANDROID)