@shopify/react-native-skia 1.12.0 → 1.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (233) hide show
  1. package/android/cpp/jni/JniPlatformContext.cpp +1 -0
  2. package/apple/MetalContext.h +129 -0
  3. package/apple/MetalContext.mm +34 -0
  4. package/apple/MetalWindowContext.h +39 -0
  5. package/apple/MetalWindowContext.mm +64 -0
  6. package/apple/RNSkApplePlatformContext.h +79 -0
  7. package/apple/RNSkApplePlatformContext.mm +303 -0
  8. package/apple/RNSkAppleVideo.h +51 -0
  9. package/apple/RNSkAppleVideo.mm +137 -0
  10. package/apple/RNSkAppleView.h +37 -0
  11. package/apple/RNSkAppleView.mm +35 -0
  12. package/apple/RNSkMetalCanvasProvider.h +38 -0
  13. package/apple/RNSkMetalCanvasProvider.mm +108 -0
  14. package/apple/RNSkiaModule.h +20 -0
  15. package/apple/RNSkiaModule.mm +55 -0
  16. package/apple/SkiaCVPixelBufferUtils.h +119 -0
  17. package/apple/SkiaCVPixelBufferUtils.mm +344 -0
  18. package/apple/SkiaManager.h +25 -0
  19. package/apple/SkiaManager.mm +62 -0
  20. package/apple/SkiaPictureView.h +7 -0
  21. package/apple/SkiaPictureView.mm +66 -0
  22. package/apple/SkiaPictureViewManager.h +8 -0
  23. package/apple/SkiaPictureViewManager.mm +55 -0
  24. package/apple/SkiaUIView.h +45 -0
  25. package/apple/SkiaUIView.mm +172 -0
  26. package/apple/ViewScreenshotService.h +25 -0
  27. package/apple/ViewScreenshotService.mm +89 -0
  28. package/cpp/api/JsiSkContourMeasure.h +1 -1
  29. package/cpp/api/JsiSkHostObjects.h +21 -10
  30. package/cpp/api/JsiSkParagraph.h +17 -27
  31. package/cpp/api/JsiSkPathEffect.h +1 -1
  32. package/cpp/api/JsiSkPictureFactory.h +1 -1
  33. package/cpp/api/recorder/Drawings.h +4 -3
  34. package/cpp/skia/include/codec/SkCodec.h +7 -2
  35. package/cpp/skia/include/config/SkUserConfig.h +11 -0
  36. package/cpp/skia/include/core/SkCanvas.h +11 -7
  37. package/cpp/skia/include/core/SkColor.h +10 -0
  38. package/cpp/skia/include/core/SkColorSpace.h +184 -2
  39. package/cpp/skia/include/core/SkColorType.h +114 -32
  40. package/cpp/skia/include/core/SkFontScanner.h +5 -8
  41. package/cpp/skia/include/core/SkFontStyle.h +1 -1
  42. package/cpp/skia/include/core/SkMaskFilter.h +0 -8
  43. package/cpp/skia/include/core/SkMilestone.h +1 -1
  44. package/cpp/skia/include/core/SkPath.h +1 -1
  45. package/cpp/skia/include/core/SkRRect.h +3 -1
  46. package/cpp/skia/include/core/SkShader.h +3 -3
  47. package/cpp/skia/include/core/SkString.h +8 -8
  48. package/cpp/skia/include/core/SkSurface.h +14 -0
  49. package/cpp/skia/include/core/SkTypeface.h +24 -7
  50. package/cpp/skia/include/effects/SkGradientShader.h +6 -1
  51. package/cpp/skia/include/effects/SkRuntimeEffect.h +1 -0
  52. package/cpp/skia/include/encode/SkPngEncoder.h +14 -0
  53. package/cpp/skia/include/gpu/GpuTypes.h +9 -0
  54. package/cpp/skia/include/gpu/ganesh/GrContextOptions.h +135 -133
  55. package/cpp/skia/include/gpu/ganesh/GrDirectContext.h +5 -0
  56. package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h +3 -3
  57. package/cpp/skia/include/gpu/ganesh/GrTypes.h +14 -9
  58. package/cpp/skia/include/gpu/graphite/Context.h +25 -2
  59. package/cpp/skia/include/gpu/graphite/ContextOptions.h +23 -5
  60. package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +20 -1
  61. package/cpp/skia/include/gpu/graphite/Image.h +1 -0
  62. package/cpp/skia/include/gpu/graphite/LogPriority.h +36 -0
  63. package/cpp/skia/include/gpu/graphite/PrecompileContext.h +52 -0
  64. package/cpp/skia/include/gpu/graphite/Recorder.h +6 -0
  65. package/cpp/skia/include/gpu/graphite/Recording.h +3 -1
  66. package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +4 -36
  67. package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypesUtils.h +48 -0
  68. package/cpp/skia/include/gpu/graphite/precompile/Precompile.h +3 -2
  69. package/cpp/skia/include/pathops/SkPathOps.h +9 -1
  70. package/cpp/skia/include/ports/SkFontMgr_FontConfigInterface.h +3 -0
  71. package/cpp/skia/include/private/SkPathRef.h +15 -21
  72. package/cpp/skia/include/private/base/SkAttributes.h +16 -10
  73. package/cpp/skia/include/private/base/SkMutex.h +8 -0
  74. package/cpp/skia/include/private/base/SkTArray.h +1 -1
  75. package/cpp/skia/include/private/base/SkTDArray.h +1 -1
  76. package/cpp/skia/include/private/base/SkTemplates.h +24 -11
  77. package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +1 -1
  78. package/cpp/skia/include/sksl/SkSLDebugTrace.h +0 -3
  79. package/cpp/skia/modules/skcms/src/Transform_inl.h +20 -20
  80. package/cpp/skia/modules/skcms/src/skcms_Transform.h +4 -3
  81. package/cpp/skia/modules/skcms/src/skcms_public.h +19 -15
  82. package/cpp/skia/modules/skresources/include/SkResources.h +3 -1
  83. package/cpp/skia/modules/svg/include/SkSVGCircle.h +1 -1
  84. package/cpp/skia/modules/svg/include/SkSVGContainer.h +1 -1
  85. package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +1 -1
  86. package/cpp/skia/modules/svg/include/SkSVGImage.h +2 -2
  87. package/cpp/skia/modules/svg/include/SkSVGPath.h +1 -1
  88. package/cpp/skia/modules/svg/include/SkSVGPoly.h +1 -1
  89. package/cpp/skia/modules/svg/include/SkSVGRect.h +1 -1
  90. package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +2 -0
  91. package/cpp/skia/modules/svg/include/SkSVGShape.h +1 -0
  92. package/cpp/skia/modules/svg/include/SkSVGText.h +1 -1
  93. package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +4 -0
  94. package/cpp/skia/modules/svg/include/SkSVGUse.h +1 -1
  95. package/cpp/skia/src/core/SkLRUCache.h +19 -13
  96. package/cpp/skia/src/core/SkTHash.h +50 -4
  97. package/cpp/skia/src/gpu/ganesh/gl/GrGLDefines.h +1 -0
  98. package/lib/commonjs/external/reanimated/useAnimatedImageValue.js +4 -3
  99. package/lib/commonjs/external/reanimated/useAnimatedImageValue.js.map +1 -1
  100. package/lib/commonjs/mock/index.js +1 -2
  101. package/lib/commonjs/mock/index.js.map +1 -1
  102. package/lib/commonjs/skia/web/Host.d.ts +4 -6
  103. package/lib/commonjs/skia/web/Host.js +23 -10
  104. package/lib/commonjs/skia/web/Host.js.map +1 -1
  105. package/lib/commonjs/skia/web/JsiSkCanvas.js +15 -15
  106. package/lib/commonjs/skia/web/JsiSkCanvas.js.map +1 -1
  107. package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js +1 -1
  108. package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js.map +1 -1
  109. package/lib/commonjs/skia/web/JsiSkFont.js +3 -3
  110. package/lib/commonjs/skia/web/JsiSkFont.js.map +1 -1
  111. package/lib/commonjs/skia/web/JsiSkFontMgr.js +1 -1
  112. package/lib/commonjs/skia/web/JsiSkFontMgr.js.map +1 -1
  113. package/lib/commonjs/skia/web/JsiSkImage.js +6 -6
  114. package/lib/commonjs/skia/web/JsiSkImage.js.map +1 -1
  115. package/lib/commonjs/skia/web/JsiSkImageFactory.js +3 -3
  116. package/lib/commonjs/skia/web/JsiSkImageFactory.js.map +1 -1
  117. package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js +9 -9
  118. package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js.map +1 -1
  119. package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js +1 -1
  120. package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js.map +1 -1
  121. package/lib/commonjs/skia/web/JsiSkPaint.js +3 -3
  122. package/lib/commonjs/skia/web/JsiSkPaint.js.map +1 -1
  123. package/lib/commonjs/skia/web/JsiSkPath.js +4 -4
  124. package/lib/commonjs/skia/web/JsiSkPath.js.map +1 -1
  125. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js +3 -3
  126. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js.map +1 -1
  127. package/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
  128. package/lib/commonjs/skia/web/JsiSkPathFactory.js +2 -2
  129. package/lib/commonjs/skia/web/JsiSkPathFactory.js.map +1 -1
  130. package/lib/commonjs/skia/web/JsiSkPicture.js +1 -1
  131. package/lib/commonjs/skia/web/JsiSkPicture.js.map +1 -1
  132. package/lib/commonjs/skia/web/JsiSkShaderFactory.js +5 -5
  133. package/lib/commonjs/skia/web/JsiSkShaderFactory.js.map +1 -1
  134. package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.js +1 -1
  135. package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
  136. package/lib/commonjs/skia/web/JsiSkVerticesFactory.js +1 -1
  137. package/lib/commonjs/skia/web/JsiSkVerticesFactory.js.map +1 -1
  138. package/lib/commonjs/skia/web/JsiSkia.js +4 -3
  139. package/lib/commonjs/skia/web/JsiSkia.js.map +1 -1
  140. package/lib/commonjs/skia/web/JsiVideo.js +2 -1
  141. package/lib/commonjs/skia/web/JsiVideo.js.map +1 -1
  142. package/lib/module/external/reanimated/useAnimatedImageValue.js +4 -3
  143. package/lib/module/external/reanimated/useAnimatedImageValue.js.map +1 -1
  144. package/lib/module/mock/index.js +1 -2
  145. package/lib/module/mock/index.js.map +1 -1
  146. package/lib/module/skia/web/Host.d.ts +4 -6
  147. package/lib/module/skia/web/Host.js +21 -8
  148. package/lib/module/skia/web/Host.js.map +1 -1
  149. package/lib/module/skia/web/JsiSkCanvas.js +15 -15
  150. package/lib/module/skia/web/JsiSkCanvas.js.map +1 -1
  151. package/lib/module/skia/web/JsiSkColorFilterFactory.js +1 -1
  152. package/lib/module/skia/web/JsiSkColorFilterFactory.js.map +1 -1
  153. package/lib/module/skia/web/JsiSkFont.js +4 -4
  154. package/lib/module/skia/web/JsiSkFont.js.map +1 -1
  155. package/lib/module/skia/web/JsiSkFontMgr.js +2 -2
  156. package/lib/module/skia/web/JsiSkFontMgr.js.map +1 -1
  157. package/lib/module/skia/web/JsiSkImage.js +6 -6
  158. package/lib/module/skia/web/JsiSkImage.js.map +1 -1
  159. package/lib/module/skia/web/JsiSkImageFactory.js +4 -4
  160. package/lib/module/skia/web/JsiSkImageFactory.js.map +1 -1
  161. package/lib/module/skia/web/JsiSkImageFilterFactory.js +10 -10
  162. package/lib/module/skia/web/JsiSkImageFilterFactory.js.map +1 -1
  163. package/lib/module/skia/web/JsiSkMaskFilterFactory.js +1 -1
  164. package/lib/module/skia/web/JsiSkMaskFilterFactory.js.map +1 -1
  165. package/lib/module/skia/web/JsiSkPaint.js +3 -3
  166. package/lib/module/skia/web/JsiSkPaint.js.map +1 -1
  167. package/lib/module/skia/web/JsiSkPath.js +4 -4
  168. package/lib/module/skia/web/JsiSkPath.js.map +1 -1
  169. package/lib/module/skia/web/JsiSkPathEffectFactory.js +4 -4
  170. package/lib/module/skia/web/JsiSkPathEffectFactory.js.map +1 -1
  171. package/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
  172. package/lib/module/skia/web/JsiSkPathFactory.js +3 -3
  173. package/lib/module/skia/web/JsiSkPathFactory.js.map +1 -1
  174. package/lib/module/skia/web/JsiSkPicture.js +1 -1
  175. package/lib/module/skia/web/JsiSkPicture.js.map +1 -1
  176. package/lib/module/skia/web/JsiSkShaderFactory.js +5 -5
  177. package/lib/module/skia/web/JsiSkShaderFactory.js.map +1 -1
  178. package/lib/module/skia/web/JsiSkTypefaceFontProvider.js +2 -2
  179. package/lib/module/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
  180. package/lib/module/skia/web/JsiSkVerticesFactory.js +1 -1
  181. package/lib/module/skia/web/JsiSkVerticesFactory.js.map +1 -1
  182. package/lib/module/skia/web/JsiSkia.js +4 -3
  183. package/lib/module/skia/web/JsiSkia.js.map +1 -1
  184. package/lib/module/skia/web/JsiVideo.js +2 -1
  185. package/lib/module/skia/web/JsiVideo.js.map +1 -1
  186. package/lib/typescript/lib/commonjs/mock/index.d.ts +1 -1
  187. package/lib/typescript/lib/commonjs/skia/web/Host.d.ts +3 -5
  188. package/lib/typescript/lib/commonjs/skia/web/JsiSkFont.d.ts +1 -1
  189. package/lib/typescript/lib/commonjs/skia/web/JsiSkFontMgr.d.ts +1 -1
  190. package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFactory.d.ts +1 -1
  191. package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
  192. package/lib/typescript/lib/commonjs/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
  193. package/lib/typescript/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
  194. package/lib/typescript/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
  195. package/lib/typescript/lib/commonjs/skia/web/JsiSkia.d.ts +3 -3
  196. package/lib/typescript/lib/commonjs/skia/web/JsiVideo.d.ts +1 -1
  197. package/lib/typescript/lib/module/mock/index.d.ts +1 -1
  198. package/lib/typescript/lib/module/skia/Skia.web.d.ts +3 -3
  199. package/lib/typescript/lib/module/skia/web/Host.d.ts +3 -5
  200. package/lib/typescript/lib/module/skia/web/JsiSkFont.d.ts +1 -1
  201. package/lib/typescript/lib/module/skia/web/JsiSkFontMgr.d.ts +1 -1
  202. package/lib/typescript/lib/module/skia/web/JsiSkImageFactory.d.ts +1 -1
  203. package/lib/typescript/lib/module/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
  204. package/lib/typescript/lib/module/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
  205. package/lib/typescript/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
  206. package/lib/typescript/lib/module/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
  207. package/lib/typescript/lib/module/skia/web/JsiSkia.d.ts +3 -3
  208. package/lib/typescript/lib/module/skia/web/JsiVideo.d.ts +1 -1
  209. package/lib/typescript/src/skia/web/Host.d.ts +4 -6
  210. package/lib/typescript/src/skia/web/JsiSkPathFactory.d.ts +1 -1
  211. package/package.json +2 -2
  212. package/src/external/reanimated/useAnimatedImageValue.ts +4 -3
  213. package/src/mock/index.ts +1 -2
  214. package/src/skia/__tests__/Enums.spec.ts +34 -0
  215. package/src/skia/web/Host.ts +29 -11
  216. package/src/skia/web/JsiSkCanvas.ts +17 -17
  217. package/src/skia/web/JsiSkColorFilterFactory.ts +1 -1
  218. package/src/skia/web/JsiSkFont.ts +5 -5
  219. package/src/skia/web/JsiSkFontMgr.ts +3 -3
  220. package/src/skia/web/JsiSkImage.ts +14 -10
  221. package/src/skia/web/JsiSkImageFactory.ts +5 -5
  222. package/src/skia/web/JsiSkImageFilterFactory.ts +12 -22
  223. package/src/skia/web/JsiSkMaskFilterFactory.ts +1 -1
  224. package/src/skia/web/JsiSkPaint.ts +3 -3
  225. package/src/skia/web/JsiSkPath.ts +4 -4
  226. package/src/skia/web/JsiSkPathEffectFactory.ts +6 -6
  227. package/src/skia/web/JsiSkPathFactory.ts +4 -9
  228. package/src/skia/web/JsiSkPicture.ts +3 -3
  229. package/src/skia/web/JsiSkShaderFactory.ts +5 -5
  230. package/src/skia/web/JsiSkTypefaceFontProvider.ts +3 -3
  231. package/src/skia/web/JsiSkVerticesFactory.ts +1 -1
  232. package/src/skia/web/JsiSkia.ts +7 -4
  233. package/src/skia/web/JsiVideo.ts +2 -1
@@ -0,0 +1,172 @@
1
+ #import <React/RCTBridge.h>
2
+
3
+ #import "RNSkiaModule.h"
4
+ #import "SkiaUIView.h"
5
+
6
+ #include <utility>
7
+ #include <vector>
8
+
9
+ #import "RNSkManager.h"
10
+
11
+ @implementation SkiaUIView {
12
+ std::shared_ptr<RNSkBaseAppleView> _impl;
13
+ RNSkia::RNSkManager *_manager;
14
+ std::function<std::shared_ptr<RNSkBaseAppleView>(
15
+ std::shared_ptr<RNSkia::RNSkPlatformContext>)>
16
+ _factory;
17
+ bool _debugMode;
18
+ bool _opaque;
19
+ size_t _nativeId;
20
+ }
21
+
22
+ #pragma mark Initialization and destruction
23
+
24
+ - (instancetype)initWithManager:(RNSkia::RNSkManager *)manager
25
+ factory:
26
+ (std::function<std::shared_ptr<RNSkBaseAppleView>(
27
+ std::shared_ptr<RNSkia::RNSkPlatformContext>)>)
28
+ factory {
29
+ self = [super init];
30
+ if (self) {
31
+ [self initCommon:manager factory:factory];
32
+ }
33
+ // Listen to notifications about module invalidation
34
+ [[NSNotificationCenter defaultCenter]
35
+ addObserver:self
36
+ selector:@selector(willInvalidateModules)
37
+ name:RCTBridgeWillInvalidateModulesNotification
38
+ object:nil];
39
+ return self;
40
+ }
41
+
42
+ - (void)initCommon:(RNSkia::RNSkManager *)manager
43
+ factory:(std::function<std::shared_ptr<RNSkBaseAppleView>(
44
+ std::shared_ptr<RNSkia::RNSkPlatformContext>)>)factory {
45
+ _manager = manager;
46
+ _nativeId = 0;
47
+ _debugMode = false;
48
+ _factory = factory;
49
+ }
50
+
51
+ - (void)willInvalidateModules {
52
+ _impl = nullptr;
53
+ _manager = nullptr;
54
+ }
55
+
56
+ #pragma mark Lifecycle
57
+
58
+ #if !TARGET_OS_OSX
59
+ - (void)willMoveToSuperview:(UIView *)newSuperView {
60
+ #else
61
+ - (void)viewWillMoveToSuperview:(NSView *)newSuperView {
62
+ #endif // !TARGET_OS_OSX
63
+ if (newSuperView != nullptr) {
64
+ // Create implementation view when the parent view is set
65
+ if (_impl == nullptr && _manager != nullptr) {
66
+ _impl = _factory(_manager->getPlatformContext());
67
+ if (_impl == nullptr) {
68
+ throw std::runtime_error(
69
+ "Expected Skia view implementation, got nullptr.");
70
+ }
71
+ [self.layer addSublayer:_impl->getLayer()];
72
+ if (_nativeId != 0) {
73
+ _manager->setSkiaView(_nativeId, _impl->getDrawView());
74
+ }
75
+ _impl->getDrawView()->setShowDebugOverlays(_debugMode);
76
+ }
77
+ }
78
+ }
79
+
80
+ - (void)removeFromSuperview {
81
+ // Cleanup when removed from view hierarchy
82
+ if (_impl != nullptr) {
83
+ [_impl->getLayer() removeFromSuperlayer];
84
+
85
+ if (_nativeId != 0 && _manager != nullptr) {
86
+ _manager->setSkiaView(_nativeId, nullptr);
87
+ }
88
+
89
+ _impl = nullptr;
90
+ }
91
+
92
+ [super removeFromSuperview];
93
+ }
94
+
95
+ - (void)dealloc {
96
+ [self unregisterView];
97
+ [[NSNotificationCenter defaultCenter]
98
+ removeObserver:self
99
+ name:RCTBridgeWillInvalidateModulesNotification
100
+ object:nil];
101
+ }
102
+
103
+ #ifdef RCT_NEW_ARCH_ENABLED
104
+ - (void)prepareForRecycle {
105
+ [super prepareForRecycle];
106
+ [self unregisterView];
107
+ }
108
+
109
+ - (void)finalizeUpdates:(RNComponentViewUpdateMask)updateMask {
110
+ [super finalizeUpdates:updateMask];
111
+ if (updateMask == RNComponentViewUpdateMaskAll) {
112
+ // this flag is only set when the view is inserted and we want to set the
113
+ // manager here since the view could be recycled or the app could be
114
+ // refreshed and we would have a stale manager then
115
+ _manager = [SkiaManager latestActiveSkManager].get();
116
+ }
117
+ }
118
+ #endif // RCT_NEW_ARCH_ENABLED
119
+
120
+ - (void)unregisterView {
121
+ if (_manager != nullptr && _nativeId != 0) {
122
+ _manager->unregisterSkiaView(_nativeId);
123
+ }
124
+ }
125
+
126
+ #pragma Render
127
+
128
+ - (void)drawRect:(CGRect)rect {
129
+ // We override drawRect to ensure we to direct rendering when the
130
+ // underlying OS view needs to render:
131
+ if (_impl != nullptr) {
132
+ _impl->getDrawView()->redraw();
133
+ }
134
+ }
135
+
136
+ #pragma mark Layout
137
+
138
+ - (void)layoutSubviews {
139
+ [super layoutSubviews];
140
+ if (_impl != nullptr) {
141
+ _impl->setSize(self.bounds.size.width, self.bounds.size.height);
142
+ }
143
+ }
144
+
145
+ #pragma mark Properties
146
+
147
+ - (void)setDebugMode:(bool)debugMode {
148
+ _debugMode = debugMode;
149
+ if (_impl != nullptr) {
150
+ _impl->getDrawView()->setShowDebugOverlays(debugMode);
151
+ }
152
+ }
153
+
154
+ - (void)setOpaque:(bool)opaque {
155
+ _opaque = opaque;
156
+ }
157
+
158
+ - (void)setNativeId:(size_t)nativeId {
159
+ _nativeId = nativeId;
160
+
161
+ if (_impl != nullptr) {
162
+ _manager->registerSkiaView(nativeId, _impl->getDrawView());
163
+ }
164
+ }
165
+
166
+ #pragma mark External API
167
+
168
+ - (std::shared_ptr<RNSkBaseAppleView>)impl {
169
+ return _impl;
170
+ }
171
+
172
+ @end
@@ -0,0 +1,25 @@
1
+ #pragma once
2
+
3
+ #import <CoreFoundation/CoreFoundation.h>
4
+ #if !TARGET_OS_OSX
5
+ #import <UIKit/UIKit.h>
6
+ #else
7
+ #import <Appkit/Appkit.h>
8
+ #endif // !TARGET_OS_OSX
9
+
10
+ #import <React/RCTUIManager.h>
11
+
12
+ #pragma clang diagnostic push
13
+ #pragma clang diagnostic ignored "-Wdocumentation"
14
+
15
+ #include "include/core/SkImage.h"
16
+
17
+ #pragma clang diagnostic pop
18
+
19
+ @interface ViewScreenshotService : NSObject {
20
+ }
21
+
22
+ - (instancetype)initWithUiManager:(RCTUIManager *)uiManager;
23
+ - (sk_sp<SkImage>)screenshotOfViewWithTag:(NSNumber *)viewTag;
24
+
25
+ @end
@@ -0,0 +1,89 @@
1
+ #import "ViewScreenshotService.h"
2
+ #import <QuartzCore/QuartzCore.h>
3
+
4
+ #pragma clang diagnostic push
5
+ #pragma clang diagnostic ignored "-Wdocumentation"
6
+
7
+ #include "include/core/SkData.h"
8
+
9
+ #pragma clang diagnostic pop
10
+
11
+ @implementation ViewScreenshotService {
12
+ RCTUIManager *_uiManager;
13
+ }
14
+
15
+ - (instancetype)initWithUiManager:(RCTUIManager *)uiManager {
16
+ if (self = [super init]) {
17
+ _uiManager = uiManager;
18
+ }
19
+ return self;
20
+ }
21
+
22
+ - (sk_sp<SkImage>)screenshotOfViewWithTag:(NSNumber *)viewTag {
23
+ #if !TARGET_OS_OSX
24
+ // Find view corresponding to the tag
25
+ auto view = [_uiManager viewForReactTag:viewTag];
26
+ if (view == NULL) {
27
+ RCTFatal(RCTErrorWithMessage(@"Could not find view with tag"));
28
+ return nullptr;
29
+ }
30
+
31
+ // Get size
32
+ CGSize size = view.frame.size;
33
+
34
+ // Setup context
35
+ UIGraphicsImageRendererFormat *format =
36
+ [UIGraphicsImageRendererFormat defaultFormat];
37
+ format.opaque = NO;
38
+ format.preferredRange = UIGraphicsImageRendererFormatRangeStandard;
39
+
40
+ UIGraphicsImageRenderer *renderer =
41
+ [[UIGraphicsImageRenderer alloc] initWithSize:size format:format];
42
+
43
+ // Render to context - this is now the only part of this function that shows
44
+ // up in the profiler!
45
+ UIImage *image = [renderer
46
+ imageWithActions:^(UIGraphicsImageRendererContext *_Nonnull context) {
47
+ [view drawViewHierarchyInRect:(CGRect){CGPointZero, size}
48
+ afterScreenUpdates:YES];
49
+ }];
50
+
51
+ // Convert from UIImage -> CGImage -> SkImage
52
+ CGImageRef cgImage = image.CGImage;
53
+
54
+ // Get some info about the image
55
+ auto width = CGImageGetWidth(cgImage);
56
+ auto height = CGImageGetHeight(cgImage);
57
+ auto bytesPerRow = CGImageGetBytesPerRow(cgImage);
58
+
59
+ // Convert from UIImage -> SkImage, start by getting the pixels directly from
60
+ // the CGImage:
61
+ auto dataRef = CGDataProviderCopyData(CGImageGetDataProvider(cgImage));
62
+ auto length = CFDataGetLength(dataRef);
63
+ void *data = CFDataGetMutableBytePtr((CFMutableDataRef)dataRef);
64
+
65
+ // Now we'll capture the data in an SkData object and control releasing it:
66
+ auto skData = SkData::MakeWithProc(
67
+ data, length,
68
+ [](const void *ptr, void *context) {
69
+ CFDataRef dataRef = (CFDataRef)context;
70
+ CFRelease(dataRef);
71
+ },
72
+ (void *)dataRef);
73
+
74
+ // Make SkImageInfo
75
+ // We're using kBGRA_8888_SkColorType since this is what we get when the
76
+ // UIGraphicsImageRenderer uses the standard format (the extended is using
77
+ // 64bits so it is not suitable for us).
78
+ SkImageInfo info =
79
+ SkImageInfo::Make(static_cast<int>(width), static_cast<int>(height),
80
+ kBGRA_8888_SkColorType, kPremul_SkAlphaType);
81
+
82
+ // ... and then create the SkImage itself!
83
+ return SkImages::RasterFromData(info, skData, bytesPerRow);
84
+ #else
85
+ return nullptr;
86
+ #endif // !TARGET_OS_OSX
87
+ }
88
+
89
+ @end
@@ -34,7 +34,7 @@ public:
34
34
  SkPoint tangent;
35
35
  auto result = getObject()->getPosTan(dist, &position, &tangent);
36
36
  if (!result) {
37
- throw jsi::JSError(runtime, "getSegment() failed");
37
+ throw jsi::JSError(runtime, "getPosTan() failed");
38
38
  }
39
39
  auto posTan = jsi::Array(runtime, 2);
40
40
  auto pos = jsi::Object::createFromHostObject(
@@ -54,20 +54,21 @@ public:
54
54
 
55
55
  /**
56
56
  * Returns the underlying object exposed by this host object. This object
57
- * should be wrapped in a shared pointer of some kind
57
+ * should be wrapped in a shared pointer of some kind.
58
+ * Throws if the object has been disposed.
58
59
  * @return Underlying object
59
60
  */
60
- T getObject() { return _object; }
61
- const T getObject() const { return _object; }
61
+ T getObject() { return validateObject(); }
62
+ const T getObject() const { return validateObject(); }
62
63
 
63
64
  /**
64
- Updates the inner object with a new version of the object.
65
+ * Updates the inner object with a new version of the object.
65
66
  */
66
67
  void setObject(T object) { _object = object; }
67
68
 
68
69
  /**
69
- Dispose function that can be exposed to JS by using the JSI_API_TYPENAME
70
- macro
70
+ * Dispose function that can be exposed to JS by using the JSI_API_TYPENAME
71
+ * macro.
71
72
  */
72
73
  JSI_HOST_FUNCTION(dispose) {
73
74
  safeDispose();
@@ -76,12 +77,22 @@ public:
76
77
 
77
78
  protected:
78
79
  /**
79
- Override to implement disposale of allocated resources like smart pointers
80
- etc. This method will only be called once for each instance of this class.
80
+ * Override to implement disposal of allocated resources like smart pointers.
81
+ * This method will only be called once for each instance of this class.
81
82
  */
82
83
  virtual void releaseResources() = 0;
83
84
 
84
85
  private:
86
+ /**
87
+ * Validates that _object was not disposed and returns it.
88
+ */
89
+ T validateObject() const {
90
+ if (_isDisposed) {
91
+ throw std::runtime_error("Attempted to access a disposed object.");
92
+ }
93
+ return _object;
94
+ }
95
+
85
96
  void safeDispose() {
86
97
  if (!_isDisposed) {
87
98
  _isDisposed = true;
@@ -90,12 +101,12 @@ private:
90
101
  }
91
102
 
92
103
  /**
93
- * Wrapped object
104
+ * Wrapped object.
94
105
  */
95
106
  T _object;
96
107
 
97
108
  /**
98
- Resource disposed flag
109
+ * Resource disposed flag.
99
110
  */
100
111
  std::atomic<bool> _isDisposed = {false};
101
112
  };
@@ -24,19 +24,19 @@
24
24
  namespace RNSkia {
25
25
 
26
26
  namespace jsi = facebook::jsi;
27
-
28
27
  namespace para = skia::textlayout;
29
28
 
30
29
  /**
31
- Implementation of the Paragraph object in JSI
30
+ * Implementation of the Paragraph object in JSI
32
31
  */
33
- class JsiSkParagraph : public JsiSkHostObject {
32
+ class JsiSkParagraph
33
+ : public JsiSkWrappingSharedPtrHostObject<para::Paragraph> {
34
34
  public:
35
35
  EXPORT_JSI_API_TYPENAME(JsiSkParagraph, Paragraph)
36
36
 
37
37
  JSI_HOST_FUNCTION(layout) {
38
38
  auto width = getArgumentAsNumber(runtime, arguments, count, 0);
39
- _paragraph->layout(width);
39
+ getObject()->layout(width);
40
40
  return jsi::Value::undefined();
41
41
  }
42
42
 
@@ -45,34 +45,34 @@ public:
45
45
  getArgumentAsHostObject<JsiSkCanvas>(runtime, arguments, count, 0);
46
46
  auto x = getArgumentAsNumber(runtime, arguments, count, 1);
47
47
  auto y = getArgumentAsNumber(runtime, arguments, count, 2);
48
- _paragraph->paint(jsiCanvas->getCanvas(), x, y);
48
+ getObject()->paint(jsiCanvas->getCanvas(), x, y);
49
49
  return jsi::Value::undefined();
50
50
  }
51
51
 
52
52
  JSI_HOST_FUNCTION(getHeight) {
53
- return static_cast<double>(_paragraph->getHeight());
53
+ return static_cast<double>(getObject()->getHeight());
54
54
  }
55
55
 
56
56
  JSI_HOST_FUNCTION(getMaxWidth) {
57
- return static_cast<double>(_paragraph->getMaxWidth());
57
+ return static_cast<double>(getObject()->getMaxWidth());
58
58
  }
59
59
 
60
60
  JSI_HOST_FUNCTION(getMaxIntrinsicWidth) {
61
- return static_cast<double>(_paragraph->getMaxIntrinsicWidth());
61
+ return static_cast<double>(getObject()->getMaxIntrinsicWidth());
62
62
  }
63
63
 
64
64
  JSI_HOST_FUNCTION(getMinIntrinsicWidth) {
65
- return static_cast<double>(_paragraph->getMinIntrinsicWidth());
65
+ return static_cast<double>(getObject()->getMinIntrinsicWidth());
66
66
  }
67
67
 
68
68
  JSI_HOST_FUNCTION(getLongestLine) {
69
- return static_cast<double>(_paragraph->getLongestLine());
69
+ return static_cast<double>(getObject()->getLongestLine());
70
70
  }
71
71
 
72
72
  JSI_HOST_FUNCTION(getGlyphPositionAtCoordinate) {
73
73
  auto dx = getArgumentAsNumber(runtime, arguments, count, 0);
74
74
  auto dy = getArgumentAsNumber(runtime, arguments, count, 1);
75
- auto result = _paragraph->getGlyphPositionAtCoordinate(dx, dy);
75
+ auto result = getObject()->getGlyphPositionAtCoordinate(dx, dy);
76
76
  return result.position;
77
77
  }
78
78
 
@@ -80,8 +80,8 @@ public:
80
80
  auto start = getArgumentAsNumber(runtime, arguments, count, 0);
81
81
  auto end = getArgumentAsNumber(runtime, arguments, count, 1);
82
82
  auto result =
83
- _paragraph->getRectsForRange(start, end, para::RectHeightStyle::kTight,
84
- para::RectWidthStyle::kTight);
83
+ getObject()->getRectsForRange(start, end, para::RectHeightStyle::kTight,
84
+ para::RectWidthStyle::kTight);
85
85
  auto returnValue = jsi::Array(runtime, result.size());
86
86
  for (size_t i = 0; i < result.size(); ++i) {
87
87
  returnValue.setValueAtIndex(
@@ -93,7 +93,7 @@ public:
93
93
 
94
94
  JSI_HOST_FUNCTION(getLineMetrics) {
95
95
  std::vector<para::LineMetrics> metrics;
96
- _paragraph->getLineMetrics(metrics);
96
+ getObject()->getLineMetrics(metrics);
97
97
  auto returnValue = jsi::Array(runtime, metrics.size());
98
98
  auto height = 0;
99
99
  for (size_t i = 0; i < metrics.size(); ++i) {
@@ -110,7 +110,7 @@ public:
110
110
 
111
111
  JSI_HOST_FUNCTION(getRectsForPlaceholders) {
112
112
  std::vector<para::TextBox> placeholderInfos =
113
- _paragraph->getRectsForPlaceholders();
113
+ getObject()->getRectsForPlaceholders();
114
114
  auto returnValue = jsi::Array(runtime, placeholderInfos.size());
115
115
  for (size_t i = 0; i < placeholderInfos.size(); ++i) {
116
116
  auto obj = jsi::Object(runtime);
@@ -124,12 +124,6 @@ public:
124
124
  return returnValue;
125
125
  }
126
126
 
127
- JSI_HOST_FUNCTION(dispose) {
128
- _paragraph = nullptr;
129
-
130
- return jsi::Value::undefined();
131
- }
132
-
133
127
  JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkParagraph, layout),
134
128
  JSI_EXPORT_FUNC(JsiSkParagraph, paint),
135
129
  JSI_EXPORT_FUNC(JsiSkParagraph, getMaxWidth),
@@ -146,12 +140,8 @@ public:
146
140
 
147
141
  explicit JsiSkParagraph(std::shared_ptr<RNSkPlatformContext> context,
148
142
  para::ParagraphBuilder *paragraphBuilder)
149
- : JsiSkHostObject(std::move(context)) {
150
- _paragraph = paragraphBuilder->Build();
151
- }
152
-
153
- public:
154
- std::unique_ptr<para::Paragraph> _paragraph;
143
+ : JsiSkWrappingSharedPtrHostObject<para::Paragraph>(
144
+ std::move(context), std::move(paragraphBuilder->Build())) {}
155
145
  };
156
146
 
157
147
  } // namespace RNSkia
@@ -26,7 +26,7 @@ public:
26
26
  std::move(pathEffect)) {}
27
27
 
28
28
  EXPORT_JSI_API_TYPENAME(JsiSkPathEffect, PathEffect)
29
- JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkColorFilter, dispose))
29
+ JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkPathEffect, dispose))
30
30
  };
31
31
 
32
32
  } // namespace RNSkia
