@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
@@ -1,6 +1,4 @@
1
- export class NotImplementedOnRNWeb extends Error {
2
- constructor(msg: any);
3
- }
1
+ export function throwNotImplementedOnRNWeb(): jest.Mock<any, any, any>;
4
2
  export class Host {
5
3
  constructor(CanvasKit: any);
6
4
  CanvasKit: any;
@@ -13,5 +11,5 @@ export class BaseHostObject extends Host {
13
11
  export class HostObject extends BaseHostObject {
14
12
  static fromValue(value: any): any;
15
13
  }
16
- export function getEnum(e: any, v: any): any;
17
- export function optEnum(e: any, value: any): any;
14
+ export function getEnum(CanvasKit: any, name: any, v: any): any;
15
+ export function optEnum(CanvasKit: any, name: any, v: any): any;
@@ -1,6 +1,6 @@
1
1
  export class JsiSkFont extends HostObject {
2
2
  constructor(CanvasKit: any, ref: any);
3
- measureText(_text: any, _paint: any): void;
3
+ measureText(_text: any, _paint: any): jest.Mock<any, any, any>;
4
4
  getTextWidth(text: any, paint: any): any;
5
5
  getMetrics(): {
6
6
  ascent: any;
@@ -3,6 +3,6 @@ export class JsiSkFontMgr extends HostObject {
3
3
  dispose(): void;
4
4
  countFamilies(): any;
5
5
  getFamilyName(index: any): any;
6
- matchFamilyStyle(_familyName: any, _fontStyle: any): void;
6
+ matchFamilyStyle(_familyName: any, _fontStyle: any): jest.Mock<any, any, any>;
7
7
  }
8
8
  import { HostObject } from "./Host";
@@ -2,7 +2,7 @@ export class JsiSkImageFactory extends Host {
2
2
  MakeImageFromViewTag(viewTag: any): Promise<null>;
3
3
  MakeImageFromNativeBuffer(buffer: any, surface: any, image: any): JsiSkImage;
4
4
  MakeImageFromEncoded(encoded: any): JsiSkImage | null;
5
- MakeImageFromNativeTextureUnstable(): void;
5
+ MakeImageFromNativeTextureUnstable(): jest.Mock<any, any, any>;
6
6
  MakeImage(info: any, data: any, bytesPerRow: any): JsiSkImage | null;
7
7
  }
8
8
  import { Host } from "./Host";
@@ -10,7 +10,7 @@ export class JsiSkImageFilterFactory extends Host {
10
10
  MakeErode(rx: any, ry: any, input: any, cropRect: any): JsiSkImageFilter;
11
11
  MakeDilate(rx: any, ry: any, input: any, cropRect: any): JsiSkImageFilter;
12
12
  MakeBlend(mode: any, background: any, foreground: any, cropRect: any): JsiSkImageFilter;
13
- MakeRuntimeShader(_builder: any, _childShaderName: any, _input: any): void;
13
+ MakeRuntimeShader(_builder: any, _childShaderName: any, _input: any): jest.Mock<any, any, any>;
14
14
  }
15
15
  import { Host } from "./Host";
16
16
  import { JsiSkImageFilter } from "./JsiSkImageFilter";
@@ -2,8 +2,8 @@ export class JsiSkPathEffectFactory extends Host {
2
2
  MakeCorner(radius: any): JsiSkPathEffect | null;
3
3
  MakeDash(intervals: any, phase: any): JsiSkPathEffect;
4
4
  MakeDiscrete(segLength: any, dev: any, seedAssist: any): JsiSkPathEffect;
5
- MakeCompose(_outer: any, _inner: any): void;
6
- MakeSum(_outer: any, _inner: any): void;
5
+ MakeCompose(_outer: any, _inner: any): jest.Mock<any, any, any>;
6
+ MakeSum(_outer: any, _inner: any): jest.Mock<any, any, any>;
7
7
  MakeLine2D(width: any, matrix: any): JsiSkPathEffect | null;
8
8
  MakePath1D(path: any, advance: any, phase: any, style: any): JsiSkPathEffect | null;
9
9
  MakePath2D(matrix: any, path: any): JsiSkPathEffect | null;
@@ -3,7 +3,7 @@ export class JsiSkPathFactory extends Host {
3
3
  MakeFromSVGString(str: any): JsiSkPath | null;
4
4
  MakeFromOp(one: any, two: any, op: any): JsiSkPath | null;
5
5
  MakeFromCmds(cmds: any): JsiSkPath | null;
6
- MakeFromText(_text: any, _x: any, _y: any, _font: any): void;
6
+ MakeFromText(_text: any, _x: any, _y: any, _font: any): jest.Mock<any, any, any>;
7
7
  }
8
8
  import { Host } from "./Host";
9
9
  import { JsiSkPath } from "./JsiSkPath";
@@ -1,6 +1,6 @@
1
1
  export class JsiSkTypefaceFontProvider extends HostObject {
2
2
  constructor(CanvasKit: any, ref: any);
3
- matchFamilyStyle(_name: any, _style: any): void;
3
+ matchFamilyStyle(_name: any, _style: any): jest.Mock<any, any, any>;
4
4
  countFamilies(): any;
5
5
  getFamilyName(index: any): any;
6
6
  registerFont(typeface: any, familyName: any): void;
@@ -1,6 +1,6 @@
1
1
  export function JsiSkApi(CanvasKit: any): {
2
2
  Point: (x: any, y: any) => JsiSkPoint;
3
- RuntimeShaderBuilder: (_: any) => never;
3
+ RuntimeShaderBuilder: (_: any) => jest.Mock<any, any, any>;
4
4
  RRectXY: (rect: any, rx: any, ry: any) => JsiSkRRect;
5
5
  RSXform: (scos: any, ssin: any, tx: any, ty: any) => JsiSkRSXform;
6
6
  RSXformFromRadians: (scale: any, r: any, tx: any, ty: any, px: any, py: any) => JsiSkRSXform;
@@ -32,8 +32,8 @@ export function JsiSkApi(CanvasKit: any): {
32
32
  ParagraphBuilder: JsiSkParagraphBuilderFactory;
33
33
  NativeBuffer: JsiSkNativeBufferFactory;
34
34
  Video: (url?: any) => Promise<any>;
35
- Context: (_surface: any, _width: any, _height: any) => never;
36
- Recorder: () => never;
35
+ Context: (_surface: any, _width: any, _height: any) => jest.Mock<any, any, any>;
36
+ Recorder: () => jest.Mock<any, any, any>;
37
37
  };
38
38
  import { JsiSkPoint } from "./JsiSkPoint";
39
39
  import { JsiSkRRect } from "./JsiSkRRect";
@@ -4,7 +4,7 @@ export class JsiVideo {
4
4
  ImageFactory: any;
5
5
  videoElement: any;
6
6
  duration(): number;
7
- framerate(): void;
7
+ framerate(): jest.Mock<any, any, any>;
8
8
  setSurface(surface: any): void;
9
9
  webglBuffer: CanvasKitWebGLBufferImpl | undefined;
10
10
  nextImage(): any;
@@ -1,8 +1,6 @@
1
- import type { CanvasKit, EmbindEnumEntity, EmbindEnum } from "canvaskit-wasm";
1
+ import type { CanvasKit, EmbindEnumEntity } from "canvaskit-wasm";
2
2
  import type { SkJSIInstance } from "../types";
3
- export declare class NotImplementedOnRNWeb extends Error {
4
- constructor(msg?: string);
5
- }
3
+ export declare const throwNotImplementedOnRNWeb: <T>() => T;
6
4
  export declare abstract class Host {
7
5
  readonly CanvasKit: CanvasKit;
8
6
  constructor(CanvasKit: CanvasKit);
@@ -16,5 +14,5 @@ export declare abstract class BaseHostObject<T, N extends string> extends Host i
16
14
  export declare abstract class HostObject<T, N extends string> extends BaseHostObject<T, N> {
17
15
  static fromValue<T>(value: SkJSIInstance<string>): T;
18
16
  }
19
- export declare const getEnum: (e: EmbindEnum, v: number) => EmbindEnumEntity;
20
- export declare const optEnum: (e: EmbindEnum, value: number | undefined) => EmbindEnumEntity | undefined;
17
+ export declare const getEnum: (CanvasKit: CanvasKit, name: keyof CanvasKit, v: number) => EmbindEnumEntity;
18
+ export declare const optEnum: (CanvasKit: CanvasKit, name: keyof CanvasKit, v: number | undefined) => EmbindEnumEntity | undefined;
@@ -9,5 +9,5 @@ export declare class JsiSkPathFactory extends Host implements PathFactory {
9
9
  MakeFromSVGString(str: string): JsiSkPath | null;
10
10
  MakeFromOp(one: SkPath, two: SkPath, op: PathOp): JsiSkPath | null;
11
11
  MakeFromCmds(cmds: PathCommand[]): JsiSkPath | null;
12
- MakeFromText(_text: string, _x: number, _y: number, _font: SkFont): SkPath | null;
12
+ MakeFromText(_text: string, _x: number, _y: number, _font: SkFont): SkPath;
13
13
  }
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "setup-skia-web": "scripts/setup-canvaskit.js"
9
9
  },
10
10
  "title": "React Native Skia",
11
- "version": "1.12.0",
11
+ "version": "1.12.2",
12
12
  "description": "High-performance React Native Graphics using Skia",
13
13
  "main": "lib/module/index.js",
14
14
  "react-native": "src/index.ts",
@@ -29,7 +29,7 @@
29
29
  "jestSetup.mjs",
30
30
  "jestEnv.mjs",
31
31
  "cpp/**/*.{h,cpp}",
32
- "ios/**",
32
+ "apple/**",
33
33
  "libs/apple/*.xcframework/**",
34
34
  "react-native-skia.podspec",
35
35
  "scripts/setup-canvaskit.js",
@@ -40,10 +40,11 @@ export const useAnimatedImageValue = (
40
40
 
41
41
  // Update the current frame
42
42
  animatedImage.decodeNextFrame();
43
- if (currentFrame.value) {
44
- currentFrame.value.dispose();
45
- }
43
+ const oldFrame = currentFrame.value;
46
44
  currentFrame.value = animatedImage.getCurrentFrame();
45
+ if (oldFrame) {
46
+ oldFrame.dispose();
47
+ }
47
48
 
48
49
  // Update the last timestamp
49
50
  lastTimestamp.value = timestamp;
package/src/mock/index.ts CHANGED
@@ -21,8 +21,7 @@ export const Mock = (CanvasKit: CanvasKit) => {
21
21
  ...require("../animation"),
22
22
  ...require("../dom/types"),
23
23
  ...require("../dom/nodes"),
24
- // We could use the real Canvas if we mock the SkiaView component for node
25
- Canvas: Noop,
24
+ Canvas: require("react-native").View,
26
25
  // Skia Animations
27
26
  useValue: NoopValue,
28
27
  useComputedValue: NoopValue,
@@ -111,4 +111,38 @@ describe("Enums", () => {
111
111
  );
112
112
  checkEnum(ClipOp, CanvasKit.ClipOp);
113
113
  });
114
+ it("Should match color types with CanvasKit", () => {
115
+ const { CanvasKit } = setupSkia();
116
+ //expect(CanvasKit.ColorType.Unknown.value).toBe(ColorType.Unknown);
117
+ expect(CanvasKit.ColorType.Alpha_8.value).toBe(ColorTypeCanvasKit.Alpha_8);
118
+ expect(CanvasKit.ColorType.RGB_565.value).toBe(ColorTypeCanvasKit.RGB_565);
119
+ //expect(CanvasKit.ColorType.ARGB_4444.value).toBe(ColorType.ARGB_4444);
120
+ expect(CanvasKit.ColorType.RGBA_8888.value).toBe(
121
+ ColorTypeCanvasKit.RGBA_8888
122
+ );
123
+ //expect(CanvasKit.ColorType.RGB_888x.value).toBe(ColorType.RGB_888x);
124
+ expect(CanvasKit.ColorType.BGRA_8888.value).toBe(
125
+ ColorTypeCanvasKit.BGRA_8888
126
+ );
127
+ expect(CanvasKit.ColorType.RGBA_1010102.value).toBe(
128
+ ColorTypeCanvasKit.RGBA_1010102
129
+ );
130
+ //expect(CanvasKit.ColorType.BGRA_1010102.value).toBe(ColorType.BGRA_1010102);
131
+ expect(CanvasKit.ColorType.RGB_101010x.value).toBe(
132
+ ColorTypeCanvasKit.RGB_101010x
133
+ );
134
+ //expect(CanvasKit.ColorType.BGR_101010x.value).toBe(ColorType.BGR_101010x);
135
+ //expect(CanvasKit.ColorType.BGR_101010x_XR.value).toBe(ColorType.BGR_101010x_XR);
136
+ //expect(CanvasKit.ColorType.BGRA_10101010_XR.value).toBe(ColorType.BGRA_10101010_XR);
137
+ //expect(CanvasKit.ColorType.RGBA_10x6.value).toBe(ColorType.RGBA_10x6);
138
+ expect(CanvasKit.ColorType.Gray_8.value).toBe(ColorTypeCanvasKit.Gray_8);
139
+ //expect(CanvasKit.ColorType.RGBA_F16Norm.value).toBe(ColorType.RGBA_F16Norm);
140
+ expect(CanvasKit.ColorType.RGBA_F16.value).toBe(
141
+ ColorTypeCanvasKit.RGBA_F16
142
+ );
143
+ //expect(CanvasKit.ColorType.RGB_F16F16F16x.value).toBe(ColorType.RGB_F16F16F16x);
144
+ expect(CanvasKit.ColorType.RGBA_F32.value).toBe(
145
+ ColorTypeCanvasKit.RGBA_F32
146
+ );
147
+ });
114
148
  });
@@ -1,12 +1,13 @@
1
- import type { CanvasKit, EmbindEnumEntity, EmbindEnum } from "canvaskit-wasm";
1
+ import type { CanvasKit, EmbindEnumEntity } from "canvaskit-wasm";
2
2
 
3
3
  import type { SkJSIInstance } from "../types";
4
4
 
5
- export class NotImplementedOnRNWeb extends Error {
6
- constructor(msg?: string) {
7
- super(msg ?? "Not implemented on React Native Web");
5
+ export const throwNotImplementedOnRNWeb = <T>(): T => {
6
+ if (typeof jest !== "undefined") {
7
+ return jest.fn() as unknown as T;
8
8
  }
9
- }
9
+ throw new Error("Not implemented on React Native Web");
10
+ };
10
11
 
11
12
  export abstract class Host {
12
13
  readonly CanvasKit: CanvasKit;
@@ -41,11 +42,28 @@ export abstract class HostObject<T, N extends string> extends BaseHostObject<
41
42
  }
42
43
  }
43
44
 
44
- export const getEnum = (e: EmbindEnum, v: number): EmbindEnumEntity =>
45
- Object.values(e).find(({ value }) => value === v);
45
+ export const getEnum = (
46
+ CanvasKit: CanvasKit,
47
+ name: keyof CanvasKit,
48
+ v: number
49
+ ): EmbindEnumEntity => {
50
+ const e = CanvasKit[name];
51
+ if (typeof e !== "function") {
52
+ throw new Error(`${name} is not an number`);
53
+ }
54
+ const result = Object.values(e).find(({ value }) => value === v);
55
+ if (!result) {
56
+ throw new Error(
57
+ `Enum ${name} does not have value ${v} on React Native Web`
58
+ );
59
+ }
60
+ return result;
61
+ };
46
62
 
47
63
  export const optEnum = (
48
- e: EmbindEnum,
49
- value: number | undefined
50
- ): EmbindEnumEntity | undefined =>
51
- value === undefined ? undefined : getEnum(e, value);
64
+ CanvasKit: CanvasKit,
65
+ name: keyof CanvasKit,
66
+ v: number | undefined
67
+ ): EmbindEnumEntity | undefined => {
68
+ return v === undefined ? undefined : getEnum(CanvasKit, name, v);
69
+ };
@@ -124,8 +124,8 @@ export class JsiSkCanvas
124
124
  JsiSkImage.fromValue(img),
125
125
  left,
126
126
  top,
127
- getEnum(this.CanvasKit.FilterMode, fm),
128
- getEnum(this.CanvasKit.MipmapMode, mm),
127
+ getEnum(this.CanvasKit, "FilterMode", fm),
128
+ getEnum(this.CanvasKit, "MipmapMode", mm),
129
129
  paint ? JsiSkPaint.fromValue(paint) : paint
130
130
  );
131
131
  }
@@ -141,7 +141,7 @@ export class JsiSkCanvas
141
141
  JsiSkImage.fromValue(img),
142
142
  Array.from(JsiSkRect.fromValue(this.CanvasKit, center)),
143
143
  JsiSkRect.fromValue(this.CanvasKit, dest),
144
- getEnum(this.CanvasKit.FilterMode, filter),
144
+ getEnum(this.CanvasKit, "FilterMode", filter),
145
145
  paint ? JsiSkPaint.fromValue(paint) : paint
146
146
  );
147
147
  }
@@ -176,8 +176,8 @@ export class JsiSkCanvas
176
176
  JsiSkImage.fromValue(img),
177
177
  JsiSkRect.fromValue(this.CanvasKit, src),
178
178
  JsiSkRect.fromValue(this.CanvasKit, dest),
179
- getEnum(this.CanvasKit.FilterMode, fm),
180
- getEnum(this.CanvasKit.MipmapMode, mm),
179
+ getEnum(this.CanvasKit, "FilterMode", fm),
180
+ getEnum(this.CanvasKit, "MipmapMode", mm),
181
181
  paint ? JsiSkPaint.fromValue(paint) : paint
182
182
  );
183
183
  }
