mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
# Summary Fixed rendering issues on macOS and iOS after merging Mask and Filter changes together. ## Test Plan Example app
13 lines
324 B
Objective-C
13 lines
324 B
Objective-C
#import "RNSVGRenderable.h"
|
|
|
|
@interface RNSVGRenderUtils : NSObject
|
|
|
|
+ (CIContext *)sharedCIContext;
|
|
+ (CGFloat)getScreenScale;
|
|
+ (CGImage *)renderToImage:(RNSVGRenderable *)renderable
|
|
ctm:(CGAffineTransform)ctm
|
|
rect:(CGRect)rect
|
|
clip:(CGRect *)clip;
|
|
|
|
@end
|