mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 15:34:05 +02:00
excluding any intel gpu from deferred on mac for the next few days
This commit is contained in:
parent
b84a8ce668
commit
aff139f495
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue