Index: tests/TessellatingPathRendererTests.cpp |
diff --git a/tests/TessellatingPathRendererTests.cpp b/tests/TessellatingPathRendererTests.cpp |
index 0635e7f354535f855997653671c3477610cf8b28..f00519c0eccd69cc7494639d475c566f6b1cf024 100644 |
--- a/tests/TessellatingPathRendererTests.cpp |
+++ b/tests/TessellatingPathRendererTests.cpp |
@@ -5,8 +5,11 @@ |
* found in the LICENSE file. |
*/ |
+#include "SkPreConfig.h" |
+ |
#if SK_SUPPORT_GPU |
#include "GrContextFactory.h" |
+#include "GrStrokeInfo.h" |
#include "GrTessellatingPathRenderer.h" |
#include "GrTest.h" |
#include "Test.h" |
@@ -234,7 +237,7 @@ static void test_path(GrDrawTarget* dt, GrRenderTarget* rt, const SkPath& path) |
GrTessellatingPathRenderer tess; |
GrPipelineBuilder pipelineBuilder; |
pipelineBuilder.setRenderTarget(rt); |
- SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle); |
+ GrStrokeInfo stroke(SkStrokeRec::kFill_InitStyle); |
tess.drawPath(dt, &pipelineBuilder, SK_ColorWHITE, SkMatrix::I(), path, stroke, false); |
} |