@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
@@ -13,7 +13,7 @@ import type {
13
13
  TileMode,
14
14
  } from "../types";
15
15
 
16
- import { Host, NotImplementedOnRNWeb, getEnum } from "./Host";
16
+ import { Host, throwNotImplementedOnRNWeb, getEnum } from "./Host";
17
17
  import { JsiSkImageFilter } from "./JsiSkImageFilter";
18
18
  import { JsiSkColorFilter } from "./JsiSkColorFilter";
19
19
 
@@ -42,8 +42,8 @@ export class JsiSkImageFilterFactory
42
42
  const inputFilter =
43
43
  input === null ? null : JsiSkImageFilter.fromValue<ImageFilter>(input);
44
44
  const filter = this.CanvasKit.ImageFilter.MakeDisplacementMap(
45
- getEnum(this.CanvasKit.ColorChannel, channelX),
46
- getEnum(this.CanvasKit.ColorChannel, channelY),
45
+ getEnum(this.CanvasKit, "ColorChannel", channelX),
46
+ getEnum(this.CanvasKit, "ColorChannel", channelY),
47
47
  scale,
48
48
  JsiSkImageFilter.fromValue(in1),
49
49
  inputFilter
@@ -69,7 +69,7 @@ export class JsiSkImageFilterFactory
69
69
  this.CanvasKit.ImageFilter.MakeBlur(
70
70
  sigmaX,
71
71
  sigmaY,
72
- getEnum(this.CanvasKit.TileMode, mode),
72
+ getEnum(this.CanvasKit, "TileMode", mode),
73
73
  input === null ? null : JsiSkImageFilter.fromValue(input)
74
74
  )
75
75
  );
@@ -107,9 +107,7 @@ export class JsiSkImageFilterFactory
107
107
  const inputFilter =
108
108
  input === null ? null : JsiSkImageFilter.fromValue<ImageFilter>(input);
109
109
  if (cropRect) {
110
- throw new NotImplementedOnRNWeb(
111
- "The cropRect argument is not yet supported on React Native Web."
112
- );
110
+ throwNotImplementedOnRNWeb<SkImageFilter>();
113
111
  }
114
112
  const filter = this.CanvasKit.ImageFilter.MakeDropShadow(
115
113
  dx,
@@ -134,9 +132,7 @@ export class JsiSkImageFilterFactory
134
132
  const inputFilter =
135
133
  input === null ? null : JsiSkImageFilter.fromValue<ImageFilter>(input);
136
134
  if (cropRect) {
137
- throw new NotImplementedOnRNWeb(
138
- "The cropRect argument is not yet supported on React Native Web."
139
- );
135
+ throwNotImplementedOnRNWeb<SkImageFilter>();
140
136
  }
141
137
  const filter = this.CanvasKit.ImageFilter.MakeDropShadowOnly(
142
138
  dx,
@@ -158,9 +154,7 @@ export class JsiSkImageFilterFactory
158
154
  const inputFilter =
159
155
  input === null ? null : JsiSkImageFilter.fromValue<ImageFilter>(input);
160
156
  if (cropRect) {
161
- throw new NotImplementedOnRNWeb(
162
- "The cropRect argument is not yet supported on React Native Web."
163
- );
157
+ throwNotImplementedOnRNWeb<SkImageFilter>();
164
158
  }
165
159
  const filter = this.CanvasKit.ImageFilter.MakeErode(rx, ry, inputFilter);
166
160
  return new JsiSkImageFilter(this.CanvasKit, filter);
@@ -175,9 +169,7 @@ export class JsiSkImageFilterFactory
175
169
  const inputFilter =
176
170
  input === null ? null : JsiSkImageFilter.fromValue<ImageFilter>(input);
177
171
  if (cropRect) {
178
- throw new NotImplementedOnRNWeb(
179
- "The cropRect argument is not yet supported on React Native Web."
180
- );
172
+ throwNotImplementedOnRNWeb<SkImageFilter>();
181
173
  }
182
174
  const filter = this.CanvasKit.ImageFilter.MakeDilate(rx, ry, inputFilter);
183
175
  return new JsiSkImageFilter(this.CanvasKit, filter);
@@ -194,12 +186,10 @@ export class JsiSkImageFilterFactory
194
186
  ? null
195
187
  : JsiSkImageFilter.fromValue<ImageFilter>(foreground);
196
188
  if (cropRect) {
197
- throw new NotImplementedOnRNWeb(
198
- "The cropRect argument is not yet supported on React Native Web."
199
- );
189
+ throwNotImplementedOnRNWeb<SkImageFilter>();
200
190
  }
201
191
  const filter = this.CanvasKit.ImageFilter.MakeBlend(
202
- getEnum(this.CanvasKit.BlendMode, mode),
192
+ getEnum(this.CanvasKit, "BlendMode", mode),
203
193
  JsiSkImageFilter.fromValue(background),
204
194
  inputFilter
205
195
  );
@@ -210,7 +200,7 @@ export class JsiSkImageFilterFactory
210
200
  _builder: SkRuntimeShaderBuilder,
211
201
  _childShaderName: string | null,
212
202
  _input: SkImageFilter | null
213
- ): SkImageFilter {
214
- throw new NotImplementedOnRNWeb();
203
+ ) {
204
+ return throwNotImplementedOnRNWeb<SkImageFilter>();
215
205
  }
216
206
  }
