Index: src/gpu/GrAddPathRenderers_default.cpp |
diff --git a/src/gpu/GrAddPathRenderers_default.cpp b/src/gpu/GrAddPathRenderers_default.cpp |
index 351b8eb1e4a7f09cf51be807e0c1904cf6873189..c60c7ce61723289b054101439ce643c2af790e8f 100644 |
--- a/src/gpu/GrAddPathRenderers_default.cpp |
+++ b/src/gpu/GrAddPathRenderers_default.cpp |
@@ -9,7 +9,7 @@ |
#include "GrStencilAndCoverPathRenderer.h" |
#include "GrAAHairLinePathRenderer.h" |
-#include "GrAAConvexPathRenderer.h" |
+#include "GrAALinearizingConvexPathRenderer.h" |
#include "GrAADistanceFieldPathRenderer.h" |
#include "GrContext.h" |
#include "GrDashLinePathRenderer.h" |
@@ -33,6 +33,6 @@ |
if (GrPathRenderer* pr = GrAAHairLinePathRenderer::Create()) { |
chain->addPathRenderer(pr)->unref(); |
} |
- chain->addPathRenderer(SkNEW(GrAAConvexPathRenderer))->unref(); |
+ chain->addPathRenderer(SkNEW(GrAALinearizingConvexPathRenderer))->unref(); |
chain->addPathRenderer(SkNEW_ARGS(GrAADistanceFieldPathRenderer, (ctx)))->unref(); |
} |