@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,344 @@
1
+ //
2
+ // SkiaCVPixelBufferUtils.mm
3
+ // react-native-skia
4
+ //
5
+ // Created by Marc Rousavy on 10.04.24.
6
+ //
7
+
8
+ #import "SkiaCVPixelBufferUtils.h"
9
+
10
+ #pragma clang diagnostic push
11
+ #pragma clang diagnostic ignored "-Wdocumentation"
12
+
13
+ #import "include/core/SkCanvas.h"
14
+ #import "include/core/SkColorSpace.h"
15
+
16
+ #import <CoreMedia/CMSampleBuffer.h>
17
+ #import <CoreVideo/CVMetalTextureCache.h>
18
+
19
+ #import <include/gpu/ganesh/GrBackendSurface.h>
20
+ #import <include/gpu/ganesh/GrDirectContext.h>
21
+ #import <include/gpu/ganesh/SkImageGanesh.h>
22
+ #import <include/gpu/ganesh/SkSurfaceGanesh.h>
23
+ #import <include/gpu/ganesh/mtl/GrMtlBackendContext.h>
24
+ #import <include/gpu/ganesh/mtl/GrMtlBackendSurface.h>
25
+ #import <include/gpu/ganesh/mtl/GrMtlDirectContext.h>
26
+ #import <include/gpu/ganesh/mtl/SkSurfaceMetal.h>
27
+
28
+ #pragma clang diagnostic pop
29
+
30
+ #include <TargetConditionals.h>
31
+ #if TARGET_RT_BIG_ENDIAN
32
+ #define FourCC2Str(fourcc) \
33
+ (const char[]) { \
34
+ *((char *)&fourcc), *(((char *)&fourcc) + 1), *(((char *)&fourcc) + 2), \
35
+ *(((char *)&fourcc) + 3), 0 \
36
+ }
37
+ #else
38
+ #define FourCC2Str(fourcc) \
39
+ (const char[]) { \
40
+ *(((char *)&fourcc) + 3), *(((char *)&fourcc) + 2), \
41
+ *(((char *)&fourcc) + 1), *(((char *)&fourcc) + 0), 0 \
42
+ }
43
+ #endif
44
+
45
+ // pragma MARK: TextureHolder
46
+
47
+ TextureHolder::TextureHolder(CVMetalTextureRef texture) : _texture(texture) {}
48
+ TextureHolder::~TextureHolder() {
49
+ // ARC will now automatically release _texture.
50
+ CFRelease(_texture);
51
+ }
52
+
53
+ GrBackendTexture TextureHolder::toGrBackendTexture() {
54
+ // Unwrap the underlying MTLTexture
55
+ id<MTLTexture> mtlTexture = CVMetalTextureGetTexture(_texture);
56
+ if (mtlTexture == nil) [[unlikely]] {
57
+ throw std::runtime_error(
58
+ "Failed to get MTLTexture from CVMetalTextureRef!");
59
+ }
60
+
61
+ // Wrap MTLTexture in Skia's GrBackendTexture
62
+ GrMtlTextureInfo textureInfo;
63
+ textureInfo.fTexture.retain((__bridge void *)mtlTexture);
64
+ GrBackendTexture texture =
65
+ GrBackendTextures::MakeMtl((int)mtlTexture.width, (int)mtlTexture.height,
66
+ skgpu::Mipmapped::kNo, textureInfo);
67
+ return texture;
68
+ }
69
+
70
+ MultiTexturesHolder::~MultiTexturesHolder() {
71
+ for (TextureHolder *texture : _textures) {
72
+ delete texture;
73
+ }
74
+ }
75
+
76
+ void MultiTexturesHolder::addTexture(TextureHolder *texture) {
77
+ _textures.push_back(texture);
78
+ }
79
+
80
+ // pragma MARK: Base
81
+
82
+ SkiaCVPixelBufferUtils::CVPixelBufferBaseFormat
83
+ SkiaCVPixelBufferUtils::getCVPixelBufferBaseFormat(
84
+ CVPixelBufferRef pixelBuffer) {
85
+ OSType format = CVPixelBufferGetPixelFormatType(pixelBuffer);
86
+
87
+ switch (format) {
88
+ // 8-bit YUV formats
89
+ case kCVPixelFormatType_420YpCbCr8Planar:
90
+ case kCVPixelFormatType_420YpCbCr8PlanarFullRange:
91
+ case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange:
92
+ case kCVPixelFormatType_420YpCbCr8BiPlanarFullRange:
93
+ // 10-bit YUV formats
94
+ case kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange:
95
+ case kCVPixelFormatType_420YpCbCr10BiPlanarFullRange:
96
+ case kCVPixelFormatType_422YpCbCr10BiPlanarVideoRange:
97
+ case kCVPixelFormatType_422YpCbCr10BiPlanarFullRange:
98
+ case kCVPixelFormatType_444YpCbCr10BiPlanarVideoRange:
99
+ case kCVPixelFormatType_444YpCbCr10BiPlanarFullRange:
100
+ return CVPixelBufferBaseFormat::yuv;
101
+ case kCVPixelFormatType_24RGB:
102
+ case kCVPixelFormatType_24BGR:
103
+ case kCVPixelFormatType_32ARGB:
104
+ case kCVPixelFormatType_32BGRA:
105
+ case kCVPixelFormatType_32ABGR:
106
+ case kCVPixelFormatType_32RGBA:
107
+ return CVPixelBufferBaseFormat::rgb;
108
+ default:
109
+ [[unlikely]] throw std::runtime_error(
110
+ "CVPixelBuffer has unknown pixel format! " +
111
+ std::string("Expected: any RGB or YUV format, Received: ") +
112
+ std::string(FourCC2Str(format)));
113
+ }
114
+ }
115
+
116
+ // pragma MARK: RGB
117
+
118
+ SkColorType SkiaCVPixelBufferUtils::RGB::getCVPixelBufferColorType(
119
+ CVPixelBufferRef pixelBuffer) {
120
+ OSType format = CVPixelBufferGetPixelFormatType(pixelBuffer);
121
+
122
+ switch (format) {
123
+ case kCVPixelFormatType_32BGRA:
124
+ [[likely]] return kBGRA_8888_SkColorType;
125
+ case kCVPixelFormatType_32RGBA:
126
+ return kRGBA_8888_SkColorType;
127
+ // This can be extended with branches for specific RGB formats if Apple
128
+ // uses new formats.
129
+ default:
130
+ [[unlikely]] throw std::runtime_error(
131
+ "CVPixelBuffer has unknown RGB format! " +
132
+ std::string(FourCC2Str(format)));
133
+ }
134
+ }
135
+
136
+ sk_sp<SkImage> SkiaCVPixelBufferUtils::RGB::makeSkImageFromCVPixelBuffer(
137
+ GrDirectContext *context, CVPixelBufferRef pixelBuffer) {
138
+ // 1. Get Skia color type for RGB buffer
139
+ SkColorType colorType = getCVPixelBufferColorType(pixelBuffer);
140
+
141
+ // 2. Get texture, RGB buffers only have one plane
142
+ TextureHolder *texture =
143
+ getSkiaTextureForCVPixelBufferPlane(pixelBuffer, /* planeIndex */ 0);
144
+
145
+ // 3. Convert to image with manual memory cleanup
146
+ return SkImages::BorrowTextureFrom(
147
+ context, texture->toGrBackendTexture(), kTopLeft_GrSurfaceOrigin,
148
+ colorType, kOpaque_SkAlphaType, nullptr,
149
+ [](void *texture) { delete (TextureHolder *)texture; }, (void *)texture);
150
+ }
151
+
152
+ // pragma MARK: YUV
153
+
154
+ sk_sp<SkImage> SkiaCVPixelBufferUtils::YUV::makeSkImageFromCVPixelBuffer(
155
+ GrDirectContext *context, CVPixelBufferRef pixelBuffer) {
156
+ // 1. Get all planes (YUV, Y_UV, Y_U_V or Y_U_V_A)
157
+ size_t planesCount = CVPixelBufferGetPlaneCount(pixelBuffer);
158
+ MultiTexturesHolder *texturesHolder = new MultiTexturesHolder();
159
+ GrBackendTexture textures[planesCount];
160
+
161
+ for (size_t planeIndex = 0; planeIndex < planesCount; planeIndex++) {
162
+ TextureHolder *textureHolder =
163
+ getSkiaTextureForCVPixelBufferPlane(pixelBuffer, planeIndex);
164
+ textures[planeIndex] = textureHolder->toGrBackendTexture();
165
+ texturesHolder->addTexture(textureHolder);
166
+ }
167
+
168
+ // 2. Wrap info about buffer
169
+ SkYUVAInfo info = getYUVAInfoForCVPixelBuffer(pixelBuffer);
170
+
171
+ // 3. Wrap as YUVA textures type
172
+ GrYUVABackendTextures yuvaTextures(info, textures, kTopLeft_GrSurfaceOrigin);
173
+
174
+ // 4. Wrap into SkImage type with manualy memory cleanup
175
+ return SkImages::TextureFromYUVATextures(
176
+ context, yuvaTextures, nullptr,
177
+ [](void *textureHolders) {
178
+ delete (MultiTexturesHolder *)textureHolders;
179
+ },
180
+ (void *)texturesHolder);
181
+ }
182
+
183
+ SkYUVAInfo SkiaCVPixelBufferUtils::YUV::getYUVAInfoForCVPixelBuffer(
184
+ CVPixelBufferRef pixelBuffer) {
185
+ size_t width = CVPixelBufferGetWidth(pixelBuffer);
186
+ size_t height = CVPixelBufferGetHeight(pixelBuffer);
187
+ SkISize size =
188
+ SkISize::Make(static_cast<int>(width), static_cast<int>(height));
189
+
190
+ OSType format = CVPixelBufferGetPixelFormatType(pixelBuffer);
191
+ SkYUVAInfo::PlaneConfig planeConfig = getPlaneConfig(format);
192
+ SkYUVAInfo::Subsampling subsampling = getSubsampling(format);
193
+ SkYUVColorSpace colorspace = getColorspace(format);
194
+
195
+ return SkYUVAInfo(size, planeConfig, subsampling, colorspace);
196
+ }
197
+
198
+ // pragma MARK: YUV getPlaneConfig()
199
+
200
+ SkYUVAInfo::PlaneConfig
201
+ SkiaCVPixelBufferUtils::YUV::getPlaneConfig(OSType pixelFormat) {
202
+ switch (pixelFormat) {
203
+ case kCVPixelFormatType_420YpCbCr8Planar:
204
+ case kCVPixelFormatType_420YpCbCr8PlanarFullRange:
205
+ return SkYUVAInfo::PlaneConfig::kYUV;
206
+ case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange:
207
+ case kCVPixelFormatType_420YpCbCr8BiPlanarFullRange:
208
+ case kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange:
209
+ case kCVPixelFormatType_420YpCbCr10BiPlanarFullRange:
210
+ case kCVPixelFormatType_422YpCbCr10BiPlanarVideoRange:
211
+ case kCVPixelFormatType_422YpCbCr10BiPlanarFullRange:
212
+ case kCVPixelFormatType_444YpCbCr10BiPlanarVideoRange:
213
+ case kCVPixelFormatType_444YpCbCr10BiPlanarFullRange:
214
+ [[likely]] return SkYUVAInfo::PlaneConfig::kY_UV;
215
+
216
+ // This can be extended with branches for specific YUV formats if Apple
217
+ // uses new formats.
218
+ default:
219
+ [[unlikely]] throw std::runtime_error("Invalid pixel format! " +
220
+ std::string(FourCC2Str(pixelFormat)));
221
+ }
222
+ }
223
+
224
+ // pragma MARK: YUV getSubsampling()
225
+
226
+ SkYUVAInfo::Subsampling
227
+ SkiaCVPixelBufferUtils::YUV::getSubsampling(OSType pixelFormat) {
228
+ switch (pixelFormat) {
229
+ case kCVPixelFormatType_420YpCbCr8Planar:
230
+ case kCVPixelFormatType_420YpCbCr8PlanarFullRange:
231
+ case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange:
232
+ case kCVPixelFormatType_420YpCbCr8BiPlanarFullRange:
233
+ case kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange:
234
+ case kCVPixelFormatType_420YpCbCr10BiPlanarFullRange:
235
+ [[likely]] return SkYUVAInfo::Subsampling::k420;
236
+ case kCVPixelFormatType_422YpCbCr10BiPlanarVideoRange:
237
+ case kCVPixelFormatType_422YpCbCr10BiPlanarFullRange:
238
+ return SkYUVAInfo::Subsampling::k422;
239
+ case kCVPixelFormatType_444YpCbCr10BiPlanarVideoRange:
240
+ case kCVPixelFormatType_444YpCbCr10BiPlanarFullRange:
241
+ return SkYUVAInfo::Subsampling::k444;
242
+ // This can be extended with branches for specific YUV formats if Apple
243
+ // uses new formats.
244
+ default:
245
+ [[unlikely]] throw std::runtime_error("Invalid pixel format! " +
246
+ std::string(FourCC2Str(pixelFormat)));
247
+ }
248
+ }
249
+
250
+ // pragma MARK: YUV getColorspace()
251
+
252
+ SkYUVColorSpace SkiaCVPixelBufferUtils::YUV::getColorspace(OSType pixelFormat) {
253
+ switch (pixelFormat) {
254
+ case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange:
255
+ [[likely]]
256
+ // 8-bit limited
257
+ return SkYUVColorSpace::kRec709_Limited_SkYUVColorSpace;
258
+ case kCVPixelFormatType_420YpCbCr8Planar:
259
+ case kCVPixelFormatType_420YpCbCr8PlanarFullRange:
260
+ case kCVPixelFormatType_420YpCbCr8BiPlanarFullRange:
261
+ [[likely]]
262
+ // 8-bit full
263
+ return SkYUVColorSpace::kRec709_Full_SkYUVColorSpace;
264
+ case kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange:
265
+ case kCVPixelFormatType_422YpCbCr10BiPlanarVideoRange:
266
+ case kCVPixelFormatType_444YpCbCr10BiPlanarVideoRange:
267
+ // 10-bit limited
268
+ return SkYUVColorSpace::kBT2020_10bit_Limited_SkYUVColorSpace;
269
+ case kCVPixelFormatType_420YpCbCr10BiPlanarFullRange:
270
+ case kCVPixelFormatType_422YpCbCr10BiPlanarFullRange:
271
+ case kCVPixelFormatType_444YpCbCr10BiPlanarFullRange:
272
+ // 10-bit full
273
+ return SkYUVColorSpace::kBT2020_10bit_Full_SkYUVColorSpace;
274
+ // This can be extended with branches for specific YUV formats if Apple
275
+ // uses new formats.
276
+ default:
277
+ [[unlikely]] throw std::runtime_error("Invalid pixel format! " +
278
+ std::string(FourCC2Str(pixelFormat)));
279
+ }
280
+ }
281
+
282
+ // pragma MARK: CVPixelBuffer -> Skia Texture
283
+
284
+ TextureHolder *SkiaCVPixelBufferUtils::getSkiaTextureForCVPixelBufferPlane(
285
+ CVPixelBufferRef pixelBuffer, size_t planeIndex) {
286
+ // 1. Get cache
287
+ CVMetalTextureCacheRef textureCache = getTextureCache();
288
+
289
+ // 2. Get MetalTexture from CMSampleBuffer
290
+ size_t width = CVPixelBufferGetWidthOfPlane(pixelBuffer, planeIndex);
291
+ size_t height = CVPixelBufferGetHeightOfPlane(pixelBuffer, planeIndex);
292
+ MTLPixelFormat pixelFormat =
293
+ getMTLPixelFormatForCVPixelBufferPlane(pixelBuffer, planeIndex);
294
+
295
+ CVMetalTextureRef textureHolder;
296
+ CVReturn result = CVMetalTextureCacheCreateTextureFromImage(
297
+ kCFAllocatorDefault, textureCache, pixelBuffer, nil, pixelFormat, width,
298
+ height, planeIndex, &textureHolder);
299
+
300
+ if (result != kCVReturnSuccess) [[unlikely]] {
301
+ throw std::runtime_error(
302
+ "Failed to create Metal Texture from CMSampleBuffer! Result: " +
303
+ std::to_string(result));
304
+ }
305
+
306
+ return new TextureHolder(textureHolder);
307
+ }
308
+
309
+ // pragma MARK: getTextureCache()
310
+
311
+ CVMetalTextureCacheRef SkiaCVPixelBufferUtils::getTextureCache() {
312
+ static CVMetalTextureCacheRef textureCache = nil;
313
+ if (textureCache == nil) {
314
+ // Create a new Texture Cache
315
+ auto result = CVMetalTextureCacheCreate(kCFAllocatorDefault, nil,
316
+ MTLCreateSystemDefaultDevice(), nil,
317
+ &textureCache);
318
+ if (result != kCVReturnSuccess || textureCache == nil) {
319
+ throw std::runtime_error("Failed to create Metal Texture Cache!");
320
+ }
321
+ }
322
+ return textureCache;
323
+ }
324
+
325
+ // pragma MARK: Get CVPixelBuffer MTLPixelFormat
326
+
327
+ MTLPixelFormat SkiaCVPixelBufferUtils::getMTLPixelFormatForCVPixelBufferPlane(
328
+ CVPixelBufferRef pixelBuffer, size_t planeIndex) {
329
+ size_t width = CVPixelBufferGetWidthOfPlane(pixelBuffer, planeIndex);
330
+ size_t bytesPerRow =
331
+ CVPixelBufferGetBytesPerRowOfPlane(pixelBuffer, planeIndex);
332
+ double bytesPerPixel = round(static_cast<double>(bytesPerRow) / width);
333
+ if (bytesPerPixel == 1) {
334
+ return MTLPixelFormatR8Unorm;
335
+ } else if (bytesPerPixel == 2) {
336
+ return MTLPixelFormatRG8Unorm;
337
+ } else if (bytesPerPixel == 4) {
338
+ return MTLPixelFormatBGRA8Unorm;
339
+ } else [[unlikely]] {
340
+ throw std::runtime_error("Invalid bytes per row! Expected 1 (R), 2 (RG) or "
341
+ "4 (RGBA), but received " +
342
+ std::to_string(bytesPerPixel));
343
+ }
344
+ }
@@ -0,0 +1,25 @@
1
+ #pragma once
2
+
3
+ #import <React/RCTBridge.h>
4
+
5
+ #import "RNSkManager.h"
6
+
7
+ @interface SkiaManager : NSObject
8
+
9
+ - (std::shared_ptr<RNSkia::RNSkManager>)skManager;
10
+
11
+ - (instancetype)init NS_UNAVAILABLE;
12
+
13
+ - (void)invalidate;
14
+
15
+ - (instancetype)initWithBridge:(RCTBridge *)bridge
16
+ jsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)
17
+ jsInvoker;
18
+
19
+ #ifdef RCT_NEW_ARCH_ENABLED
20
+ // Fabric components do not have a better way to interact with TurboModules.
21
+ // Workaround to get the SkManager instance from singleton.
22
+ + (std::shared_ptr<RNSkia::RNSkManager>)latestActiveSkManager;
23
+ #endif // RCT_NEW_ARCH_ENABLED
24
+
25
+ @end
@@ -0,0 +1,62 @@
1
+ #import "SkiaManager.h"
2
+
3
+ #import <Foundation/Foundation.h>
4
+
5
+ #import <React/RCTBridge+Private.h>
6
+ #import <React/RCTBridge.h>
7
+ #import <React/RCTUIManager.h>
8
+
9
+ #import "RNSkApplePlatformContext.h"
10
+
11
+ static __weak SkiaManager *sharedInstance = nil;
12
+
13
+ @implementation SkiaManager {
14
+ std::shared_ptr<RNSkia::RNSkManager> _skManager;
15
+ __weak RCTBridge *weakBridge;
16
+ }
17
+
18
+ - (std::shared_ptr<RNSkia::RNSkManager>)skManager {
19
+ return _skManager;
20
+ }
21
+
22
+ - (void)invalidate {
23
+ if (_skManager != nullptr) {
24
+ _skManager->invalidate();
25
+ }
26
+ _skManager = nullptr;
27
+ }
28
+
29
+ - (instancetype)initWithBridge:(RCTBridge *)bridge
30
+ jsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)
31
+ jsInvoker {
32
+ self = [super init];
33
+ if (self) {
34
+ sharedInstance = self;
35
+ RCTCxxBridge *cxxBridge = (RCTCxxBridge *)bridge;
36
+ if (cxxBridge.runtime) {
37
+
38
+ facebook::jsi::Runtime *jsRuntime =
39
+ (facebook::jsi::Runtime *)cxxBridge.runtime;
40
+
41
+ // Create the RNSkiaManager (cross platform)
42
+ _skManager = std::make_shared<RNSkia::RNSkManager>(
43
+ jsRuntime, jsInvoker,
44
+ std::make_shared<RNSkia::RNSkApplePlatformContext>(bridge, jsInvoker));
45
+ }
46
+ }
47
+ return self;
48
+ }
49
+
50
+ - (void)dealloc {
51
+ sharedInstance = nil;
52
+ }
53
+
54
+ #ifdef RCT_NEW_ARCH_ENABLED
55
+ + (std::shared_ptr<RNSkia::RNSkManager>)latestActiveSkManager {
56
+ if (sharedInstance != nil) {
57
+ return [sharedInstance skManager];
58
+ }
59
+ return nullptr;
60
+ }
61
+ #endif // RCT_NEW_ARCH_ENABLED
62
+ @end
@@ -0,0 +1,7 @@
1
+ #ifdef RCT_NEW_ARCH_ENABLED
2
+ #import "SkiaUIView.h"
3
+
4
+ @interface SkiaPictureView : SkiaUIView
5
+
6
+ @end
7
+ #endif // RCT_NEW_ARCH_ENABLED
@@ -0,0 +1,66 @@
1
+ #ifdef RCT_NEW_ARCH_ENABLED
2
+ #import "SkiaPictureView.h"
3
+
4
+ #import "RNSkAppleView.h"
5
+ #import "RNSkPictureView.h"
6
+ #import "RNSkPlatformContext.h"
7
+
8
+ #import "RNSkiaModule.h"
9
+ #import "SkiaManager.h"
10
+ #import "SkiaUIView.h"
11
+
12
+ #import <React/RCTBridge+Private.h>
13
+ #import <React/RCTConversions.h>
14
+ #import <React/RCTFabricComponentsPlugins.h>
15
+
16
+ #import <react/renderer/components/rnskia/ComponentDescriptors.h>
17
+ #import <react/renderer/components/rnskia/EventEmitters.h>
18
+ #import <react/renderer/components/rnskia/Props.h>
19
+ #import <react/renderer/components/rnskia/RCTComponentViewHelpers.h>
20
+
21
+ using namespace facebook::react;
22
+
23
+ @implementation SkiaPictureView
24
+
25
+ - (instancetype)initWithFrame:(CGRect)frame {
26
+ if (self = [super initWithFrame:frame]) {
27
+ // Pass SkManager as a raw pointer to avoid circular dependencies
28
+ auto skManager = [SkiaManager latestActiveSkManager].get();
29
+ [self initCommon:skManager
30
+ factory:[](std::shared_ptr<RNSkia::RNSkPlatformContext> context) {
31
+ return std::make_shared<RNSkAppleView<RNSkia::RNSkPictureView>>(
32
+ context);
33
+ }];
34
+ static const auto defaultProps =
35
+ std::make_shared<const SkiaPictureViewProps>();
36
+ _props = defaultProps;
37
+ }
38
+ return self;
39
+ }
40
+
41
+ #pragma mark - RCTComponentViewProtocol
42
+
43
+ + (ComponentDescriptorProvider)componentDescriptorProvider {
44
+ return concreteComponentDescriptorProvider<
45
+ SkiaPictureViewComponentDescriptor>();
46
+ }
47
+
48
+ - (void)updateProps:(const Props::Shared &)props
49
+ oldProps:(const Props::Shared &)oldProps {
50
+ const auto &newProps =
51
+ *std::static_pointer_cast<const SkiaPictureViewProps>(props);
52
+ [super updateProps:props oldProps:oldProps];
53
+ int nativeId =
54
+ [[RCTConvert NSString:RCTNSStringFromString(newProps.nativeId)] intValue];
55
+ [self setNativeId:nativeId];
56
+ [self setDebugMode:newProps.debug];
57
+ [self setOpaque:newProps.opaque];
58
+ }
59
+
60
+ @end
61
+
62
+ Class<RCTComponentViewProtocol> SkiaPictureViewCls(void) {
63
+ return SkiaPictureView.class;
64
+ }
65
+
66
+ #endif // RCT_NEW_ARCH_ENABLED
@@ -0,0 +1,8 @@
1
+
2
+ #pragma once
3
+
4
+ #import <React/RCTViewManager.h>
5
+
6
+ @interface SkiaPictureViewManager : RCTViewManager
7
+
8
+ @end
@@ -0,0 +1,55 @@
1
+
2
+ #include "SkiaPictureViewManager.h"
3
+ #include <React/RCTBridge+Private.h>
4
+
5
+ #include "RNSkAppleView.h"
6
+ #include "RNSkPictureView.h"
7
+ #include "RNSkPlatformContext.h"
8
+
9
+ #include "RNSkiaModule.h"
10
+ #include "SkiaManager.h"
11
+ #include "SkiaUIView.h"
12
+
13
+ @implementation SkiaPictureViewManager
14
+
15
+ RCT_EXPORT_MODULE(SkiaPictureView)
16
+
17
+ - (SkiaManager *)skiaManager {
18
+ auto bridge = self.bridge;
19
+ RCTAssert(bridge, @"Bridge must not be nil.");
20
+ auto skiaModule = (RNSkiaModule *)[bridge moduleForName:@"RNSkiaModule"];
21
+ return [skiaModule manager];
22
+ }
23
+
24
+ RCT_CUSTOM_VIEW_PROPERTY(nativeID, NSNumber, SkiaUIView) {
25
+ // Get parameter
26
+ int nativeId = [[RCTConvert NSString:json] intValue];
27
+ [(SkiaUIView *)view setNativeId:nativeId];
28
+ }
29
+
30
+ RCT_CUSTOM_VIEW_PROPERTY(debug, BOOL, SkiaUIView) {
31
+ bool debug = json != NULL ? [RCTConvert BOOL:json] : false;
32
+ [(SkiaUIView *)view setDebugMode:debug];
33
+ }
34
+
35
+ RCT_CUSTOM_VIEW_PROPERTY(opaque, BOOL, SkiaUIView) {
36
+ bool opaque = json != NULL ? [RCTConvert BOOL:json] : false;
37
+ [(SkiaUIView *)view setOpaque:opaque];
38
+ }
39
+
40
+ #if !TARGET_OS_OSX
41
+ - (UIView *)view {
42
+ #else
43
+ - (RCTUIView *)view {
44
+ #endif // !TARGET_OS_OSX
45
+ auto skManager = [[self skiaManager] skManager];
46
+ // Pass SkManager as a raw pointer to avoid circular dependenciesr
47
+ return [[SkiaUIView alloc]
48
+ initWithManager:skManager.get()
49
+ factory:[](std::shared_ptr<RNSkia::RNSkPlatformContext> context) {
50
+ return std::make_shared<RNSkAppleView<RNSkia::RNSkPictureView>>(
51
+ context);
52
+ }];
53
+ }
54
+
55
+ @end
@@ -0,0 +1,45 @@
1
+ #pragma once
2
+
3
+ #import <memory>
4
+ #import <string>
5
+
6
+ #import <CoreFoundation/CoreFoundation.h>
7
+ #if !TARGET_OS_OSX
8
+ #import <UIKit/UIKit.h>
9
+ #else
10
+ #import <React/RCTUIKit.h>
11
+ #endif // !TARGET_OS_OSX
12
+
13
+ #import "RNSkManager.h"
14
+ #import "RNSkAppleView.h"
15
+ #import "SkiaManager.h"
16
+
17
+ #if RCT_NEW_ARCH_ENABLED
18
+ #import <React/RCTViewComponentView.h>
19
+ #endif // RCT_NEW_ARCH_ENABLED
20
+
21
+ @interface SkiaUIView :
22
+ #if RCT_NEW_ARCH_ENABLED
23
+ RCTViewComponentView
24
+ #else
25
+ #if !TARGET_OS_OSX
26
+ UIView
27
+ #else
28
+ RCTUIView
29
+ #endif // !TARGET_OS_OSX
30
+ #endif // RCT_NEW_ARCH_ENABLED
31
+
32
+ - (instancetype)
33
+ initWithManager:(RNSkia::RNSkManager *)manager
34
+ factory:(std::function<std::shared_ptr<RNSkBaseAppleView>(
35
+ std::shared_ptr<RNSkia::RNSkPlatformContext>)>)factory;
36
+ - (void)initCommon:(RNSkia::RNSkManager *)manager
37
+ factory:(std::function<std::shared_ptr<RNSkBaseAppleView>(
38
+ std::shared_ptr<RNSkia::RNSkPlatformContext>)>)factory;
39
+ - (std::shared_ptr<RNSkBaseAppleView>)impl;
40
+
41
+ - (void)setDebugMode:(bool)debugMode;
42
+ - (void)setOpaque:(bool)opaque;
43
+ - (void)setNativeId:(size_t)nativeId;
44
+
45
+ @end