@@ -45,7 +45,7 @@ public:
45
45
  JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkPictureFactory, MakePicture))
46
46
 
47
47
  explicit JsiSkPictureFactory(std::shared_ptr<RNSkPlatformContext> context)
48
- : JsiSkHostObject(context) {}
48
+ : JsiSkHostObject(std::move(context)) {}
49
49
  };
50
50
 
51
51
  } // namespace RNSkia
@@ -874,9 +874,10 @@ public:
874
874
  }
875
875
 
876
876
  void draw(DrawingCtx *ctx) {
877
- if (props.paragraph && props.paragraph->_paragraph) {
878
- props.paragraph->_paragraph->layout(props.width);
879
- props.paragraph->_paragraph->paint(ctx->canvas, props.x, props.y);
877
+ if (props.paragraph) {
878
+ auto paragraph = props.paragraph->getObject();
879
+ paragraph->layout(props.width);
880
+ paragraph->paint(ctx->canvas, props.x, props.y);
880
881
  }
881
882
  }
882
883
  };
@@ -412,6 +412,9 @@ public:
412
412
  * If a scanline decode is in progress, scanline mode will end, requiring the client to call
413
413
  * startScanlineDecode() in order to return to decoding scanlines.
414
414
  *
415
+ * For certain codecs, reading into a smaller bitmap than the original dimensions may not
416
+ * produce correct results (e.g. animated webp).
417
+ *
415
418
  * @return Result kSuccess, or another value explaining the type of failure.
