Index: src/gpu/GrResourceProvider.cpp |
diff --git a/src/gpu/GrResourceProvider.cpp b/src/gpu/GrResourceProvider.cpp |
index f57d7eb79652b4d57a0b690749110c4b95ab5780..9fa202af6c41175bf58a419739e69861ba49bf6d 100644 |
--- a/src/gpu/GrResourceProvider.cpp |
+++ b/src/gpu/GrResourceProvider.cpp |
@@ -70,24 +70,24 @@ const GrBuffer* GrResourceProvider::createQuadIndexBuffer() { |
return this->createInstancedIndexBuffer(kPattern, 6, kMaxQuads, 4, fQuadIndexBufferKey); |
} |
-GrPath* GrResourceProvider::createPath(const SkPath& path, const GrStrokeInfo& stroke) { |
+GrPath* GrResourceProvider::createPath(const SkPath& path, const GrStyle& style) { |
SkASSERT(this->gpu()->pathRendering()); |
- return this->gpu()->pathRendering()->createPath(path, stroke); |
+ return this->gpu()->pathRendering()->createPath(path, style); |
} |
GrPathRange* GrResourceProvider::createPathRange(GrPathRange::PathGenerator* gen, |
- const GrStrokeInfo& stroke) { |
+ const GrStyle& style) { |
SkASSERT(this->gpu()->pathRendering()); |
- return this->gpu()->pathRendering()->createPathRange(gen, stroke); |
+ return this->gpu()->pathRendering()->createPathRange(gen, style); |
} |
GrPathRange* GrResourceProvider::createGlyphs(const SkTypeface* tf, |
const SkScalerContextEffects& effects, |
const SkDescriptor* desc, |
- const GrStrokeInfo& stroke) { |
+ const GrStyle& style) { |
SkASSERT(this->gpu()->pathRendering()); |
- return this->gpu()->pathRendering()->createGlyphs(tf, effects, desc, stroke); |
+ return this->gpu()->pathRendering()->createGlyphs(tf, effects, desc, style); |
} |
GrBuffer* GrResourceProvider::createBuffer(size_t size, GrBufferType intendedType, |