aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrCaps.h
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2018-03-29 12:34:41 -0600
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-03-29 19:05:46 +0000
commit03616574024a7f321e885e5ab6fc575746573109 (patch)
tree3978413113eee8a9baffc6f8b1e1851150c5bd19 /include/gpu/GrCaps.h
parent9329689045012aed43e973baf40d33185a2add2d (diff)
vulkan: Blacklist MSAA path renderer on Qualcomm drivers
Bug: skia:7758 Change-Id: I96b5c259352949d67f5e0263a7164cdce54b3269 Reviewed-on: https://skia-review.googlesource.com/117152 Reviewed-by: Derek Sollenberger <djsollen@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'include/gpu/GrCaps.h')
-rw-r--r--include/gpu/GrCaps.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h
index 02a51a092d..984e0ef573 100644
--- a/include/gpu/GrCaps.h
+++ b/include/gpu/GrCaps.h
@@ -73,6 +73,8 @@ public:
bool blacklistCoverageCounting() const { return fBlacklistCoverageCounting; }
+ bool blacklistMSAAPathRenderer() const { return fBlacklistMSAAPathRenderer; }
+
bool avoidStencilBuffers() const { return fAvoidStencilBuffers; }
/**
@@ -292,6 +294,7 @@ protected:
// Driver workaround
bool fBlacklistCoverageCounting : 1;
+ bool fBlacklistMSAAPathRenderer : 1;
bool fAvoidStencilBuffers : 1;
// ANGLE performance workaround