diff options
author | Yuqian Li <liyuqian@google.com> | 2018-04-11 14:58:44 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-04-12 14:23:57 +0000 |
commit | 74e5937c188fccf57ba88208783ba39fb1aa6881 (patch) | |
tree | 712bef641ebd12e90ae2b74c2e5fa41d52202ad4 /src/core | |
parent | 2a510c95d0ad547fe454d4397faf34e04b8c72d2 (diff) |
Remove obsolete comment
Bug: skia:
Change-Id: I4a290e643275c4e41e7f42496ffc14a9a1abca82
TBR: reed@google.com, mtklein@google.com, herb@google.com
Reviewed-on: https://skia-review.googlesource.com/120560
Reviewed-by: Yuqian Li <liyuqian@google.com>
Commit-Queue: Yuqian Li <liyuqian@google.com>
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/SkDraw.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/SkDraw.cpp b/src/core/SkDraw.cpp index 62b84d804c..a06dacff19 100644 --- a/src/core/SkDraw.cpp +++ b/src/core/SkDraw.cpp @@ -1020,8 +1020,6 @@ void SkDraw::drawDevPath(const SkPath& devPath, const SkPaint& paint, bool drawC if (iData == nullptr) { proc(devPath, *fRC, blitter); // proceed directly if we're not in threaded init-once } else if (!doFill || !paint.isAntiAlias()) { - // TODO remove true in the if statement above so we can proceed to DAA. - // We're in threaded init-once but we can't use DAA. Hence we'll stop here and hand all the // remaining work to draw phase. This is a simple example of how to add init-once to // existing drawXXX commands: simply send in SkInitOnceData, do as much init work as |