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