@@ -197,7 +197,7 @@ export class JsiSkCanvas
197
197
  drawVertices(verts: SkVertices, mode: BlendMode, paint: SkPaint) {
198
198
  this.ref.drawVertices(
199
199
  JsiSkVertices.fromValue(verts),
200
- getEnum(this.CanvasKit.BlendMode, mode),
200
+ getEnum(this.CanvasKit, "BlendMode", mode),
201
201
  JsiSkPaint.fromValue(paint)
202
202
  );
203
203
  }
@@ -213,7 +213,7 @@ export class JsiSkCanvas
213
213
  cubics.map(({ x, y }) => [x, y]).flat(),
214
214
  colors,
215
215
  texs ? texs.flatMap((p) => Array.from(JsiSkPoint.fromValue(p))) : texs,
216
- mode ? getEnum(this.CanvasKit.BlendMode, mode) : null,
216
+ mode ? getEnum(this.CanvasKit, "BlendMode", mode) : null,
217
217
  paint ? JsiSkPaint.fromValue(paint) : undefined
218
218
  );
219
219
  }
@@ -224,7 +224,7 @@ export class JsiSkCanvas
224
224
 
225
225
  drawPoints(mode: PointMode, points: SkPoint[], paint: SkPaint) {
226
226
  this.ref.drawPoints(
227
- getEnum(this.CanvasKit.PointMode, mode),
227
+ getEnum(this.CanvasKit, "PointMode", mode),
228
228
  points.map(({ x, y }) => [x, y]).flat(),
229
229
  JsiSkPaint.fromValue(paint)
230
230
  );
@@ -357,7 +357,7 @@ export class JsiSkCanvas
357
357
  drawColor(color: SkColor, blendMode?: BlendMode) {
358
358
  this.ref.drawColor(
359
359
  color,
360
- blendMode ? getEnum(this.CanvasKit.BlendMode, blendMode) : undefined
360
+ blendMode ? getEnum(this.CanvasKit, "BlendMode", blendMode) : undefined
361
361
  );
362
362
  }
363
363
 
@@ -368,7 +368,7 @@ export class JsiSkCanvas
368
368
  clipPath(path: SkPath, op: ClipOp, doAntiAlias: boolean) {
369
369
  this.ref.clipPath(
370
370
  JsiSkPath.fromValue(path),
371
- getEnum(this.CanvasKit.PathOp, op),
371
+ getEnum(this.CanvasKit, "PathOp", op),
372
372
  doAntiAlias
373
373
  );
374
374
  }
@@ -376,7 +376,7 @@ export class JsiSkCanvas
376
376
  clipRect(rect: SkRect, op: ClipOp, doAntiAlias: boolean) {
377
377
  this.ref.clipRect(
378
378
  JsiSkRect.fromValue(this.CanvasKit, rect),
379
- getEnum(this.CanvasKit.PathOp, op),
379
+ getEnum(this.CanvasKit, "PathOp", op),
380
380
  doAntiAlias
381
381
  );
382
382
  }
@@ -384,7 +384,7 @@ export class JsiSkCanvas
384
384
  clipRRect(rrect: InputRRect, op: ClipOp, doAntiAlias: boolean) {
385
385
  this.ref.clipRRect(
386
386
  JsiSkRRect.fromValue(this.CanvasKit, rrect),
387
- getEnum(this.CanvasKit.PathOp, op),
387
+ getEnum(this.CanvasKit, "PathOp", op),
388
388
  doAntiAlias
389
389
  );
390
390
  }
@@ -426,9 +426,9 @@ export class JsiSkCanvas
426
426
  ckSampling = sampling;
427
427
  } else if (sampling) {
428
428
  ckSampling = {
429
- filter: getEnum(this.CanvasKit.FilterMode, sampling.filter),
429
+ filter: getEnum(this.CanvasKit, "FilterMode", sampling.filter),
430
430
  mipmap: sampling.mipmap
431
- ? getEnum(this.CanvasKit.MipmapMode, sampling.mipmap)
431
+ ? getEnum(this.CanvasKit, "MipmapMode", sampling.mipmap)
432
432
  : this.CanvasKit.MipmapMode.None,
433
433
  };
434
434
  }