@@ -15,7 +15,7 @@ export class JsiSkMaskFilterFactory extends Host implements MaskFilterFactory {
15
15
  return new JsiSkMaskFilter(
16
16
  this.CanvasKit,
17
17
  this.CanvasKit.MaskFilter.MakeBlur(
18
- getEnum(this.CanvasKit.BlurStyle, style),
18
+ getEnum(this.CanvasKit, "BlurStyle", style),
19
19
  sigma,
20
20
  respectCTM
21
21
  )
@@ -79,7 +79,7 @@ export class JsiSkPaint extends HostObject<Paint, "Paint"> implements SkPaint {
79
79
  }
80
80
 
81
81
  setBlendMode(blendMode: BlendMode) {
82
- this.ref.setBlendMode(getEnum(this.CanvasKit.BlendMode, blendMode));
82
+ this.ref.setBlendMode(getEnum(this.CanvasKit, "BlendMode", blendMode));
83
83
  }
84
84
 
85
85
  setColor(color: SkColor) {
@@ -107,11 +107,11 @@ export class JsiSkPaint extends HostObject<Paint, "Paint"> implements SkPaint {
107
107
  }
108
108
 
109
109
  setStrokeCap(cap: StrokeCap) {
110
- this.ref.setStrokeCap(getEnum(this.CanvasKit.StrokeCap, cap));
110
+ this.ref.setStrokeCap(getEnum(this.CanvasKit, "StrokeCap", cap));
111
111
  }
112
112
 
113
113
  setStrokeJoin(join: StrokeJoin) {
114
- this.ref.setStrokeJoin(getEnum(this.CanvasKit.StrokeJoin, join));
114
+ this.ref.setStrokeJoin(getEnum(this.CanvasKit, "StrokeJoin", join));
115
115
  }
116
116
 
117
117
  setStrokeMiter(limit: number) {
@@ -150,7 +150,7 @@ export class JsiSkPath extends HostObject<Path, "Path"> implements SkPath {
150
150
  }
151
151
 
152
152
  setFillType(fill: FillType) {
153
- this.ref.setFillType(getEnum(this.CanvasKit.FillType, fill));
153
+ this.ref.setFillType(getEnum(this.CanvasKit, "FillType", fill));
154
154
  return this;
155
155
  }
156
156
 
@@ -168,8 +168,8 @@ export class JsiSkPath extends HostObject<Path, "Path"> implements SkPath {
168
168
  // eslint-disable-next-line camelcase
169
169
  miter_limit: opts.width,
170
170
  precision: opts.width,
171
- join: optEnum(this.CanvasKit.StrokeJoin, opts.join),
172
- cap: optEnum(this.CanvasKit.StrokeCap, opts.cap),
171
+ join: optEnum(this.CanvasKit, "StrokeJoin", opts.join),
172
+ cap: optEnum(this.CanvasKit, "StrokeCap", opts.cap),
173
173
  }
174
174
  );
175
175
  return result === null ? result : this;
@@ -318,7 +318,7 @@ export class JsiSkPath extends HostObject<Path, "Path"> implements SkPath {
318
318
  op(path: SkPath, op: PathOp) {
319
319
  return this.ref.op(
320
320
  JsiSkPath.fromValue(path),
321
- getEnum(this.CanvasKit.PathOp, op)
321
+ getEnum(this.CanvasKit, "PathOp", op)
322
322
  );
323
323
  }
324
324
 
@@ -8,7 +8,7 @@ import type {
8
8
  SkPathEffect,
9
9
  } from "../types";
10
10
 
11
- import { getEnum, Host, NotImplementedOnRNWeb } from "./Host";
11
+ import { getEnum, Host, throwNotImplementedOnRNWeb } from "./Host";
12
12
  import { JsiSkMatrix } from "./JsiSkMatrix";
13
13
  import { JsiSkPath } from "./JsiSkPath";
14
14
  import { JsiSkPathEffect } from "./JsiSkPathEffect";
@@ -40,12 +40,12 @@ export class JsiSkPathEffectFactory extends Host implements PathEffectFactory {
40
40
  return new JsiSkPathEffect(this.CanvasKit, pe);
41
41
  }
42
42
 
43
- MakeCompose(_outer: SkPathEffect, _inner: SkPathEffect): SkPathEffect {
44
- throw new NotImplementedOnRNWeb();
43
+ MakeCompose(_outer: SkPathEffect, _inner: SkPathEffect) {
44
+ return throwNotImplementedOnRNWeb<SkPathEffect>();
45
45
  }
46
46
 
47
- MakeSum(_outer: SkPathEffect, _inner: SkPathEffect): SkPathEffect {
48
- throw new NotImplementedOnRNWeb();
47
+ MakeSum(_outer: SkPathEffect, _inner: SkPathEffect) {
48
+ return throwNotImplementedOnRNWeb<SkPathEffect>();
49
49
  }
50
50
 
51
51
  MakeLine2D(width: number, matrix: SkMatrix) {
@@ -69,7 +69,7 @@ export class JsiSkPathEffectFactory extends Host implements PathEffectFactory {
69
69
  JsiSkPath.fromValue(path),
70
70
  advance,
71
71
  phase,
72
- getEnum(this.CanvasKit.Path1DEffect, style)
72
+ getEnum(this.CanvasKit, "Path1DEffect", style)
73
73
  );
74
74
  if (pe === null) {
75
75
  return null;
@@ -3,7 +3,7 @@ import type { CanvasKit } from "canvaskit-wasm";
3
3
  import type { PathCommand, PathOp, SkFont, SkPath } from "../types";
4
4
  import type { PathFactory } from "../types/Path/PathFactory";
5
5
 
6
- import { Host, getEnum, NotImplementedOnRNWeb } from "./Host";
6
+ import { Host, getEnum, throwNotImplementedOnRNWeb } from "./Host";
7
7
  import { JsiSkPath } from "./JsiSkPath";
8
8
 
9
9
  export class JsiSkPathFactory extends Host implements PathFactory {
@@ -27,7 +27,7 @@ export class JsiSkPathFactory extends Host implements PathFactory {
27
27
  const path = this.CanvasKit.Path.MakeFromOp(
28
28
  JsiSkPath.fromValue(one),
29
29
  JsiSkPath.fromValue(two),
30
- getEnum(this.CanvasKit.PathOp, op)
30
+ getEnum(this.CanvasKit, "PathOp", op)
31
31
  );
32
32
  if (path === null) {
33
33
  return null;
@@ -43,12 +43,7 @@ export class JsiSkPathFactory extends Host implements PathFactory {
43
43
  return new JsiSkPath(this.CanvasKit, path);
44
44
  }
45
45
 
46
- MakeFromText(
47
- _text: string,
48
- _x: number,
49
- _y: number,
50
- _font: SkFont
51
- ): SkPath | null {
52
- throw new NotImplementedOnRNWeb();
46
+ MakeFromText(_text: string, _x: number, _y: number, _font: SkFont) {
47
+ return throwNotImplementedOnRNWeb<SkPath>();
53
48
  }
54
49
  }
@@ -36,9 +36,9 @@ export class JsiSkPicture
36
36
  return new JsiSkShader(
37
37
  this.CanvasKit,
38
38
  this.ref.makeShader(
39
- getEnum(this.CanvasKit.TileMode, tmx),
40
- getEnum(this.CanvasKit.TileMode, tmy),
41
- getEnum(this.CanvasKit.FilterMode, mode),
39
+ getEnum(this.CanvasKit, "TileMode", tmx),
40
+ getEnum(this.CanvasKit, "TileMode", tmy),
41
+ getEnum(this.CanvasKit, "FilterMode", mode),
42
42
  localMatrix ? JsiSkMatrix.fromValue(localMatrix) : undefined,
43
43
  tileRect ? JsiSkRect.fromValue(this.CanvasKit, tileRect) : undefined
44
44
  )
@@ -36,7 +36,7 @@ export class JsiSkShaderFactory extends Host implements ShaderFactory {
36
36
  JsiSkPoint.fromValue(end),
37
37
  colors,
38
38
  pos,
39
- getEnum(this.CanvasKit.TileMode, mode),
39
+ getEnum(this.CanvasKit, "TileMode", mode),
40
40
  localMatrix === undefined
41
41
  ? undefined
42
42
  : JsiSkMatrix.fromValue(localMatrix),
@@ -61,7 +61,7 @@ export class JsiSkShaderFactory extends Host implements ShaderFactory {
61
61
  radius,
62
62
  colors,
63
63
  pos,
64
- getEnum(this.CanvasKit.TileMode, mode),
64
+ getEnum(this.CanvasKit, "TileMode", mode),
65
65
  localMatrix === undefined
66
66
  ? undefined
67
67
  : JsiSkMatrix.fromValue(localMatrix),
@@ -90,7 +90,7 @@ export class JsiSkShaderFactory extends Host implements ShaderFactory {
90
90
  endRadius,
91
91
  colors,
92
92
  pos,
93
- getEnum(this.CanvasKit.TileMode, mode),
93
+ getEnum(this.CanvasKit, "TileMode", mode),
94
94
  localMatrix === undefined
95
95
  ? undefined
96
96
  : JsiSkMatrix.fromValue(localMatrix),
@@ -117,7 +117,7 @@ export class JsiSkShaderFactory extends Host implements ShaderFactory {
117
117
  cy,
118
118
  colors,
119
119
  pos,
120
- getEnum(this.CanvasKit.TileMode, mode),
120
+ getEnum(this.CanvasKit, "TileMode", mode),
121
121
  localMatrix === undefined || localMatrix === null
122
122
  ? undefined
123
123
  : JsiSkMatrix.fromValue(localMatrix),
@@ -174,7 +174,7 @@ export class JsiSkShaderFactory extends Host implements ShaderFactory {
174
174
  return new JsiSkShader(
175
175
  this.CanvasKit,
176
176
  this.CanvasKit.Shader.MakeBlend(
177
- getEnum(this.CanvasKit.BlendMode, mode),
177
+ getEnum(this.CanvasKit, "BlendMode", mode),
178
178
  JsiSkShader.fromValue(one),
179
179
  JsiSkShader.fromValue(two)
180
180
  )
@@ -3,7 +3,7 @@ import type { CanvasKit, TypefaceFontProvider } from "canvaskit-wasm";
3
3
  import type { SkTypefaceFontProvider } from "../types/Paragraph/TypefaceFontProvider";
4
4
  import type { FontStyle, SkTypeface } from "../types";
5
5
 
6
- import { HostObject, NotImplementedOnRNWeb } from "./Host";
6
+ import { HostObject, throwNotImplementedOnRNWeb } from "./Host";
7
7
 
8
8
  export class JsiSkTypefaceFontProvider
9
9
  extends HostObject<TypefaceFontProvider, "FontMgr">
@@ -15,8 +15,8 @@ export class JsiSkTypefaceFontProvider
15
15
  super(CanvasKit, ref, "FontMgr");
16
16
  }
17
17
 
18
- matchFamilyStyle(_name: string, _style: FontStyle): SkTypeface {
19
- throw new NotImplementedOnRNWeb();
18
+ matchFamilyStyle(_name: string, _style: FontStyle) {
19
+ return throwNotImplementedOnRNWeb<SkTypeface>();
20
20
  }
21
21
  countFamilies() {
22
22
  return this.ref.countFamilies();
@@ -31,7 +31,7 @@ export const MakeVertices = (
31
31
  new JsiSkVertices(
32
32
  CanvasKit,
33
33
  CanvasKit.MakeVertices(
34
- getEnum(CanvasKit.VertexMode, mode),
34
+ getEnum(CanvasKit, "VertexMode", mode),
35
35
  positions.map(({ x, y }) => [x, y]).flat(),
36
36
  (textureCoordinates || []).map(({ x, y }) => [x, y]).flat(),
37
37
  !colors ? null : colors.reduce((a, c) => concat(a, c)),
@@ -1,8 +1,10 @@
1
1
  import type { CanvasKit } from "canvaskit-wasm";
2
2
 
3
3
  import type {
4
+ JsiRecorder,
4
5
  SkContourMeasureIter,
5
6
  Skia,
7
+ SkiaContext,
6
8
  SkPath,
7
9
  SkRect,
8
10
  SkRuntimeEffect,
@@ -43,12 +45,13 @@ import { JsiSkAnimatedImageFactory } from "./JsiSkAnimatedImageFactory";
43
45
  import { JsiSkParagraphBuilderFactory } from "./JsiSkParagraphBuilderFactory";
44
46
  import { JsiSkNativeBufferFactory } from "./JsiSkNativeBufferFactory";
45
47
  import { createVideo } from "./JsiVideo";
48
+ import { throwNotImplementedOnRNWeb } from "./Host";
46
49
 
47
50
  export const JsiSkApi = (CanvasKit: CanvasKit): Skia => ({
48
51
  Point: (x: number, y: number) =>
49
52
  new JsiSkPoint(CanvasKit, Float32Array.of(x, y)),
50
- RuntimeShaderBuilder: (_: SkRuntimeEffect): SkRuntimeShaderBuilder => {
51
- throw new Error("Not implemented on React Native Web");
53
+ RuntimeShaderBuilder: (_: SkRuntimeEffect) => {
54
+ return throwNotImplementedOnRNWeb<SkRuntimeShaderBuilder>();
52
55
  },
53
56
  RRectXY: (rect: SkRect, rx: number, ry: number) =>
54
57
  new JsiSkRRect(CanvasKit, rect, rx, ry),
@@ -130,9 +133,9 @@ export const JsiSkApi = (CanvasKit: CanvasKit): Skia => ({
130
133
  NativeBuffer: new JsiSkNativeBufferFactory(CanvasKit),
131
134
  Video: createVideo.bind(null, CanvasKit),
132
135
  Context: (_surface: bigint, _width: number, _height: number) => {
133
- throw new Error("Not implemented on React Native Web");
136
+ return throwNotImplementedOnRNWeb<SkiaContext>();
134
137
  },
135
138
  Recorder: () => {
136
- throw new Error("Not implemented on React Native Web");
139
+ return throwNotImplementedOnRNWeb<JsiRecorder>();
137
140
  },
138
141
  });
@@ -4,6 +4,7 @@ import type { CanvasKitWebGLBuffer, Video, ImageFactory } from "../types";
4
4
 
5
5
  import { CanvasKitWebGLBufferImpl } from "./CanvasKitWebGLBufferImpl";
6
6
  import { JsiSkImageFactory } from "./JsiSkImageFactory";
7
+ import { throwNotImplementedOnRNWeb } from "./Host";
7
8
 
8
9
  export const createVideo = async (
9
10
  CanvasKit: CanvasKit,
@@ -42,7 +43,7 @@ export class JsiVideo implements Video {
42
43
  }
43
44
 
44
45
  framerate(): number {
45
- throw new Error("Video.frame is not available on React Native Web");
46
+ return throwNotImplementedOnRNWeb<number>();
46
47
  }
47
48
 
48
49
  setSurface(surface: Surface) {