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

Unified Diff: gm/beziereffects.cpp

Issue 818233002: Remove coordchanges from drawstate (Closed) Base URL: https://skia.googlesource.com/skia.git@coord-change-off-paint
Patch Set: adding test to ignore Created 6 years 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 | « expectations/gm/ignored-tests.txt ('k') | src/gpu/GrAAConvexPathRenderer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/beziereffects.cpp
diff --git a/gm/beziereffects.cpp b/gm/beziereffects.cpp
index e7e63eaded163b2b964504411953accf2e09334d..b486404843163a6ff0d32be2dd3144d7e3f7ac0f 100644
--- a/gm/beziereffects.cpp
+++ b/gm/beziereffects.cpp
@@ -250,7 +250,8 @@ protected:
continue;
}
GrPrimitiveEdgeType et = (GrPrimitiveEdgeType)edgeType;
- gp.reset(GrConicEffect::Create(0xff000000, et, *tt.target()->caps()));
+ gp.reset(GrConicEffect::Create(0xff000000, et, *tt.target()->caps(),
+ SkMatrix::I()));
if (!gp) {
continue;
}
@@ -439,7 +440,8 @@ protected:
continue;
}
GrPrimitiveEdgeType et = (GrPrimitiveEdgeType)edgeType;
- gp.reset(GrQuadEffect::Create(0xff000000, et, *tt.target()->caps()));
+ gp.reset(GrQuadEffect::Create(0xff000000, et, *tt.target()->caps(),
+ SkMatrix::I()));
if (!gp) {
continue;
}
« no previous file with comments | « expectations/gm/ignored-tests.txt ('k') | src/gpu/GrAAConvexPathRenderer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698