416
419
  */
417
420
  Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options*);
@@ -812,6 +815,7 @@ protected:
812
815
  }
813
816
 
814
817
  virtual bool onGetGainmapCodec(SkGainmapInfo*, std::unique_ptr<SkCodec>*) { return false; }
818
+ virtual bool onGetGainmapInfo(SkGainmapInfo*) { return false; }
815
819
 
816
820
  // TODO(issues.skia.org/363544350): This API only works for JPEG images. Remove this API once
817
821
  // it is no longer used.
@@ -1053,8 +1057,9 @@ private:
1053
1057
  friend class PNGCodecGM; // for fillIncompleteImage
1054
1058
  friend class SkSampledCodec;
1055
1059
  friend class SkIcoCodec;
1056
- friend class SkAndroidCodec; // for fEncodedInfo
1057
- friend class SkPDFBitmap; // for fEncodedInfo
1060
+ friend class SkPngCodec; // for onGetGainmapCodec
1061
+ friend class SkAndroidCodec; // for handleFrameIndex
1062
+ friend class SkCodecPriv; // for fEncodedInfo
1058
1063
  };
1059
1064
 
1060
1065
  namespace SkCodecs {
@@ -74,6 +74,12 @@
74
74
  */
75
75
  //#define SK_R32_SHIFT 16
76
76
 
77
+ /* This controls how much space should be pre-allocated in an SkCanvas object
78
+ to store the SkMatrix and clip via calls to SkCanvas::save() (and balanced with
79
+ SkCanvas::restore()).
80
+ */
81
+ //#define SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT 32
82
+
77
83
  /* Determines whether to build code that supports the Ganesh GPU backend. Some classes
78
84
  that are not GPU-specific, such as SkShader subclasses, have optional code
79
85
  that is used allows them to interact with this GPU backend. If you'd like to
@@ -95,6 +101,11 @@
95
101
  //#define SK_HISTOGRAM_MEMORY_KB(name, sample)
96
102
  //#define SK_HISTOGRAM_CUSTOM_MICROSECONDS_TIMES(name, sampleUSec, minUSec, maxUSec, bucketCount)
97
103
 
104
+ /*
105
+ * Skia can provide extensive logging of Graphite Pipeline lifetimes.
106
+ */
107
+ //#define SK_PIPELINE_LIFETIME_LOGGING
108
+
98
109
  // To use smaller but slower mipmap builder
99
110
  //#define SK_USE_DRAWING_MIPMAP_DOWNSAMPLER
100
111
 
@@ -34,6 +34,7 @@
34
34
  #include "include/private/base/SkDeque.h"
35
35
  #include "include/private/base/SkTArray.h"
36
36
 
37
+ #include <cstddef>
37
38
  #include <cstdint>
38
39
  #include <cstring>
39
40
  #include <memory>
@@ -2502,15 +2503,18 @@ private:
2502
2503
  void reset(SkDevice* device);
2503
2504
  };
