aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar cdalton <cdalton@nvidia.com>2015-06-15 10:52:11 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-15 10:52:11 -0700
commit07a8fc827b8665a8c2966d5a264ba4901bef9443 (patch)
tree890d87ad029eaa17b040ae144e2f27ffcb88baa6 /src
parentb1bbca80492dc71f4a2c026a78d00d6f084c7e47 (diff)
Blacklist ARM from advanced blend
Diffstat (limited to 'src')
-rw-r--r--src/gpu/gl/GrGLCaps.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp
index eacf6f6084..63e215f585 100644
--- a/src/gpu/gl/GrGLCaps.cpp
+++ b/src/gpu/gl/GrGLCaps.cpp
@@ -833,7 +833,8 @@ void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
// for now until its own blacklists can be updated.
if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
kIntel_GrGLDriver == ctxInfo.driver() ||
- kChromium_GrGLDriver == ctxInfo.driver()) {
+ kChromium_GrGLDriver == ctxInfo.driver() ||
+ kARM_GrGLVendor == ctxInfo.vendor()) {
return;
}