From 607955dafe8b04ace8cb7ffce3143136f71e85f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Miranda?= Date: Fri, 10 Feb 2017 10:35:37 -0200 Subject: [PATCH] Replace RNSVGBrushConverter with RNSVGPainter This modification was made in cfaca8b3cb166207357b7b945151762db81d3053, but was missing in a private method signature inside RNSVGPattern.m --- ios/Brushes/RNSVGPattern.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Brushes/RNSVGPattern.m b/ios/Brushes/RNSVGPattern.m index 2a209723..02983742 100644 --- a/ios/Brushes/RNSVGPattern.m +++ b/ios/Brushes/RNSVGPattern.m @@ -39,7 +39,7 @@ // Note: This could use applyFillColor with a pattern. This could be more efficient but // to do that, we need to calculate our own user space CTM. -- (void)paint:(CGContextRef)context opacity:(CGFloat)opacity brushConverter:(RNSVGBrushConverter *)brushConverter; +- (void)paint:(CGContextRef)context opacity:(CGFloat)opacity brushConverter:(RNSVGPainter *)brushConverter; { CGContextDrawTiledImage(context, _rect, _image); }