@@ -438,7 +438,7 @@ export class JsiSkCanvas
438
438
  dst,
439
439
  JsiSkPaint.fromValue(paint),
440
440
  blendMode
441
- ? getEnum(this.CanvasKit.BlendMode, blendMode)
441
+ ? getEnum(this.CanvasKit, "BlendMode", blendMode)
442
442
  : this.CanvasKit.BlendMode.DstOver,
443
443
  cls,
444
444
  ckSampling
@@ -450,8 +450,8 @@ export class JsiSkCanvas
450
450
  width: imageInfo.width,
451
451
  height: imageInfo.height,
452
452
  colorSpace: this.CanvasKit.ColorSpace.SRGB,
453
- alphaType: getEnum(this.CanvasKit.AlphaType, imageInfo.alphaType),
454
- colorType: getEnum(this.CanvasKit.ColorType, imageInfo.colorType),
453
+ alphaType: getEnum(this.CanvasKit, "AlphaType", imageInfo.alphaType),
454
+ colorType: getEnum(this.CanvasKit, "ColorType", imageInfo.colorType),
455
455
  };
456
456
  return this.ref.readPixels(srcX, srcY, pxInfo);
457
457
  }
@@ -31,7 +31,7 @@ export class JsiSkColorFilterFactory
31
31
  this.CanvasKit,
