Commit 50919254 by Austin Eng Committed by Commit Bot

Only enable addAndTrueToLoopCondition feature on Mac Intel

The issue which reported the need for this workaround only found a problem on Mac. The failure doesn't happen on other the Linux OpenGL Intel driver, so it shouldn't be enabled there. Bug: chromium:1021900, chromium:644669 Change-Id: I65e7462828419aeb9182898f73977ee1c5e72ff3 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1904291Reviewed-by: 's avatarKenneth Russell <kbr@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Austin Eng <enga@chromium.org>
parent dc98ca69
...@@ -1472,7 +1472,7 @@ void InitializeFeatures(const FunctionsGL *functions, angle::FeaturesGL *feature ...@@ -1472,7 +1472,7 @@ void InitializeFeatures(const FunctionsGL *functions, angle::FeaturesGL *feature
ANGLE_FEATURE_CONDITION(features, emulateAbsIntFunction, isIntel); ANGLE_FEATURE_CONDITION(features, emulateAbsIntFunction, isIntel);
ANGLE_FEATURE_CONDITION(features, addAndTrueToLoopCondition, isIntel); ANGLE_FEATURE_CONDITION(features, addAndTrueToLoopCondition, IsApple() && isIntel);
ANGLE_FEATURE_CONDITION(features, emulateIsnanFloat, isIntel); ANGLE_FEATURE_CONDITION(features, emulateIsnanFloat, isIntel);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment