From c83ada98e2e60be75ae03e228c4d35eb45357add Mon Sep 17 00:00:00 2001 From: liyuqian Date: Thu, 20 Oct 2016 14:01:52 -0700 Subject: [PATCH] Quickly fix the forgotten forceRLE BUG=skia: TBR=reed@google.com,caryclark@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2436593004 Review-Url: https://chromiumcodereview.appspot.com/2436593004 --- src/core/SkScan_AAAPath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/SkScan_AAAPath.cpp b/src/core/SkScan_AAAPath.cpp index 7634878..e258a56 100644 --- a/src/core/SkScan_AAAPath.cpp +++ b/src/core/SkScan_AAAPath.cpp @@ -1132,7 +1132,7 @@ void SkScan::aaa_fill_path(const SkPath& path, const SkIRect* clipRect, Additive if (path.isInverseFillType() || !path.isConvex()) { // fall back to supersampling AA - SkScan::AntiFillPath(path, clipRgn, blitter->getRealBlitter(true), false); + SkScan::AntiFillPath(path, clipRgn, blitter->getRealBlitter(true), forceRLE); return; } -- 2.7.4