Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Unified Diff: src/gpu/batches/GrMSAAPathRenderer.cpp

Issue 2355833002: Stop closing filled paths in GrShape (Closed)
Patch Set: Fix MSAA path renderer to use closing iterator Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/GrShape.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/batches/GrMSAAPathRenderer.cpp
diff --git a/src/gpu/batches/GrMSAAPathRenderer.cpp b/src/gpu/batches/GrMSAAPathRenderer.cpp
index 19dd3663e5ab8cb7a22e86ff1d62da3cbb25c081..d01323535754419d8757fde16dfb0bd94d752a17 100644
--- a/src/gpu/batches/GrMSAAPathRenderer.cpp
+++ b/src/gpu/batches/GrMSAAPathRenderer.cpp
@@ -262,7 +262,7 @@ private:
bool first = true;
- SkPath::Iter iter(path, false);
+ SkPath::Iter iter(path, true);
SkPath::Verb verb;
SkPoint pts[4];
@@ -474,7 +474,7 @@ private:
SkPoint pts[4];
bool first = true;
- SkPath::Iter iter(path, false);
+ SkPath::Iter iter(path, true);
bool done = false;
while (!done) {
« no previous file with comments | « src/gpu/GrShape.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698