aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkScan.cpp
diff options
context:
space:
mode:
authorGravatar Yuqian Li <liyuqian@google.com>2017-01-13 10:13:13 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-13 16:07:48 +0000
commit550148ba572acc75e73d3c7d600ea7fa43db55f2 (patch)
tree68814ff1d5d49683928208c2d25ca64ccc18f817 /src/core/SkScan.cpp
parent905a94ff39edae7b86d060b4a13aadc838769398 (diff)
The only difference is that we now also put the guard flag SK_SUPPORT_LEGACY_AAA in SkUserConfig.h. Previously, SkAnalyticEdge.cpp doesn't get that flag from SkScan.h and that caused many problems. BUG=skia: TBR=reed@google.com,caryclark@google.com Change-Id: I134bb76cebd6fffa712f438076668765321bba3b Reviewed-on: https://skia-review.googlesource.com/6992 Reviewed-by: Yuqian Li <liyuqian@google.com> Commit-Queue: Yuqian Li <liyuqian@google.com>
Diffstat (limited to 'src/core/SkScan.cpp')
-rw-r--r--src/core/SkScan.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/SkScan.cpp b/src/core/SkScan.cpp
index 5a02c61b44..c2f00f3a84 100644
--- a/src/core/SkScan.cpp
+++ b/src/core/SkScan.cpp
@@ -16,6 +16,8 @@
std::atomic<bool> gSkUseAnalyticAA{true};
#endif
+std::atomic<bool> gSkForceAnalyticAA{false};
+
static inline void blitrect(SkBlitter* blitter, const SkIRect& r) {
blitter->blitRect(r.fLeft, r.fTop, r.width(), r.height());
}