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