Index: src/gpu/batches/GrTessellatingPathRenderer.cpp |
diff --git a/src/gpu/batches/GrTessellatingPathRenderer.cpp b/src/gpu/batches/GrTessellatingPathRenderer.cpp |
index 3ef9a5184a627d4be319dd1f771cd0649eb773e6..6dce9f73c839d63432e59fe310ab7c9e77b23141 100644 |
--- a/src/gpu/batches/GrTessellatingPathRenderer.cpp |
+++ b/src/gpu/batches/GrTessellatingPathRenderer.cpp |
@@ -14,6 +14,7 @@ |
#include "GrDefaultGeoProcFactory.h" |
#include "GrMesh.h" |
#include "GrPathUtils.h" |
+#include "GrPipelineBuilder.h" |
#include "GrResourceCache.h" |
#include "GrResourceProvider.h" |
#include "GrTessellator.h" |
@@ -271,7 +272,10 @@ |
*args.fShape, |
*args.fViewMatrix, clipBounds)); |
- args.fDrawContext->drawBatch(*args.fPaint, *args.fClip, *args.fUserStencilSettings, batch); |
+ GrPipelineBuilder pipelineBuilder(*args.fPaint, args.fDrawContext->mustUseHWAA(*args.fPaint)); |
+ pipelineBuilder.setUserStencil(args.fUserStencilSettings); |
+ |
+ args.fDrawContext->drawBatch(pipelineBuilder, *args.fClip, batch); |
return true; |
} |