32
32
  this.CanvasKit.ColorFilter.MakeBlend(
33
33
  color,
34
- getEnum(this.CanvasKit.BlendMode, mode)
34
+ getEnum(this.CanvasKit, "BlendMode", mode)
35
35
  )
36
36
  );
37
37
  }
@@ -10,7 +10,7 @@ import type {
10
10
  SkTypeface,
11
11
  } from "../types";
12
12
 
13
- import { HostObject, NotImplementedOnRNWeb, getEnum } from "./Host";
13
+ import { HostObject, getEnum, throwNotImplementedOnRNWeb } from "./Host";
14
14
  import { JsiSkPaint } from "./JsiSkPaint";
15
15
  import { JsiSkPoint } from "./JsiSkPoint";
16
16
  import { JsiSkRect } from "./JsiSkRect";
@@ -21,8 +21,8 @@ export class JsiSkFont extends HostObject<Font, "Font"> implements SkFont {
21
21
  super(CanvasKit, ref, "Font");
22
22
  }
23
23
 
24
- measureText(_text: string, _paint?: SkPaint | undefined): SkRect {
25
- throw new NotImplementedOnRNWeb();
24
+ measureText(_text: string, _paint?: SkPaint | undefined) {
25
+ return throwNotImplementedOnRNWeb<SkRect>();
26
26
  }
27
27
 
28
28
  dispose = () => {
@@ -100,7 +100,7 @@ export class JsiSkFont extends HostObject<Font, "Font"> implements SkFont {
100
100
  }
101
101
 
102
102
  setEdging(edging: FontEdging) {
103
- this.ref.setEdging(getEnum(this.CanvasKit.FontEdging, edging));
103
+ this.ref.setEdging(getEnum(this.CanvasKit, "FontEdging", edging));
104
104
  }
105
105
 
106
106
  setEmbeddedBitmaps(embeddedBitmaps: boolean) {
@@ -108,7 +108,7 @@ export class JsiSkFont extends HostObject<Font, "Font"> implements SkFont {
108
108
  }
109
109
 
110
110
  setHinting(hinting: FontHinting) {
111
- this.ref.setHinting(getEnum(this.CanvasKit.FontHinting, hinting));
111
+ this.ref.setHinting(getEnum(this.CanvasKit, "FontHinting", hinting));
112
112
  }
113
113
 
114
114
  setLinearMetrics(linearMetrics: boolean) {
@@ -2,7 +2,7 @@ import type { CanvasKit, FontMgr } from "canvaskit-wasm";
2
2
 
3
3
  import type { FontStyle, SkFontMgr, SkTypeface } from "../types";
4
4
 
5
- import { HostObject, NotImplementedOnRNWeb } from "./Host";
5
+ import { HostObject, throwNotImplementedOnRNWeb } from "./Host";
6
6
 
7
7
  export class JsiSkFontMgr
8
8
  extends HostObject<FontMgr, "FontMgr">
@@ -20,7 +20,7 @@ export class JsiSkFontMgr
20
20
  getFamilyName(index: number) {
21
21
  return this.ref.getFamilyName(index);
22
22
  }
23
- matchFamilyStyle(_familyName: string, _fontStyle: FontStyle): SkTypeface {
24
- throw new NotImplementedOnRNWeb();
23
+ matchFamilyStyle(_familyName: string, _fontStyle: FontStyle) {
24
+ return throwNotImplementedOnRNWeb<SkTypeface>();
25
25
  }
26
26
  }
@@ -77,10 +77,10 @@ export class JsiSkImage extends HostObject<Image, "Image"> implements SkImage {
77
77
  return new JsiSkShader(
78
78
  this.CanvasKit,
79
79
  this.ref.makeShaderOptions(
80
- getEnum(this.CanvasKit.TileMode, tx),
81
- getEnum(this.CanvasKit.TileMode, ty),
82
- getEnum(this.CanvasKit.FilterMode, fm),
83
- getEnum(this.CanvasKit.MipmapMode, mm),
80
+ getEnum(this.CanvasKit, "TileMode", tx),
81
+ getEnum(this.CanvasKit, "TileMode", ty),
82
+ getEnum(this.CanvasKit, "FilterMode", fm),
83
+ getEnum(this.CanvasKit, "MipmapMode", mm),
84
84
  localMatrix ? JsiSkMatrix.fromValue(localMatrix) : undefined
85
85
  )
86
86
  );
@@ -96,8 +96,8 @@ export class JsiSkImage extends HostObject<Image, "Image"> implements SkImage {
96
96
  return new JsiSkShader(
97
97
  this.CanvasKit,
98
98
  this.ref.makeShaderCubic(
99
- getEnum(this.CanvasKit.TileMode, tx),
100
- getEnum(this.CanvasKit.TileMode, ty),
99
+ getEnum(this.CanvasKit, "TileMode", tx),
100
+ getEnum(this.CanvasKit, "TileMode", ty),
101
101
  B,
102
102
  C,
103
103
  localMatrix ? JsiSkMatrix.fromValue(localMatrix) : undefined
@@ -109,11 +109,13 @@ export class JsiSkImage extends HostObject<Image, "Image"> implements SkImage {
109
109
  let result: Uint8Array | null;
110
110
  if (fmt && quality) {
111
111
  result = this.ref.encodeToBytes(
112
- getEnum(this.CanvasKit.ImageFormat, fmt),
112
+ getEnum(this.CanvasKit, "ImageFormat", fmt),
113
113
  quality
114
114
  );
115
115
  } else if (fmt) {
116
- result = this.ref.encodeToBytes(getEnum(this.CanvasKit.ImageFormat, fmt));
116
+ result = this.ref.encodeToBytes(
117
+ getEnum(this.CanvasKit, "ImageFormat", fmt)
118
+ );
117
119
  } else {
118
120
  result = this.ref.encodeToBytes();
119
121
  }
@@ -137,11 +139,13 @@ export class JsiSkImage extends HostObject<Image, "Image"> implements SkImage {
137
139
  width: imageInfo?.width ?? info.width,
138
140
  height: imageInfo?.height ?? info.height,
139
141
  alphaType: getEnum(
140
- this.CanvasKit.AlphaType,
142
+ this.CanvasKit,
143
+ "AlphaType",
141
144
  (imageInfo ?? info).alphaType
142
145
  ),
143
146
  colorType: getEnum(
144
- this.CanvasKit.ColorType,
147
+ this.CanvasKit,
148
+ "ColorType",
145
149
  (imageInfo ?? info).colorType
146
150
  ),
147
151
  };
@@ -9,7 +9,7 @@ import type {
9
9
  ImageFactory,
10
10
  } from "../types";
11
11
 
12
- import { Host, getEnum } from "./Host";
12
+ import { Host, getEnum, throwNotImplementedOnRNWeb } from "./Host";
13
13
  import { JsiSkImage } from "./JsiSkImage";
14
14
  import { JsiSkData } from "./JsiSkData";
15
15
  import type { JsiSkSurface } from "./JsiSkSurface";
@@ -75,17 +75,17 @@ export class JsiSkImageFactory extends Host implements ImageFactory {
75
75
  return new JsiSkImage(this.CanvasKit, image);
76
76
  }
77
77
 
78
- MakeImageFromNativeTextureUnstable(): SkImage {
79
- throw new Error("MakeImageFromNativeTexture is not implemented on web");
78
+ MakeImageFromNativeTextureUnstable() {
79
+ return throwNotImplementedOnRNWeb<SkImage>();
80
80
  }
81
81
 
82
82
  MakeImage(info: ImageInfo, data: SkData, bytesPerRow: number) {
83
83
  // see toSkImageInfo() from canvaskit
84
84
  const image = this.CanvasKit.MakeImage(
85
85
  {
86
- alphaType: getEnum(this.CanvasKit.AlphaType, info.alphaType),
86
+ alphaType: getEnum(this.CanvasKit, "AlphaType", info.alphaType),
87
87
  colorSpace: this.CanvasKit.ColorSpace.SRGB,
88
- colorType: getEnum(this.CanvasKit.ColorType, info.colorType),
88
+ colorType: getEnum(this.CanvasKit, "ColorType", info.colorType),
89
89
  height: info.height,
90
90
  width: info.width,
91
91
  },