From 97236570d8572dff514809fa55dcd8fb96e5fd75 Mon Sep 17 00:00:00 2001 From: Sam Gateau Date: Thu, 13 Jun 2019 10:28:34 -0700 Subject: [PATCH] FIlter on the gpu model name for ththe 2 known cases --- libraries/platform/src/platform/Profiler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/platform/src/platform/Profiler.cpp b/libraries/platform/src/platform/Profiler.cpp index 0e8b9a65a8..bd8efb9097 100644 --- a/libraries/platform/src/platform/Profiler.cpp +++ b/libraries/platform/src/platform/Profiler.cpp @@ -145,10 +145,10 @@ bool Profiler::isRenderMethodDeferredCapable() { return false; } - // We know for fact that the INtel Iris is problematic... - if ((gpuModel.find("Intel Iris") != std::string::npos)) { - return false; - } + // We know for fact that one INtel Iris is problematic, not enough info yet for sure + // if ((gpuModel.find("Intel Iris ....") != std::string::npos)) { + // return false; + //} return true; #elif defined(Q_OS_ANDROID)