2504
2505
 
2505
- // the first N recs that can fit here mean we won't call malloc
2506
- static constexpr int kMCRecSize = 96; // most recent measurement
2507
- static constexpr int kMCRecCount = 32; // common depth for save/restores
2506
+ #if defined(SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT)
2507
+ static constexpr int kMCRecCount = SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT;
2508
+ #else
2509
+ static constexpr int kMCRecCount = 32; // common depth for save/restores
2510
+ #endif
2508
2511
 
2509
- intptr_t fMCRecStorage[kMCRecSize * kMCRecCount / sizeof(intptr_t)];
2512
+ // This stack allocation of memory will be used to house the first kMCRecCount
2513
+ // layers without need to call malloc.
2514
+ alignas(MCRec) std::byte fMCRecStorage[sizeof(MCRec) * kMCRecCount];
2510
2515
 
2511
- SkDeque fMCStack;
2512
- // points to top of stack
2513
- MCRec* fMCRec;
2516
+ SkDeque fMCStack; // uses the stack memory
2517
+ MCRec* fMCRec; // points to top of stack for convenience
2514
2518
 
2515
2519
  // Installed via init()
2516
2520
  sk_sp<SkDevice> fRootDevice;
@@ -12,6 +12,7 @@
12
12
  #include "include/core/SkScalar.h"
13
13
  #include "include/core/SkTypes.h"
14
14
  #include "include/private/base/SkCPUTypes.h"
15
+ #include "include/private/base/SkTPin.h"
15
16
 
16
17
  #include <array>
17
18
  #include <cstdint>
@@ -415,6 +416,15 @@ struct SkRGBA4f {
415
416
  SkRGBA4f makeOpaque() const {
416
417
  return { fR, fG, fB, 1.0f };
417
418
  }
419
+
420
+ /**
421
+ Returns a copy of the SkRGBA4f but with the alpha component pinned to [0, 1].
422
+
423
+ @return color with pinned alpha
424
+ */
425
+ SkRGBA4f pinAlpha() const {
426
+ return { fR, fG, fB, SkTPin(fA, 0.f, 1.f) };
427
+ }
418
428
  };
419
429
 
420
430
  /** \struct SkColor4f