@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.
- package/android/cpp/jni/JniPlatformContext.cpp +1 -0
- 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/cpp/api/JsiSkContourMeasure.h +1 -1
- package/cpp/api/JsiSkHostObjects.h +21 -10
- package/cpp/api/JsiSkParagraph.h +17 -27
- package/cpp/api/JsiSkPathEffect.h +1 -1
- package/cpp/api/JsiSkPictureFactory.h +1 -1
- package/cpp/api/recorder/Drawings.h +4 -3
- package/cpp/skia/include/codec/SkCodec.h +7 -2
- package/cpp/skia/include/config/SkUserConfig.h +11 -0
- package/cpp/skia/include/core/SkCanvas.h +11 -7
- package/cpp/skia/include/core/SkColor.h +10 -0
- package/cpp/skia/include/core/SkColorSpace.h +184 -2
- package/cpp/skia/include/core/SkColorType.h +114 -32
- package/cpp/skia/include/core/SkFontScanner.h +5 -8
- package/cpp/skia/include/core/SkFontStyle.h +1 -1
- package/cpp/skia/include/core/SkMaskFilter.h +0 -8
- package/cpp/skia/include/core/SkMilestone.h +1 -1
- package/cpp/skia/include/core/SkPath.h +1 -1
- package/cpp/skia/include/core/SkRRect.h +3 -1
- package/cpp/skia/include/core/SkShader.h +3 -3
- package/cpp/skia/include/core/SkString.h +8 -8
- package/cpp/skia/include/core/SkSurface.h +14 -0
- package/cpp/skia/include/core/SkTypeface.h +24 -7
- package/cpp/skia/include/effects/SkGradientShader.h +6 -1
- package/cpp/skia/include/effects/SkRuntimeEffect.h +1 -0
- package/cpp/skia/include/encode/SkPngEncoder.h +14 -0
- package/cpp/skia/include/gpu/GpuTypes.h +9 -0
- package/cpp/skia/include/gpu/ganesh/GrContextOptions.h +135 -133
- package/cpp/skia/include/gpu/ganesh/GrDirectContext.h +5 -0
- package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h +3 -3
- package/cpp/skia/include/gpu/ganesh/GrTypes.h +14 -9
- package/cpp/skia/include/gpu/graphite/Context.h +25 -2
- package/cpp/skia/include/gpu/graphite/ContextOptions.h +23 -5
- package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +20 -1
- package/cpp/skia/include/gpu/graphite/Image.h +1 -0
- package/cpp/skia/include/gpu/graphite/LogPriority.h +36 -0
- package/cpp/skia/include/gpu/graphite/PrecompileContext.h +52 -0
- package/cpp/skia/include/gpu/graphite/Recorder.h +6 -0
- package/cpp/skia/include/gpu/graphite/Recording.h +3 -1
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +4 -36
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypesUtils.h +48 -0
- package/cpp/skia/include/gpu/graphite/precompile/Precompile.h +3 -2
- package/cpp/skia/include/pathops/SkPathOps.h +9 -1
- package/cpp/skia/include/ports/SkFontMgr_FontConfigInterface.h +3 -0
- package/cpp/skia/include/private/SkPathRef.h +15 -21
- package/cpp/skia/include/private/base/SkAttributes.h +16 -10
- package/cpp/skia/include/private/base/SkMutex.h +8 -0
- package/cpp/skia/include/private/base/SkTArray.h +1 -1
- package/cpp/skia/include/private/base/SkTDArray.h +1 -1
- package/cpp/skia/include/private/base/SkTemplates.h +24 -11
- package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +1 -1
- package/cpp/skia/include/sksl/SkSLDebugTrace.h +0 -3
- package/cpp/skia/modules/skcms/src/Transform_inl.h +20 -20
- package/cpp/skia/modules/skcms/src/skcms_Transform.h +4 -3
- package/cpp/skia/modules/skcms/src/skcms_public.h +19 -15
- package/cpp/skia/modules/skresources/include/SkResources.h +3 -1
- package/cpp/skia/modules/svg/include/SkSVGCircle.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGContainer.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGImage.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGPath.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGPoly.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRect.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +2 -0
- package/cpp/skia/modules/svg/include/SkSVGShape.h +1 -0
- package/cpp/skia/modules/svg/include/SkSVGText.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +4 -0
- package/cpp/skia/modules/svg/include/SkSVGUse.h +1 -1
- package/cpp/skia/src/core/SkLRUCache.h +19 -13
- package/cpp/skia/src/core/SkTHash.h +50 -4
- package/cpp/skia/src/gpu/ganesh/gl/GrGLDefines.h +1 -0
- package/lib/commonjs/external/reanimated/useAnimatedImageValue.js +4 -3
- package/lib/commonjs/external/reanimated/useAnimatedImageValue.js.map +1 -1
- package/lib/commonjs/mock/index.js +1 -2
- package/lib/commonjs/mock/index.js.map +1 -1
- package/lib/commonjs/skia/web/Host.d.ts +4 -6
- package/lib/commonjs/skia/web/Host.js +23 -10
- 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 +3 -3
- package/lib/commonjs/skia/web/JsiSkFont.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkFontMgr.js +1 -1
- package/lib/commonjs/skia/web/JsiSkFontMgr.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 +3 -3
- package/lib/commonjs/skia/web/JsiSkImageFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js +9 -9
- 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 +3 -3
- package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/lib/commonjs/skia/web/JsiSkPathFactory.js +2 -2
- 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/JsiSkTypefaceFontProvider.js +1 -1
- package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.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/commonjs/skia/web/JsiSkia.js +4 -3
- package/lib/commonjs/skia/web/JsiSkia.js.map +1 -1
- package/lib/commonjs/skia/web/JsiVideo.js +2 -1
- package/lib/commonjs/skia/web/JsiVideo.js.map +1 -1
- package/lib/module/external/reanimated/useAnimatedImageValue.js +4 -3
- package/lib/module/external/reanimated/useAnimatedImageValue.js.map +1 -1
- package/lib/module/mock/index.js +1 -2
- package/lib/module/mock/index.js.map +1 -1
- package/lib/module/skia/web/Host.d.ts +4 -6
- package/lib/module/skia/web/Host.js +21 -8
- 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 +4 -4
- package/lib/module/skia/web/JsiSkFont.js.map +1 -1
- package/lib/module/skia/web/JsiSkFontMgr.js +2 -2
- package/lib/module/skia/web/JsiSkFontMgr.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 +4 -4
- package/lib/module/skia/web/JsiSkImageFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkImageFilterFactory.js +10 -10
- 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 +4 -4
- package/lib/module/skia/web/JsiSkPathEffectFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/lib/module/skia/web/JsiSkPathFactory.js +3 -3
- 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/JsiSkTypefaceFontProvider.js +2 -2
- package/lib/module/skia/web/JsiSkTypefaceFontProvider.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/module/skia/web/JsiSkia.js +4 -3
- package/lib/module/skia/web/JsiSkia.js.map +1 -1
- package/lib/module/skia/web/JsiVideo.js +2 -1
- package/lib/module/skia/web/JsiVideo.js.map +1 -1
- package/lib/typescript/lib/commonjs/mock/index.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/Host.d.ts +3 -5
- package/lib/typescript/lib/commonjs/skia/web/JsiSkFont.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkFontMgr.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFactory.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
- package/lib/typescript/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkia.d.ts +3 -3
- package/lib/typescript/lib/commonjs/skia/web/JsiVideo.d.ts +1 -1
- package/lib/typescript/lib/module/mock/index.d.ts +1 -1
- package/lib/typescript/lib/module/skia/Skia.web.d.ts +3 -3
- package/lib/typescript/lib/module/skia/web/Host.d.ts +3 -5
- package/lib/typescript/lib/module/skia/web/JsiSkFont.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkFontMgr.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkImageFactory.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
- package/lib/typescript/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkia.d.ts +3 -3
- package/lib/typescript/lib/module/skia/web/JsiVideo.d.ts +1 -1
- package/lib/typescript/src/skia/web/Host.d.ts +4 -6
- package/lib/typescript/src/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/package.json +2 -2
- package/src/external/reanimated/useAnimatedImageValue.ts +4 -3
- package/src/mock/index.ts +1 -2
- package/src/skia/__tests__/Enums.spec.ts +34 -0
- package/src/skia/web/Host.ts +29 -11
- package/src/skia/web/JsiSkCanvas.ts +17 -17
- package/src/skia/web/JsiSkColorFilterFactory.ts +1 -1
- package/src/skia/web/JsiSkFont.ts +5 -5
- package/src/skia/web/JsiSkFontMgr.ts +3 -3
- package/src/skia/web/JsiSkImage.ts +14 -10
- package/src/skia/web/JsiSkImageFactory.ts +5 -5
- package/src/skia/web/JsiSkImageFilterFactory.ts +12 -22
- 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 +6 -6
- package/src/skia/web/JsiSkPathFactory.ts +4 -9
- package/src/skia/web/JsiSkPicture.ts +3 -3
- package/src/skia/web/JsiSkShaderFactory.ts +5 -5
- package/src/skia/web/JsiSkTypefaceFontProvider.ts +3 -3
- package/src/skia/web/JsiSkVerticesFactory.ts +1 -1
- package/src/skia/web/JsiSkia.ts +7 -4
- package/src/skia/web/JsiVideo.ts +2 -1
@@ -0,0 +1,129 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "MetalWindowContext.h"
|
4
|
+
#include "SkiaCVPixelBufferUtils.h"
|
5
|
+
|
6
|
+
#include "include/core/SkSurface.h"
|
7
|
+
|
8
|
+
#import <include/gpu/ganesh/GrBackendSurface.h>
|
9
|
+
#import <include/gpu/ganesh/GrDirectContext.h>
|
10
|
+
#import <include/gpu/ganesh/SkImageGanesh.h>
|
11
|
+
#import <include/gpu/ganesh/SkSurfaceGanesh.h>
|
12
|
+
#import <include/gpu/ganesh/mtl/GrMtlBackendContext.h>
|
13
|
+
#import <include/gpu/ganesh/mtl/GrMtlBackendSurface.h>
|
14
|
+
#import <include/gpu/ganesh/mtl/GrMtlDirectContext.h>
|
15
|
+
#import <include/gpu/ganesh/mtl/SkSurfaceMetal.h>
|
16
|
+
|
17
|
+
class MetalSharedContext {
|
18
|
+
public:
|
19
|
+
static MetalSharedContext &getInstance() {
|
20
|
+
static MetalSharedContext instance;
|
21
|
+
return instance;
|
22
|
+
}
|
23
|
+
|
24
|
+
id<MTLDevice> getDevice() { return _device; }
|
25
|
+
|
26
|
+
private:
|
27
|
+
MetalSharedContext() {
|
28
|
+
_device = MTLCreateSystemDefaultDevice();
|
29
|
+
if (!_device) {
|
30
|
+
throw std::runtime_error("Failed to create Metal device");
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
MetalSharedContext(const MetalSharedContext &) = delete;
|
35
|
+
MetalSharedContext &operator=(const MetalSharedContext &) = delete;
|
36
|
+
|
37
|
+
id<MTLDevice> _device;
|
38
|
+
};
|
39
|
+
|
40
|
+
struct OffscreenRenderContext {
|
41
|
+
id<MTLTexture> texture;
|
42
|
+
|
43
|
+
OffscreenRenderContext(id<MTLDevice> device,
|
44
|
+
sk_sp<GrDirectContext> skiaContext,
|
45
|
+
id<MTLCommandQueue> commandQueue, int width,
|
46
|
+
int height) {
|
47
|
+
// Create a Metal texture descriptor
|
48
|
+
MTLTextureDescriptor *textureDescriptor = [MTLTextureDescriptor
|
49
|
+
texture2DDescriptorWithPixelFormat:MTLPixelFormatBGRA8Unorm
|
50
|
+
width:width
|
51
|
+
height:height
|
52
|
+
mipmapped:NO];
|
53
|
+
textureDescriptor.usage =
|
54
|
+
MTLTextureUsageRenderTarget | MTLTextureUsageShaderRead;
|
55
|
+
texture = [device newTextureWithDescriptor:textureDescriptor];
|
56
|
+
}
|
57
|
+
};
|
58
|
+
|
59
|
+
class MetalContext {
|
60
|
+
|
61
|
+
public:
|
62
|
+
MetalContext(const MetalContext &) = delete;
|
63
|
+
MetalContext &operator=(const MetalContext &) = delete;
|
64
|
+
|
65
|
+
static MetalContext &getInstance() {
|
66
|
+
static thread_local MetalContext instance;
|
67
|
+
return instance;
|
68
|
+
}
|
69
|
+
|
70
|
+
sk_sp<SkSurface> MakeOffscreen(int width, int height) {
|
71
|
+
auto device = MetalSharedContext::getInstance().getDevice();
|
72
|
+
auto ctx = new OffscreenRenderContext(device, _directContext, _commandQueue,
|
73
|
+
width, height);
|
74
|
+
|
75
|
+
// Create a GrBackendTexture from the Metal texture
|
76
|
+
GrMtlTextureInfo info;
|
77
|
+
info.fTexture.retain((__bridge void *)ctx->texture);
|
78
|
+
GrBackendTexture backendTexture =
|
79
|
+
GrBackendTextures::MakeMtl(width, height, skgpu::Mipmapped::kNo, info);
|
80
|
+
|
81
|
+
// Create a SkSurface from the GrBackendTexture
|
82
|
+
auto surface = SkSurfaces::WrapBackendTexture(
|
83
|
+
_directContext.get(), backendTexture, kTopLeft_GrSurfaceOrigin, 0,
|
84
|
+
kBGRA_8888_SkColorType, nullptr, nullptr,
|
85
|
+
[](void *addr) { delete (OffscreenRenderContext *)addr; }, ctx);
|
86
|
+
|
87
|
+
return surface;
|
88
|
+
}
|
89
|
+
|
90
|
+
sk_sp<SkImage> MakeImageFromBuffer(void *buffer) {
|
91
|
+
|
92
|
+
CVPixelBufferRef sampleBuffer = (CVPixelBufferRef)buffer;
|
93
|
+
SkiaCVPixelBufferUtils::CVPixelBufferBaseFormat format =
|
94
|
+
SkiaCVPixelBufferUtils::getCVPixelBufferBaseFormat(sampleBuffer);
|
95
|
+
switch (format) {
|
96
|
+
case SkiaCVPixelBufferUtils::CVPixelBufferBaseFormat::rgb: {
|
97
|
+
// CVPixelBuffer is in any RGB format, single-plane
|
98
|
+
return SkiaCVPixelBufferUtils::RGB::makeSkImageFromCVPixelBuffer(
|
99
|
+
_directContext.get(), sampleBuffer);
|
100
|
+
}
|
101
|
+
case SkiaCVPixelBufferUtils::CVPixelBufferBaseFormat::yuv: {
|
102
|
+
// CVPixelBuffer is in any YUV format, multi-plane
|
103
|
+
return SkiaCVPixelBufferUtils::YUV::makeSkImageFromCVPixelBuffer(
|
104
|
+
_directContext.get(), sampleBuffer);
|
105
|
+
}
|
106
|
+
default:
|
107
|
+
[[unlikely]] {
|
108
|
+
throw std::runtime_error("Failed to convert NativeBuffer to SkImage - "
|
109
|
+
"NativeBuffer has unsupported PixelFormat! " +
|
110
|
+
std::to_string(static_cast<int>(format)));
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
std::unique_ptr<RNSkia::WindowContext> MakeWindow(CALayer *window, int width,
|
116
|
+
int height) {
|
117
|
+
auto device = MetalSharedContext::getInstance().getDevice();
|
118
|
+
return std::make_unique<MetalWindowContext>(
|
119
|
+
_directContext.get(), device, _commandQueue, window, width, height);
|
120
|
+
}
|
121
|
+
|
122
|
+
GrDirectContext *getDirectContext() { return _directContext.get(); }
|
123
|
+
|
124
|
+
private:
|
125
|
+
id<MTLCommandQueue> _commandQueue = nullptr;
|
126
|
+
sk_sp<GrDirectContext> _directContext = nullptr;
|
127
|
+
|
128
|
+
MetalContext();
|
129
|
+
};
|
@@ -0,0 +1,34 @@
|
|
1
|
+
#include "MetalContext.h"
|
2
|
+
|
3
|
+
#include "RNSkLog.h"
|
4
|
+
|
5
|
+
#import <MetalKit/MetalKit.h>
|
6
|
+
|
7
|
+
#pragma clang diagnostic push
|
8
|
+
#pragma clang diagnostic ignored "-Wdocumentation"
|
9
|
+
|
10
|
+
#import <include/gpu/ganesh/GrBackendSurface.h>
|
11
|
+
#import <include/gpu/ganesh/SkImageGanesh.h>
|
12
|
+
#import <include/gpu/ganesh/mtl/GrMtlBackendContext.h>
|
13
|
+
#import <include/gpu/ganesh/mtl/GrMtlBackendSurface.h>
|
14
|
+
#import <include/gpu/ganesh/mtl/GrMtlDirectContext.h>
|
15
|
+
#import <include/gpu/ganesh/mtl/GrMtlTypes.h>
|
16
|
+
#import <include/gpu/ganesh/mtl/SkSurfaceMetal.h>
|
17
|
+
|
18
|
+
#pragma clang diagnostic pop
|
19
|
+
|
20
|
+
MetalContext::MetalContext() {
|
21
|
+
auto device = MetalSharedContext::getInstance().getDevice();
|
22
|
+
_commandQueue =
|
23
|
+
id<MTLCommandQueue>(CFRetain((GrMTLHandle)[device newCommandQueue]));
|
24
|
+
GrMtlBackendContext backendContext = {};
|
25
|
+
backendContext.fDevice.reset((__bridge void *)device);
|
26
|
+
backendContext.fQueue.reset((__bridge void *)_commandQueue);
|
27
|
+
GrContextOptions grContextOptions; // set different options here.
|
28
|
+
|
29
|
+
// Create the Skia Direct Context
|
30
|
+
_directContext = GrDirectContexts::MakeMetal(backendContext);
|
31
|
+
if (_directContext == nullptr) {
|
32
|
+
RNSkia::RNSkLogger::logToConsole("Couldn't create a Skia Metal Context");
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#import <MetalKit/MetalKit.h>
|
4
|
+
|
5
|
+
#include "WindowContext.h"
|
6
|
+
|
7
|
+
class SkiaMetalContext;
|
8
|
+
|
9
|
+
class MetalWindowContext : public RNSkia::WindowContext {
|
10
|
+
public:
|
11
|
+
MetalWindowContext(GrDirectContext *directContext, id<MTLDevice> device,
|
12
|
+
id<MTLCommandQueue> commandQueue, CALayer *layer,
|
13
|
+
int width, int height);
|
14
|
+
~MetalWindowContext() = default;
|
15
|
+
|
16
|
+
sk_sp<SkSurface> getSurface() override;
|
17
|
+
|
18
|
+
void present() override;
|
19
|
+
|
20
|
+
int getWidth() override {
|
21
|
+
return _layer.frame.size.width * _layer.contentsScale;
|
22
|
+
};
|
23
|
+
|
24
|
+
int getHeight() override {
|
25
|
+
return _layer.frame.size.height * _layer.contentsScale;
|
26
|
+
};
|
27
|
+
|
28
|
+
void resize(int width, int height) override { _skSurface = nullptr; }
|
29
|
+
|
30
|
+
private:
|
31
|
+
GrDirectContext *_directContext;
|
32
|
+
id<MTLCommandQueue> _commandQueue;
|
33
|
+
sk_sp<SkSurface> _skSurface = nullptr;
|
34
|
+
#pragma clang diagnostic push
|
35
|
+
#pragma clang diagnostic ignored "-Wunguarded-availability-new"
|
36
|
+
CAMetalLayer *_layer;
|
37
|
+
#pragma clang diagnostic pop
|
38
|
+
id<CAMetalDrawable> _currentDrawable = nil;
|
39
|
+
};
|
@@ -0,0 +1,64 @@
|
|
1
|
+
#include "MetalWindowContext.h"
|
2
|
+
|
3
|
+
#include "MetalContext.h"
|
4
|
+
#include "RNSkLog.h"
|
5
|
+
|
6
|
+
MetalWindowContext::MetalWindowContext(GrDirectContext *directContext,
|
7
|
+
id<MTLDevice> device,
|
8
|
+
id<MTLCommandQueue> commandQueue,
|
9
|
+
CALayer *layer, int width, int height)
|
10
|
+
: _directContext(directContext), _commandQueue(commandQueue) {
|
11
|
+
#pragma clang diagnostic push
|
12
|
+
#pragma clang diagnostic ignored "-Wunguarded-availability-new"
|
13
|
+
_layer = (CAMetalLayer *)layer;
|
14
|
+
#pragma clang diagnostic pop
|
15
|
+
_layer.framebufferOnly = NO;
|
16
|
+
_layer.device = device;
|
17
|
+
_layer.opaque = false;
|
18
|
+
#if !TARGET_OS_OSX
|
19
|
+
_layer.contentsScale = [UIScreen mainScreen].scale;
|
20
|
+
#else
|
21
|
+
_layer.contentsScale = [NSScreen mainScreen].backingScaleFactor;
|
22
|
+
#endif // !TARGET_OS_OSX
|
23
|
+
_layer.pixelFormat = MTLPixelFormatBGRA8Unorm;
|
24
|
+
_layer.contentsGravity = kCAGravityBottomLeft;
|
25
|
+
_layer.drawableSize = CGSizeMake(width, height);
|
26
|
+
}
|
27
|
+
|
28
|
+
sk_sp<SkSurface> MetalWindowContext::getSurface() {
|
29
|
+
if (_skSurface) {
|
30
|
+
return _skSurface;
|
31
|
+
}
|
32
|
+
|
33
|
+
// Get the next drawable from the CAMetalLayer
|
34
|
+
_currentDrawable = [_layer nextDrawable];
|
35
|
+
if (!_currentDrawable) {
|
36
|
+
RNSkia::RNSkLogger::logToConsole(
|
37
|
+
"Could not retrieve drawable from CAMetalLayer");
|
38
|
+
return nullptr;
|
39
|
+
}
|
40
|
+
|
41
|
+
// Get the texture from the drawable
|
42
|
+
GrMtlTextureInfo fbInfo;
|
43
|
+
fbInfo.fTexture.retain((__bridge void *)_currentDrawable.texture);
|
44
|
+
|
45
|
+
GrBackendRenderTarget backendRT = GrBackendRenderTargets::MakeMtl(
|
46
|
+
_layer.drawableSize.width, _layer.drawableSize.height, fbInfo);
|
47
|
+
|
48
|
+
_skSurface = SkSurfaces::WrapBackendRenderTarget(
|
49
|
+
_directContext, backendRT, kTopLeft_GrSurfaceOrigin,
|
50
|
+
kBGRA_8888_SkColorType, nullptr, nullptr);
|
51
|
+
|
52
|
+
return _skSurface;
|
53
|
+
}
|
54
|
+
|
55
|
+
void MetalWindowContext::present() {
|
56
|
+
if (auto dContext = GrAsDirectContext(_skSurface->recordingContext())) {
|
57
|
+
dContext->flushAndSubmit();
|
58
|
+
}
|
59
|
+
|
60
|
+
id<MTLCommandBuffer> commandBuffer([_commandQueue commandBuffer]);
|
61
|
+
[commandBuffer presentDrawable:_currentDrawable];
|
62
|
+
[commandBuffer commit];
|
63
|
+
_skSurface = nullptr;
|
64
|
+
}
|
@@ -0,0 +1,79 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#import <React/RCTBridge+Private.h>
|
4
|
+
#import <React/RCTBridge.h>
|
5
|
+
|
6
|
+
#include <functional>
|
7
|
+
#include <memory>
|
8
|
+
#include <string>
|
9
|
+
|
10
|
+
#include "RNSkPlatformContext.h"
|
11
|
+
#include "ViewScreenshotService.h"
|
12
|
+
|
13
|
+
namespace facebook {
|
14
|
+
namespace react {
|
15
|
+
class CallInvoker;
|
16
|
+
}
|
17
|
+
} // namespace facebook
|
18
|
+
|
19
|
+
namespace RNSkia {
|
20
|
+
|
21
|
+
class RNSkApplePlatformContext : public RNSkPlatformContext {
|
22
|
+
public:
|
23
|
+
RNSkApplePlatformContext(
|
24
|
+
RCTBridge *bridge,
|
25
|
+
std::shared_ptr<facebook::react::CallInvoker> jsCallInvoker)
|
26
|
+
#if !TARGET_OS_OSX
|
27
|
+
: RNSkPlatformContext(jsCallInvoker, [[UIScreen mainScreen] scale]) {
|
28
|
+
#else
|
29
|
+
: RNSkPlatformContext(jsCallInvoker, [[NSScreen mainScreen] backingScaleFactor]) {
|
30
|
+
#endif // !TARGET_OS_OSX
|
31
|
+
|
32
|
+
// Create screenshot manager
|
33
|
+
_screenshotService =
|
34
|
+
[[ViewScreenshotService alloc] initWithUiManager:bridge.uiManager];
|
35
|
+
}
|
36
|
+
|
37
|
+
~RNSkApplePlatformContext() = default;
|
38
|
+
|
39
|
+
void runOnMainThread(std::function<void()>) override;
|
40
|
+
|
41
|
+
sk_sp<SkImage> takeScreenshotFromViewTag(size_t tag) override;
|
42
|
+
|
43
|
+
sk_sp<SkImage> makeImageFromNativeBuffer(void *buffer) override;
|
44
|
+
|
45
|
+
sk_sp<SkImage> makeImageFromNativeTexture(const TextureInfo &textureInfo,
|
46
|
+
int width, int height,
|
47
|
+
bool mipMapped) override;
|
48
|
+
|
49
|
+
uint64_t makeNativeBuffer(sk_sp<SkImage> image) override;
|
50
|
+
|
51
|
+
const TextureInfo getTexture(sk_sp<SkSurface> image) override;
|
52
|
+
|
53
|
+
const TextureInfo getTexture(sk_sp<SkImage> image) override;
|
54
|
+
|
55
|
+
void releaseNativeBuffer(uint64_t pointer) override;
|
56
|
+
|
57
|
+
std::shared_ptr<RNSkVideo> createVideo(const std::string &url) override;
|
58
|
+
|
59
|
+
std::shared_ptr<WindowContext>
|
60
|
+
makeContextFromNativeSurface(void *surface, int width, int height) override;
|
61
|
+
|
62
|
+
virtual void performStreamOperation(
|
63
|
+
const std::string &sourceUri,
|
64
|
+
const std::function<void(std::unique_ptr<SkStreamAsset>)> &op) override;
|
65
|
+
|
66
|
+
void raiseError(const std::exception &err) override;
|
67
|
+
sk_sp<SkSurface> makeOffscreenSurface(int width, int height) override;
|
68
|
+
#if !defined(SK_GRAPHITE)
|
69
|
+
GrDirectContext *getDirectContext() override;
|
70
|
+
#endif
|
71
|
+
sk_sp<SkFontMgr> createFontMgr() override;
|
72
|
+
|
73
|
+
private:
|
74
|
+
ViewScreenshotService *_screenshotService;
|
75
|
+
|
76
|
+
SkColorType mtlPixelFormatToSkColorType(MTLPixelFormat pixelFormat);
|
77
|
+
};
|
78
|
+
|
79
|
+
} // namespace RNSkia
|
@@ -0,0 +1,303 @@
|
|
1
|
+
#import "RNSkApplePlatformContext.h"
|
2
|
+
|
3
|
+
#import <CoreMedia/CMSampleBuffer.h>
|
4
|
+
#include <Metal/Metal.h>
|
5
|
+
#import <React/RCTUtils.h>
|
6
|
+
#include <thread>
|
7
|
+
#include <utility>
|
8
|
+
|
9
|
+
#if defined(SK_GRAPHITE)
|
10
|
+
#include "DawnContext.h"
|
11
|
+
#else
|
12
|
+
#include "MetalContext.h"
|
13
|
+
#endif
|
14
|
+
#include "RNSkAppleVideo.h"
|
15
|
+
|
16
|
+
#pragma clang diagnostic push
|
17
|
+
#pragma clang diagnostic ignored "-Wdocumentation"
|
18
|
+
|
19
|
+
#import "include/core/SkColorSpace.h"
|
20
|
+
#include "include/core/SkFontMgr.h"
|
21
|
+
#include "include/core/SkSurface.h"
|
22
|
+
|
23
|
+
#include "include/ports/SkFontMgr_mac_ct.h"
|
24
|
+
|
25
|
+
#pragma clang diagnostic pop
|
26
|
+
|
27
|
+
namespace RNSkia {
|
28
|
+
|
29
|
+
void RNSkApplePlatformContext::performStreamOperation(
|
30
|
+
const std::string &sourceUri,
|
31
|
+
const std::function<void(std::unique_ptr<SkStreamAsset>)> &op) {
|
32
|
+
|
33
|
+
auto loader = [=]() {
|
34
|
+
NSURL *url = [[NSURL alloc]
|
35
|
+
initWithString:[NSString stringWithUTF8String:sourceUri.c_str()]];
|
36
|
+
|
37
|
+
NSData *data = nullptr;
|
38
|
+
auto scheme = url.scheme;
|
39
|
+
auto extension = url.pathExtension;
|
40
|
+
|
41
|
+
if (scheme == nullptr &&
|
42
|
+
(extension == nullptr || [extension isEqualToString:@""])) {
|
43
|
+
// If the extension and scheme is nil, we assume that we're trying to
|
44
|
+
// load from the embedded iOS app bundle and will try to load image
|
45
|
+
// and get data from the image directly. imageNamed will return the
|
46
|
+
// best version of the requested image:
|
47
|
+
auto image = [UIImage imageNamed:[url absoluteString]];
|
48
|
+
// We don't know the image format (png, jpg, etc) but
|
49
|
+
// UIImagePNGRepresentation will support all of them
|
50
|
+
data = UIImagePNGRepresentation(image);
|
51
|
+
} else {
|
52
|
+
// Load from metro / node
|
53
|
+
data = [NSData dataWithContentsOfURL:url];
|
54
|
+
}
|
55
|
+
|
56
|
+
auto bytes = [data bytes];
|
57
|
+
auto skData = SkData::MakeWithCopy(bytes, [data length]);
|
58
|
+
auto stream = SkMemoryStream::Make(skData);
|
59
|
+
|
60
|
+
op(std::move(stream));
|
61
|
+
};
|
62
|
+
|
63
|
+
// Fire and forget the thread - will be resolved on completion
|
64
|
+
std::thread(loader).detach();
|
65
|
+
}
|
66
|
+
|
67
|
+
void RNSkApplePlatformContext::releaseNativeBuffer(uint64_t pointer) {
|
68
|
+
CVPixelBufferRef pixelBuffer = reinterpret_cast<CVPixelBufferRef>(pointer);
|
69
|
+
if (pixelBuffer) {
|
70
|
+
CFRelease(pixelBuffer);
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
uint64_t RNSkApplePlatformContext::makeNativeBuffer(sk_sp<SkImage> image) {
|
75
|
+
// 0. If Image is not in BGRA, convert to BGRA as only BGRA is supported.
|
76
|
+
if (image->colorType() != kBGRA_8888_SkColorType) {
|
77
|
+
#if defined(SK_GRAPHITE)
|
78
|
+
SkImage::RequiredProperties requiredProps;
|
79
|
+
image = image->makeColorTypeAndColorSpace(
|
80
|
+
DawnContext::getInstance().getRecorder(), kBGRA_8888_SkColorType,
|
81
|
+
SkColorSpace::MakeSRGB(), requiredProps);
|
82
|
+
#else
|
83
|
+
// on iOS, 32_BGRA is the only supported RGB format for CVPixelBuffers.
|
84
|
+
image = image->makeColorTypeAndColorSpace(
|
85
|
+
MetalContext::getInstance().getDirectContext(), kBGRA_8888_SkColorType,
|
86
|
+
SkColorSpace::MakeSRGB());
|
87
|
+
#endif
|
88
|
+
if (image == nullptr) {
|
89
|
+
throw std::runtime_error(
|
90
|
+
"Failed to convert image to BGRA_8888 colortype! Only BGRA_8888 "
|
91
|
+
"NativeBuffers are supported.");
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
// 1. Get image info
|
96
|
+
auto bytesPerPixel = image->imageInfo().bytesPerPixel();
|
97
|
+
int bytesPerRow = image->width() * bytesPerPixel;
|
98
|
+
auto buf = SkData::MakeUninitialized(image->width() * image->height() *
|
99
|
+
bytesPerPixel);
|
100
|
+
SkImageInfo info = SkImageInfo::Make(image->width(), image->height(),
|
101
|
+
image->colorType(), image->alphaType());
|
102
|
+
// 2. Copy pixels into our buffer
|
103
|
+
image->readPixels(nullptr, info, const_cast<void *>(buf->data()), bytesPerRow,
|
104
|
+
0, 0);
|
105
|
+
|
106
|
+
// 3. Create an IOSurface (GPU + CPU memory)
|
107
|
+
CFMutableDictionaryRef dict = CFDictionaryCreateMutable(
|
108
|
+
kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks,
|
109
|
+
&kCFTypeDictionaryValueCallBacks);
|
110
|
+
int width = image->width();
|
111
|
+
int height = image->height();
|
112
|
+
int pitch = width * bytesPerPixel;
|
113
|
+
int size = width * height * bytesPerPixel;
|
114
|
+
OSType pixelFormat = kCVPixelFormatType_32BGRA;
|
115
|
+
CFDictionarySetValue(
|
116
|
+
dict, kIOSurfaceBytesPerRow,
|
117
|
+
CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &pitch));
|
118
|
+
CFDictionarySetValue(
|
119
|
+
dict, kIOSurfaceBytesPerElement,
|
120
|
+
CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &bytesPerPixel));
|
121
|
+
CFDictionarySetValue(
|
122
|
+
dict, kIOSurfaceWidth,
|
123
|
+
CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &width));
|
124
|
+
CFDictionarySetValue(
|
125
|
+
dict, kIOSurfaceHeight,
|
126
|
+
CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &height));
|
127
|
+
CFDictionarySetValue(
|
128
|
+
dict, kIOSurfacePixelFormat,
|
129
|
+
CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &pixelFormat));
|
130
|
+
CFDictionarySetValue(
|
131
|
+
dict, kIOSurfaceAllocSize,
|
132
|
+
CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &size));
|
133
|
+
IOSurfaceRef surface = IOSurfaceCreate(dict);
|
134
|
+
if (surface == nil) {
|
135
|
+
throw std::runtime_error("Failed to create " + std::to_string(width) + "x" +
|
136
|
+
std::to_string(height) + " IOSurface!");
|
137
|
+
}
|
138
|
+
|
139
|
+
// 4. Copy over the memory from the pixels into the IOSurface
|
140
|
+
IOSurfaceLock(surface, 0, nil);
|
141
|
+
void *base = IOSurfaceGetBaseAddress(surface);
|
142
|
+
memcpy(base, buf->data(), buf->size());
|
143
|
+
IOSurfaceUnlock(surface, 0, nil);
|
144
|
+
|
145
|
+
// 5. Create a CVPixelBuffer from the IOSurface
|
146
|
+
CVPixelBufferRef pixelBuffer = nullptr;
|
147
|
+
CVReturn result =
|
148
|
+
CVPixelBufferCreateWithIOSurface(nil, surface, nil, &pixelBuffer);
|
149
|
+
if (result != kCVReturnSuccess) {
|
150
|
+
throw std::runtime_error(
|
151
|
+
"Failed to create CVPixelBuffer from SkImage! Return value: " +
|
152
|
+
std::to_string(result));
|
153
|
+
}
|
154
|
+
|
155
|
+
// 8. Return CVPixelBuffer casted to uint64_t
|
156
|
+
return reinterpret_cast<uint64_t>(pixelBuffer);
|
157
|
+
}
|
158
|
+
|
159
|
+
const TextureInfo RNSkApplePlatformContext::getTexture(sk_sp<SkImage> image) {
|
160
|
+
GrBackendTexture texture;
|
161
|
+
TextureInfo result;
|
162
|
+
if (!SkImages::GetBackendTextureFromImage(image, &texture, true)) {
|
163
|
+
throw std::runtime_error("Couldn't get backend texture");
|
164
|
+
}
|
165
|
+
if (!texture.isValid()) {
|
166
|
+
throw std::runtime_error("Invalid backend texture");
|
167
|
+
}
|
168
|
+
GrMtlTextureInfo textureInfo;
|
169
|
+
if (!GrBackendTextures::GetMtlTextureInfo(texture, &textureInfo)) {
|
170
|
+
throw std::runtime_error("Couldn't get Metal texture info");
|
171
|
+
}
|
172
|
+
result.mtlTexture = textureInfo.fTexture.get();
|
173
|
+
return result;
|
174
|
+
}
|
175
|
+
|
176
|
+
const TextureInfo RNSkApplePlatformContext::getTexture(sk_sp<SkSurface> surface) {
|
177
|
+
GrBackendTexture texture = SkSurfaces::GetBackendTexture(
|
178
|
+
surface.get(), SkSurfaces::BackendHandleAccess::kFlushRead);
|
179
|
+
TextureInfo result;
|
180
|
+
if (!texture.isValid()) {
|
181
|
+
throw std::runtime_error("Invalid backend texture");
|
182
|
+
}
|
183
|
+
GrMtlTextureInfo textureInfo;
|
184
|
+
if (!GrBackendTextures::GetMtlTextureInfo(texture, &textureInfo)) {
|
185
|
+
throw std::runtime_error("Couldn't get Metal texture info");
|
186
|
+
}
|
187
|
+
result.mtlTexture = textureInfo.fTexture.get();
|
188
|
+
return result;
|
189
|
+
}
|
190
|
+
|
191
|
+
std::shared_ptr<RNSkVideo>
|
192
|
+
RNSkApplePlatformContext::createVideo(const std::string &url) {
|
193
|
+
return std::make_shared<RNSkAppleVideo>(url, this);
|
194
|
+
}
|
195
|
+
|
196
|
+
std::shared_ptr<WindowContext>
|
197
|
+
RNSkApplePlatformContext::makeContextFromNativeSurface(void *surface, int width,
|
198
|
+
int height) {
|
199
|
+
#if defined(SK_GRAPHITE)
|
200
|
+
return DawnContext::getInstance().MakeWindow(surface, width, height);
|
201
|
+
#else
|
202
|
+
return MetalContext::getInstance().MakeWindow((__bridge CALayer *)surface,
|
203
|
+
width, height);
|
204
|
+
#endif
|
205
|
+
}
|
206
|
+
|
207
|
+
void RNSkApplePlatformContext::raiseError(const std::exception &err) {
|
208
|
+
RCTFatal(RCTErrorWithMessage([NSString stringWithUTF8String:err.what()]));
|
209
|
+
}
|
210
|
+
|
211
|
+
sk_sp<SkSurface> RNSkApplePlatformContext::makeOffscreenSurface(int width,
|
212
|
+
int height) {
|
213
|
+
#if defined(SK_GRAPHITE)
|
214
|
+
return DawnContext::getInstance().MakeOffscreen(width, height);
|
215
|
+
#else
|
216
|
+
return MetalContext::getInstance().MakeOffscreen(width, height);
|
217
|
+
#endif
|
218
|
+
}
|
219
|
+
|
220
|
+
sk_sp<SkImage> RNSkApplePlatformContext::makeImageFromNativeBuffer(void *buffer) {
|
221
|
+
#if defined(SK_GRAPHITE)
|
222
|
+
return DawnContext::getInstance().MakeImageFromBuffer(buffer);
|
223
|
+
#else
|
224
|
+
return MetalContext::getInstance().MakeImageFromBuffer(buffer);
|
225
|
+
#endif
|
226
|
+
}
|
227
|
+
|
228
|
+
sk_sp<SkImage> RNSkApplePlatformContext::makeImageFromNativeTexture(
|
229
|
+
const TextureInfo &texInfo, int width, int height, bool mipMapped) {
|
230
|
+
id<MTLTexture> mtlTexture = (__bridge id<MTLTexture>)(texInfo.mtlTexture);
|
231
|
+
|
232
|
+
SkColorType colorType = mtlPixelFormatToSkColorType(mtlTexture.pixelFormat);
|
233
|
+
if (colorType == SkColorType::kUnknown_SkColorType) {
|
234
|
+
throw std::runtime_error("Unsupported pixelFormat");
|
235
|
+
}
|
236
|
+
|
237
|
+
GrMtlTextureInfo textureInfo;
|
238
|
+
textureInfo.fTexture.retain((__bridge const void *)mtlTexture);
|
239
|
+
|
240
|
+
GrBackendTexture texture = GrBackendTextures::MakeMtl(
|
241
|
+
width, height, mipMapped ? skgpu::Mipmapped::kYes : skgpu::Mipmapped::kNo,
|
242
|
+
textureInfo);
|
243
|
+
|
244
|
+
return SkImages::BorrowTextureFrom(getDirectContext(), texture,
|
245
|
+
kTopLeft_GrSurfaceOrigin, colorType,
|
246
|
+
kPremul_SkAlphaType, nullptr);
|
247
|
+
}
|
248
|
+
|
249
|
+
SkColorType RNSkApplePlatformContext::mtlPixelFormatToSkColorType(
|
250
|
+
MTLPixelFormat pixelFormat) {
|
251
|
+
switch (pixelFormat) {
|
252
|
+
case MTLPixelFormatRGBA8Unorm:
|
253
|
+
return kRGBA_8888_SkColorType;
|
254
|
+
case MTLPixelFormatBGRA8Unorm:
|
255
|
+
return kBGRA_8888_SkColorType;
|
256
|
+
case MTLPixelFormatRGB10A2Unorm:
|
257
|
+
return kRGBA_1010102_SkColorType;
|
258
|
+
case MTLPixelFormatR8Unorm:
|
259
|
+
return kGray_8_SkColorType;
|
260
|
+
case MTLPixelFormatRGBA16Float:
|
261
|
+
return kRGBA_F16_SkColorType;
|
262
|
+
case MTLPixelFormatRG8Unorm:
|
263
|
+
return kR8G8_unorm_SkColorType;
|
264
|
+
case MTLPixelFormatR16Float:
|
265
|
+
return kA16_float_SkColorType;
|
266
|
+
case MTLPixelFormatRG16Float:
|
267
|
+
return kR16G16_float_SkColorType;
|
268
|
+
case MTLPixelFormatR16Unorm:
|
269
|
+
return kA16_unorm_SkColorType;
|
270
|
+
case MTLPixelFormatRG16Unorm:
|
271
|
+
return kR16G16_unorm_SkColorType;
|
272
|
+
case MTLPixelFormatRGBA16Unorm:
|
273
|
+
return kR16G16B16A16_unorm_SkColorType;
|
274
|
+
case MTLPixelFormatRGBA8Unorm_sRGB:
|
275
|
+
return kSRGBA_8888_SkColorType;
|
276
|
+
default:
|
277
|
+
return kUnknown_SkColorType;
|
278
|
+
}
|
279
|
+
}
|
280
|
+
|
281
|
+
#if !defined(SK_GRAPHITE)
|
282
|
+
GrDirectContext *RNSkApplePlatformContext::getDirectContext() {
|
283
|
+
return MetalContext::getInstance().getDirectContext();
|
284
|
+
}
|
285
|
+
#endif
|
286
|
+
|
287
|
+
sk_sp<SkFontMgr> RNSkApplePlatformContext::createFontMgr() {
|
288
|
+
return SkFontMgr_New_CoreText(nullptr);
|
289
|
+
}
|
290
|
+
|
291
|
+
void RNSkApplePlatformContext::runOnMainThread(std::function<void()> func) {
|
292
|
+
dispatch_async(dispatch_get_main_queue(), ^{
|
293
|
+
func();
|
294
|
+
});
|
295
|
+
}
|
296
|
+
|
297
|
+
sk_sp<SkImage>
|
298
|
+
RNSkApplePlatformContext::takeScreenshotFromViewTag(size_t viewTag) {
|
299
|
+
return [_screenshotService
|
300
|
+
screenshotOfViewWithTag:[NSNumber numberWithLong:viewTag]];
|
301
|
+
}
|
302
|
+
|
303
|
+
} // namespace RNSkia
|