aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ProxyTest.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2016-05-10 10:23:30 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-05-10 10:23:31 -0700
commitd0e36a92de398843cafc3aebef39c863b29c23de (patch)
tree3e6325bdf34c3e24fd50dc2c10edee613bde6b3d /tests/ProxyTest.cpp
parent6663acff010ce752e4bf778da81fa97448c9db31 (diff)
Fix AllocedProxyTest on Mesa
Mesa is handing us a context that supports MSAA but has 0 as the max number of color samples GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1967503004 Review-Url: https://codereview.chromium.org/1967503004
Diffstat (limited to 'tests/ProxyTest.cpp')
-rw-r--r--tests/ProxyTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ProxyTest.cpp b/tests/ProxyTest.cpp
index 68fc1f142e..e1e5aeb2cf 100644
--- a/tests/ProxyTest.cpp
+++ b/tests/ProxyTest.cpp
@@ -85,7 +85,8 @@ DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(AllocedProxyTest, reporter, ctxInfo) {
for (auto budgeted : { SkBudgeted::kYes, SkBudgeted::kNo }) {
for (auto numSamples : { 0, 4}) {
bool renderable = ctxInfo.fGrContext->caps()->isConfigRenderable(
- config, numSamples > 0);
+ config, numSamples > 0) &&
+ numSamples <= ctxInfo.fGrContext->caps()->maxColorSampleCount();
GrSurfaceDesc desc;
desc.fOrigin = origin;