diff options
author | 2016-10-20 14:01:52 -0700 | |
---|---|---|
committer | 2016-10-20 14:01:52 -0700 | |
commit | c83ada98e2e60be75ae03e228c4d35eb45357add (patch) | |
tree | 2ea53eeaa9349e48a52304fc173b4697b6508dad | |
parent | 7c2114fc2f138f210aaed47059888658bb2b297a (diff) |
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
-rw-r--r-- | src/core/SkScan_AAAPath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkScan_AAAPath.cpp b/src/core/SkScan_AAAPath.cpp index 7634878528..e258a569dc 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; } |