@shopify/react-native-skia 1.12.1 → 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.
- package/apple/MetalContext.h +129 -0
- package/apple/MetalContext.mm +34 -0
- package/apple/MetalWindowContext.h +39 -0
- package/apple/MetalWindowContext.mm +64 -0
- package/apple/RNSkApplePlatformContext.h +79 -0
- package/apple/RNSkApplePlatformContext.mm +303 -0
- package/apple/RNSkAppleVideo.h +51 -0
- package/apple/RNSkAppleVideo.mm +137 -0
- package/apple/RNSkAppleView.h +37 -0
- package/apple/RNSkAppleView.mm +35 -0
- package/apple/RNSkMetalCanvasProvider.h +38 -0
- package/apple/RNSkMetalCanvasProvider.mm +108 -0
- package/apple/RNSkiaModule.h +20 -0
- package/apple/RNSkiaModule.mm +55 -0
- package/apple/SkiaCVPixelBufferUtils.h +119 -0
- package/apple/SkiaCVPixelBufferUtils.mm +344 -0
- package/apple/SkiaManager.h +25 -0
- package/apple/SkiaManager.mm +62 -0
- package/apple/SkiaPictureView.h +7 -0
- package/apple/SkiaPictureView.mm +66 -0
- package/apple/SkiaPictureViewManager.h +8 -0
- package/apple/SkiaPictureViewManager.mm +55 -0
- package/apple/SkiaUIView.h +45 -0
- package/apple/SkiaUIView.mm +172 -0
- package/apple/ViewScreenshotService.h +25 -0
- package/apple/ViewScreenshotService.mm +89 -0
- package/lib/commonjs/skia/web/Host.d.ts +3 -3
- package/lib/commonjs/skia/web/Host.js +16 -4
- package/lib/commonjs/skia/web/Host.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkCanvas.js +15 -15
- package/lib/commonjs/skia/web/JsiSkCanvas.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js +1 -1
- package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkFont.js +2 -2
- package/lib/commonjs/skia/web/JsiSkFont.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkImage.js +6 -6
- package/lib/commonjs/skia/web/JsiSkImage.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkImageFactory.js +2 -2
- package/lib/commonjs/skia/web/JsiSkImageFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js +3 -3
- package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js +1 -1
- package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPaint.js +3 -3
- package/lib/commonjs/skia/web/JsiSkPaint.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPath.js +4 -4
- package/lib/commonjs/skia/web/JsiSkPath.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js +1 -1
- package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPathFactory.js +1 -1
- package/lib/commonjs/skia/web/JsiSkPathFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPicture.js +1 -1
- package/lib/commonjs/skia/web/JsiSkPicture.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkShaderFactory.js +5 -5
- package/lib/commonjs/skia/web/JsiSkShaderFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkVerticesFactory.js +1 -1
- package/lib/commonjs/skia/web/JsiSkVerticesFactory.js.map +1 -1
- package/lib/module/skia/web/Host.d.ts +3 -3
- package/lib/module/skia/web/Host.js +16 -4
- package/lib/module/skia/web/Host.js.map +1 -1
- package/lib/module/skia/web/JsiSkCanvas.js +15 -15
- package/lib/module/skia/web/JsiSkCanvas.js.map +1 -1
- package/lib/module/skia/web/JsiSkColorFilterFactory.js +1 -1
- package/lib/module/skia/web/JsiSkColorFilterFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkFont.js +2 -2
- package/lib/module/skia/web/JsiSkFont.js.map +1 -1
- package/lib/module/skia/web/JsiSkImage.js +6 -6
- package/lib/module/skia/web/JsiSkImage.js.map +1 -1
- package/lib/module/skia/web/JsiSkImageFactory.js +2 -2
- package/lib/module/skia/web/JsiSkImageFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkImageFilterFactory.js +3 -3
- package/lib/module/skia/web/JsiSkImageFilterFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkMaskFilterFactory.js +1 -1
- package/lib/module/skia/web/JsiSkMaskFilterFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkPaint.js +3 -3
- package/lib/module/skia/web/JsiSkPaint.js.map +1 -1
- package/lib/module/skia/web/JsiSkPath.js +4 -4
- package/lib/module/skia/web/JsiSkPath.js.map +1 -1
- package/lib/module/skia/web/JsiSkPathEffectFactory.js +1 -1
- package/lib/module/skia/web/JsiSkPathEffectFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkPathFactory.js +1 -1
- package/lib/module/skia/web/JsiSkPathFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkPicture.js +1 -1
- package/lib/module/skia/web/JsiSkPicture.js.map +1 -1
- package/lib/module/skia/web/JsiSkShaderFactory.js +5 -5
- package/lib/module/skia/web/JsiSkShaderFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkVerticesFactory.js +1 -1
- package/lib/module/skia/web/JsiSkVerticesFactory.js.map +1 -1
- package/lib/typescript/lib/commonjs/skia/web/Host.d.ts +2 -2
- package/lib/typescript/lib/module/skia/web/Host.d.ts +2 -2
- package/lib/typescript/src/skia/web/Host.d.ts +3 -3
- package/package.json +2 -2
- package/src/skia/__tests__/Enums.spec.ts +34 -0
- package/src/skia/web/Host.ts +24 -7
- package/src/skia/web/JsiSkCanvas.ts +17 -17
- package/src/skia/web/JsiSkColorFilterFactory.ts +1 -1
- package/src/skia/web/JsiSkFont.ts +2 -2
- package/src/skia/web/JsiSkImage.ts +14 -10
- package/src/skia/web/JsiSkImageFactory.ts +2 -2
- package/src/skia/web/JsiSkImageFilterFactory.ts +4 -4
- package/src/skia/web/JsiSkMaskFilterFactory.ts +1 -1
- package/src/skia/web/JsiSkPaint.ts +3 -3
- package/src/skia/web/JsiSkPath.ts +4 -4
- package/src/skia/web/JsiSkPathEffectFactory.ts +1 -1
- package/src/skia/web/JsiSkPathFactory.ts +1 -1
- package/src/skia/web/JsiSkPicture.ts +3 -3
- package/src/skia/web/JsiSkShaderFactory.ts +5 -5
- package/src/skia/web/JsiSkVerticesFactory.ts +1 -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,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,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
|