@shopify/react-native-skia 0.1.158 → 0.1.159
Sign up to get free protection for your applications and to get access to all the features.
- package/android/CMakeLists.txt +35 -11
- package/android/build.gradle +21 -25
- package/android/cpp/jni/JniLoad.cpp +2 -0
- package/android/cpp/jni/include/JniSkiaDomView.h +89 -0
- package/android/cpp/rnskia-android/SkiaOpenGLRenderer.cpp +4 -3
- package/android/cpp/rnskia-android/SkiaOpenGLRenderer.h +4 -3
- package/android/src/main/java/com/shopify/reactnative/skia/RNSkiaPackage.java +2 -1
- package/android/src/main/java/com/shopify/reactnative/skia/SkiaDomView.java +45 -0
- package/android/src/main/java/com/shopify/reactnative/skia/SkiaDomViewManager.java +64 -0
- package/cpp/api/JsiSkHostObjects.h +6 -0
- package/cpp/api/JsiSkImageFilterFactory.h +1 -1
- package/cpp/api/JsiSkPaint.h +9 -2
- package/cpp/api/JsiSkPath.h +1 -0
- package/cpp/api/JsiSkRuntimeEffect.h +36 -36
- package/cpp/jsi/JsiHostObject.cpp +16 -28
- package/cpp/jsi/JsiHostObject.h +127 -7
- package/cpp/jsi/JsiValue.cpp +346 -0
- package/cpp/jsi/JsiValue.h +222 -0
- package/cpp/jsi/JsiValueWrapper.h +33 -5
- package/cpp/rnskia/RNSkDomView.cpp +220 -0
- package/cpp/rnskia/RNSkDomView.h +140 -0
- package/cpp/rnskia/RNSkJsView.cpp +0 -4
- package/cpp/rnskia/RNSkJsView.h +6 -4
- package/cpp/rnskia/RNSkManager.cpp +7 -0
- package/cpp/rnskia/RNSkPictureView.h +5 -8
- package/cpp/rnskia/RNSkView.h +113 -5
- package/cpp/rnskia/dom/JsiDomApi.h +167 -0
- package/cpp/rnskia/dom/base/BaseNodeProp.h +72 -0
- package/cpp/rnskia/dom/base/DerivedNodeProp.h +187 -0
- package/cpp/rnskia/dom/base/DrawingContext.cpp +227 -0
- package/cpp/rnskia/dom/base/DrawingContext.h +136 -0
- package/cpp/rnskia/dom/base/JsiDependencyManager.h +294 -0
- package/cpp/rnskia/dom/base/JsiDomDeclarationNode.h +176 -0
- package/cpp/rnskia/dom/base/JsiDomDrawingNode.h +50 -0
- package/cpp/rnskia/dom/base/JsiDomNode.h +361 -0
- package/cpp/rnskia/dom/base/JsiDomRenderNode.h +267 -0
- package/cpp/rnskia/dom/base/NodeProp.h +130 -0
- package/cpp/rnskia/dom/base/NodePropsContainer.h +119 -0
- package/cpp/rnskia/dom/nodes/JsiBackdropFilterNode.h +38 -0
- package/cpp/rnskia/dom/nodes/JsiBlendNode.h +112 -0
- package/cpp/rnskia/dom/nodes/JsiBlurMaskNode.h +78 -0
- package/cpp/rnskia/dom/nodes/JsiBoxNode.h +104 -0
- package/cpp/rnskia/dom/nodes/JsiBoxShadowNode.h +33 -0
- package/cpp/rnskia/dom/nodes/JsiCircleNode.h +38 -0
- package/cpp/rnskia/dom/nodes/JsiColorFilterNodes.h +192 -0
- package/cpp/rnskia/dom/nodes/JsiCustomDrawingNode.h +123 -0
- package/cpp/rnskia/dom/nodes/JsiDiffRectNode.h +42 -0
- package/cpp/rnskia/dom/nodes/JsiFillNode.h +22 -0
- package/cpp/rnskia/dom/nodes/JsiGlyphsNode.h +56 -0
- package/cpp/rnskia/dom/nodes/JsiGroupNode.h +26 -0
- package/cpp/rnskia/dom/nodes/JsiImageFilterNodes.h +415 -0
- package/cpp/rnskia/dom/nodes/JsiImageNode.h +34 -0
- package/cpp/rnskia/dom/nodes/JsiImageSvgNode.h +44 -0
- package/cpp/rnskia/dom/nodes/JsiLayerNode.h +64 -0
- package/cpp/rnskia/dom/nodes/JsiLineNode.h +43 -0
- package/cpp/rnskia/dom/nodes/JsiOvalNode.h +34 -0
- package/cpp/rnskia/dom/nodes/JsiPaintNode.h +77 -0
- package/cpp/rnskia/dom/nodes/JsiPatchNode.h +54 -0
- package/cpp/rnskia/dom/nodes/JsiPathEffectNodes.h +315 -0
- package/cpp/rnskia/dom/nodes/JsiPathNode.h +181 -0
- package/cpp/rnskia/dom/nodes/JsiPictureNode.h +32 -0
- package/cpp/rnskia/dom/nodes/JsiPointsNode.h +51 -0
- package/cpp/rnskia/dom/nodes/JsiRRectNode.h +34 -0
- package/cpp/rnskia/dom/nodes/JsiRectNode.h +34 -0
- package/cpp/rnskia/dom/nodes/JsiShaderNodes.h +517 -0
- package/cpp/rnskia/dom/nodes/JsiTextBlobNode.h +47 -0
- package/cpp/rnskia/dom/nodes/JsiTextNode.h +54 -0
- package/cpp/rnskia/dom/nodes/JsiTextPathNode.h +32 -0
- package/cpp/rnskia/dom/nodes/JsiVerticesNode.h +43 -0
- package/cpp/rnskia/dom/props/BezierProps.h +63 -0
- package/cpp/rnskia/dom/props/BlendModeProp.h +101 -0
- package/cpp/rnskia/dom/props/BoxShadowProps.h +61 -0
- package/cpp/rnskia/dom/props/CircleProp.h +46 -0
- package/cpp/rnskia/dom/props/ClipProp.h +62 -0
- package/cpp/rnskia/dom/props/ColorProp.h +80 -0
- package/cpp/rnskia/dom/props/DrawingProp.h +33 -0
- package/cpp/rnskia/dom/props/FontProp.h +34 -0
- package/cpp/rnskia/dom/props/GlyphsProp.h +53 -0
- package/cpp/rnskia/dom/props/ImageProps.h +173 -0
- package/cpp/rnskia/dom/props/LayerProp.h +50 -0
- package/cpp/rnskia/dom/props/MatrixProp.h +33 -0
- package/cpp/rnskia/dom/props/NumbersProp.h +63 -0
- package/cpp/rnskia/dom/props/PaintProps.h +172 -0
- package/cpp/rnskia/dom/props/PathProp.h +55 -0
- package/cpp/rnskia/dom/props/PictureProp.h +38 -0
- package/cpp/rnskia/dom/props/PointProp.h +72 -0
- package/cpp/rnskia/dom/props/PointsProp.h +83 -0
- package/cpp/rnskia/dom/props/RRectProp.h +134 -0
- package/cpp/rnskia/dom/props/RadiusProp.h +43 -0
- package/cpp/rnskia/dom/props/RectProp.h +118 -0
- package/cpp/rnskia/dom/props/StrokeProps.h +75 -0
- package/cpp/rnskia/dom/props/SvgProp.h +37 -0
- package/cpp/rnskia/dom/props/TextBlobProp.h +128 -0
- package/cpp/rnskia/dom/props/TileModeProp.h +50 -0
- package/cpp/rnskia/dom/props/TransformProp.h +80 -0
- package/cpp/rnskia/dom/props/TransformsProps.h +68 -0
- package/cpp/rnskia/dom/props/UniformsProp.h +194 -0
- package/cpp/rnskia/dom/props/VertexModeProp.h +47 -0
- package/cpp/rnskia/dom/props/VerticesProps.h +67 -0
- package/cpp/rnskia/values/RNSkReadonlyValue.h +13 -4
- package/cpp/skia/include/android/SkAndroidFrameworkUtils.h +35 -1
- package/cpp/skia/include/codec/SkAndroidCodec.h +17 -1
- package/cpp/skia/include/codec/SkCodec.h +8 -5
- package/cpp/skia/include/core/SkAnnotation.h +2 -0
- package/cpp/skia/include/core/SkBitmap.h +52 -1
- package/cpp/skia/include/core/SkBlendMode.h +2 -0
- package/cpp/skia/include/core/SkCanvas.h +52 -31
- package/cpp/skia/include/core/SkCapabilities.h +44 -0
- package/cpp/skia/include/core/SkColor.h +7 -0
- package/cpp/skia/include/core/SkColorFilter.h +37 -0
- package/cpp/skia/include/core/SkColorSpace.h +1 -1
- package/cpp/skia/include/core/SkFont.h +4 -0
- package/cpp/skia/include/core/SkFontMgr.h +3 -0
- package/cpp/skia/include/core/SkGraphics.h +9 -0
- package/cpp/skia/include/core/SkImage.h +77 -17
- package/cpp/skia/include/core/SkImageEncoder.h +5 -3
- package/cpp/skia/include/core/SkImageGenerator.h +27 -17
- package/cpp/skia/include/core/SkM44.h +1 -0
- package/cpp/skia/include/core/SkMesh.h +120 -34
- package/cpp/skia/include/core/SkMilestone.h +1 -1
- package/cpp/skia/include/core/SkOverdrawCanvas.h +2 -1
- package/cpp/skia/include/core/SkPaint.h +15 -2
- package/cpp/skia/include/core/SkPath.h +4 -0
- package/cpp/skia/include/core/SkPathBuilder.h +1 -1
- package/cpp/skia/include/core/SkPicture.h +0 -3
- package/cpp/skia/include/core/SkPictureRecorder.h +0 -2
- package/cpp/skia/include/core/SkPixmap.h +19 -0
- package/cpp/skia/include/core/SkRasterHandleAllocator.h +3 -1
- package/cpp/skia/include/core/SkRect.h +11 -4
- package/cpp/skia/include/core/SkRefCnt.h +13 -1
- package/cpp/skia/include/core/SkRegion.h +6 -0
- package/cpp/skia/include/core/SkSamplingOptions.h +8 -6
- package/cpp/skia/include/core/SkScalar.h +6 -25
- package/cpp/skia/include/core/SkShader.h +20 -12
- package/cpp/skia/include/core/SkSpan.h +51 -19
- package/cpp/skia/include/core/SkStream.h +2 -2
- package/cpp/skia/include/core/SkString.h +11 -3
- package/cpp/skia/include/core/SkSurface.h +85 -8
- package/cpp/skia/include/core/SkTextBlob.h +5 -2
- package/cpp/skia/include/core/SkTypes.h +11 -10
- package/cpp/skia/include/docs/SkPDFDocument.h +0 -5
- package/cpp/skia/include/effects/Sk1DPathEffect.h +6 -1
- package/cpp/skia/include/effects/Sk2DPathEffect.h +4 -1
- package/cpp/skia/include/effects/SkColorMatrix.h +1 -0
- package/cpp/skia/include/effects/SkColorMatrixFilter.h +5 -8
- package/cpp/skia/include/effects/SkCornerPathEffect.h +5 -1
- package/cpp/skia/include/effects/SkDashPathEffect.h +5 -1
- package/cpp/skia/include/effects/SkGradientShader.h +68 -38
- package/cpp/skia/include/effects/SkHighContrastFilter.h +5 -1
- package/cpp/skia/include/effects/SkImageFilters.h +5 -4
- package/cpp/skia/include/effects/SkLumaColorFilter.h +4 -1
- package/cpp/skia/include/effects/SkOpPathEffect.h +6 -2
- package/cpp/skia/include/effects/SkOverdrawColorFilter.h +5 -2
- package/cpp/skia/include/effects/SkRuntimeEffect.h +54 -62
- package/cpp/skia/include/effects/SkShaderMaskFilter.h +3 -1
- package/cpp/skia/include/effects/SkTableColorFilter.h +8 -21
- package/cpp/skia/include/effects/SkTableMaskFilter.h +5 -1
- package/cpp/skia/include/effects/SkTrimPathEffect.h +5 -1
- package/cpp/skia/include/encode/SkEncoder.h +17 -0
- package/cpp/skia/include/encode/SkWebpEncoder.h +17 -0
- package/cpp/skia/include/gpu/GpuTypes.h +18 -0
- package/cpp/skia/include/gpu/GrBackendSurface.h +38 -17
- package/cpp/skia/include/gpu/GrBackendSurfaceMutableState.h +6 -71
- package/cpp/skia/include/gpu/GrContextOptions.h +1 -1
- package/cpp/skia/include/gpu/GrContextThreadSafeProxy.h +10 -9
- package/cpp/skia/include/gpu/GrDirectContext.h +42 -22
- package/cpp/skia/include/gpu/GrRecordingContext.h +6 -3
- package/cpp/skia/include/gpu/GrTypes.h +11 -11
- package/cpp/skia/include/gpu/MutableTextureState.h +122 -0
- package/cpp/skia/include/gpu/gl/GrGLFunctions.h +1 -0
- package/cpp/skia/include/gpu/gl/GrGLInterface.h +1 -0
- package/cpp/skia/include/gpu/graphite/BackendTexture.h +7 -0
- package/cpp/skia/include/gpu/graphite/CombinationBuilder.h +195 -0
- package/cpp/skia/include/gpu/graphite/Context.h +47 -55
- package/cpp/skia/include/gpu/graphite/ContextOptions.h +85 -0
- package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +1 -17
- package/cpp/skia/include/gpu/graphite/ImageProvider.h +61 -0
- package/cpp/skia/include/gpu/graphite/Recorder.h +87 -8
- package/cpp/skia/include/gpu/graphite/Recording.h +19 -9
- package/cpp/skia/include/gpu/graphite/TextureInfo.h +40 -8
- package/cpp/skia/include/gpu/graphite/dawn/DawnBackendContext.h +25 -0
- package/cpp/skia/include/gpu/graphite/mtl/MtlBackendContext.h +3 -2
- package/cpp/skia/include/gpu/graphite/vk/VulkanGraphiteTypes.h +69 -0
- package/cpp/skia/include/gpu/mtl/MtlMemoryAllocator.h +39 -0
- package/cpp/skia/include/gpu/vk/GrVkBackendContext.h +21 -19
- package/cpp/skia/include/gpu/vk/GrVkExtensions.h +2 -50
- package/cpp/skia/include/gpu/vk/GrVkMemoryAllocator.h +2 -127
- package/cpp/skia/include/gpu/vk/GrVkTypes.h +5 -43
- package/cpp/skia/include/gpu/vk/VulkanBackendContext.h +46 -0
- package/cpp/skia/include/gpu/vk/VulkanExtensions.h +67 -0
- package/cpp/skia/include/gpu/vk/VulkanMemoryAllocator.h +116 -0
- package/cpp/skia/include/gpu/vk/VulkanTypes.h +59 -0
- package/cpp/skia/include/pathops/SkPathOps.h +1 -1
- package/cpp/skia/include/private/SkColorData.h +10 -40
- package/cpp/skia/include/private/SkEncodedInfo.h +9 -3
- package/cpp/skia/include/private/SkFloatingPoint.h +9 -6
- package/cpp/skia/include/private/SkHalf.h +5 -52
- package/cpp/skia/include/private/SkMacros.h +1 -1
- package/cpp/skia/include/private/SkMalloc.h +4 -0
- package/cpp/skia/include/private/SkPathRef.h +10 -10
- package/cpp/skia/include/private/SkSLModifiers.h +59 -23
- package/cpp/skia/include/private/SkSLProgramKind.h +1 -0
- package/cpp/skia/include/private/SkSLSymbol.h +7 -3
- package/cpp/skia/include/private/SkStringView.h +4 -0
- package/cpp/skia/include/private/SkTArray.h +21 -7
- package/cpp/skia/include/private/SkTDArray.h +173 -285
- package/cpp/skia/include/private/SkTHash.h +33 -32
- package/cpp/skia/include/private/SkTemplates.h +24 -26
- package/cpp/skia/include/private/SkVx.h +218 -135
- package/cpp/skia/include/private/chromium/GrSlug.h +3 -65
- package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +6 -3
- package/cpp/skia/include/private/chromium/Slug.h +76 -0
- package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +6 -1
- package/cpp/skia/include/private/gpu/ganesh/GrVkTypesPriv.h +5 -39
- package/cpp/skia/include/private/gpu/graphite/VulkanGraphiteTypesPriv.h +63 -0
- package/cpp/skia/include/{gpu/vk/GrVkVulkan.h → private/gpu/vk/SkiaVulkan.h} +2 -2
- package/cpp/skia/include/private/gpu/vk/VulkanTypesPriv.h +57 -0
- package/cpp/skia/include/sksl/DSL.h +0 -1
- package/cpp/skia/include/sksl/DSLBlock.h +4 -18
- package/cpp/skia/include/sksl/DSLCase.h +2 -8
- package/cpp/skia/include/sksl/DSLCore.h +8 -15
- package/cpp/skia/include/sksl/DSLExpression.h +51 -142
- package/cpp/skia/include/sksl/DSLFunction.h +7 -15
- package/cpp/skia/include/sksl/DSLModifiers.h +5 -2
- package/cpp/skia/include/sksl/DSLStatement.h +4 -39
- package/cpp/skia/include/sksl/DSLSymbols.h +1 -11
- package/cpp/skia/include/sksl/DSLType.h +20 -12
- package/cpp/skia/include/sksl/DSLVar.h +56 -146
- package/cpp/skia/include/sksl/SkSLErrorReporter.h +2 -15
- package/cpp/skia/include/sksl/SkSLOperator.h +62 -59
- package/cpp/skia/include/sksl/SkSLPosition.h +2 -0
- package/cpp/skia/include/sksl/SkSLVersion.h +27 -0
- package/cpp/skia/include/svg/SkSVGCanvas.h +1 -0
- package/cpp/skia/include/utils/SkAnimCodecPlayer.h +1 -1
- package/cpp/skia/include/utils/SkBase64.h +2 -0
- package/cpp/skia/include/utils/SkCustomTypeface.h +24 -11
- package/cpp/skia/include/utils/SkEventTracer.h +12 -1
- package/cpp/skia/include/utils/SkNWayCanvas.h +11 -4
- package/cpp/skia/include/utils/SkPaintFilterCanvas.h +9 -4
- package/cpp/skia/include/utils/SkParse.h +3 -0
- package/cpp/skia/include/utils/SkShadowUtils.h +2 -0
- package/cpp/skia/include/utils/SkTextUtils.h +2 -1
- package/cpp/skia/{include/third_party → modules}/skcms/skcms.h +10 -0
- package/cpp/skia/modules/skcms/skcms_internal.h +56 -0
- package/cpp/skia/modules/skcms/src/Transform_inl.h +1609 -0
- package/cpp/skia/modules/skparagraph/include/DartTypes.h +153 -0
- package/cpp/skia/modules/skparagraph/include/FontArguments.h +46 -0
- package/cpp/skia/modules/skparagraph/include/FontCollection.h +84 -0
- package/cpp/skia/modules/skparagraph/include/Metrics.h +98 -0
- package/cpp/skia/modules/skparagraph/include/Paragraph.h +111 -0
- package/cpp/skia/modules/skparagraph/include/ParagraphBuilder.h +69 -0
- package/cpp/skia/modules/skparagraph/include/ParagraphCache.h +77 -0
- package/cpp/skia/modules/skparagraph/include/ParagraphStyle.h +143 -0
- package/cpp/skia/modules/skparagraph/include/TextShadow.h +30 -0
- package/cpp/skia/modules/skparagraph/include/TextStyle.h +352 -0
- package/cpp/skia/modules/skparagraph/include/TypefaceFontProvider.h +81 -0
- package/cpp/skia/modules/svg/include/SkSVGAttributeParser.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGTypes.h +3 -3
- package/cpp/skia/src/core/SkLRUCache.h +126 -0
- package/cpp/skia/src/core/SkTInternalLList.h +302 -0
- package/cpp/utils/RNSkTimingInfo.h +1 -0
- package/ios/RNSkia-iOS/RNSkMetalCanvasProvider.h +15 -4
- package/ios/RNSkia-iOS/RNSkMetalCanvasProvider.mm +40 -54
- package/ios/RNSkia-iOS/SkiaDomViewManager.h +8 -0
- package/ios/RNSkia-iOS/SkiaDomViewManager.mm +51 -0
- package/lib/commonjs/dom/nodes/JsiSkDOM.js +56 -56
- package/lib/commonjs/dom/nodes/JsiSkDOM.js.map +1 -1
- package/lib/commonjs/dom/nodes/RenderNode.js +1 -1
- package/lib/commonjs/dom/nodes/RenderNode.js.map +1 -1
- package/lib/commonjs/renderer/Canvas.js +19 -63
- package/lib/commonjs/renderer/Canvas.js.map +1 -1
- package/lib/commonjs/renderer/DependencyManager.js +0 -5
- package/lib/commonjs/renderer/DependencyManager.js.map +1 -1
- package/lib/commonjs/renderer/HostComponents.js.map +1 -1
- package/lib/commonjs/renderer/useCanvas.js +4 -18
- package/lib/commonjs/renderer/useCanvas.js.map +1 -1
- package/lib/commonjs/views/SkiaBaseWebView.js +7 -0
- package/lib/commonjs/views/SkiaBaseWebView.js.map +1 -1
- package/lib/commonjs/views/SkiaDomView.js +152 -0
- package/lib/commonjs/views/SkiaDomView.js.map +1 -0
- package/lib/commonjs/views/SkiaDomView.web.js +55 -0
- package/lib/commonjs/views/SkiaDomView.web.js.map +1 -0
- package/lib/commonjs/views/SkiaPictureView.js +16 -2
- package/lib/commonjs/views/SkiaPictureView.js.map +1 -1
- package/lib/commonjs/views/SkiaView.js +17 -2
- package/lib/commonjs/views/SkiaView.js.map +1 -1
- package/lib/commonjs/views/index.js +13 -0
- package/lib/commonjs/views/index.js.map +1 -1
- package/lib/commonjs/views/types.js.map +1 -1
- package/lib/module/dom/nodes/JsiSkDOM.js +56 -56
- package/lib/module/dom/nodes/JsiSkDOM.js.map +1 -1
- package/lib/module/dom/nodes/RenderNode.js +1 -1
- package/lib/module/dom/nodes/RenderNode.js.map +1 -1
- package/lib/module/renderer/Canvas.js +20 -64
- package/lib/module/renderer/Canvas.js.map +1 -1
- package/lib/module/renderer/DependencyManager.js +0 -5
- package/lib/module/renderer/DependencyManager.js.map +1 -1
- package/lib/module/renderer/HostComponents.js.map +1 -1
- package/lib/module/renderer/useCanvas.js +2 -13
- package/lib/module/renderer/useCanvas.js.map +1 -1
- package/lib/module/views/SkiaBaseWebView.js +7 -0
- package/lib/module/views/SkiaBaseWebView.js.map +1 -1
- package/lib/module/views/SkiaDomView.js +128 -0
- package/lib/module/views/SkiaDomView.js.map +1 -0
- package/lib/module/views/SkiaDomView.web.js +41 -0
- package/lib/module/views/SkiaDomView.web.js.map +1 -0
- package/lib/module/views/SkiaPictureView.js +14 -2
- package/lib/module/views/SkiaPictureView.js.map +1 -1
- package/lib/module/views/SkiaView.js +15 -2
- package/lib/module/views/SkiaView.js.map +1 -1
- package/lib/module/views/index.js +1 -0
- package/lib/module/views/index.js.map +1 -1
- package/lib/module/views/types.js.map +1 -1
- package/lib/typescript/src/dom/nodes/JsiSkDOM.d.ts +57 -64
- package/lib/typescript/src/renderer/Canvas.d.ts +5 -8
- package/lib/typescript/src/renderer/DependencyManager.d.ts +0 -2
- package/lib/typescript/src/renderer/HostComponents.d.ts +66 -3
- package/lib/typescript/src/renderer/useCanvas.d.ts +0 -6
- package/lib/typescript/src/views/SkiaBaseWebView.d.ts +4 -0
- package/lib/typescript/src/views/SkiaDomView.d.ts +31 -0
- package/lib/typescript/src/views/SkiaDomView.web.d.ts +7 -0
- package/lib/typescript/src/views/index.d.ts +1 -0
- package/lib/typescript/src/views/types.d.ts +12 -2
- package/libs/android/arm64-v8a/libskia.a +0 -0
- package/libs/android/arm64-v8a/libskottie.a +0 -0
- package/libs/android/arm64-v8a/libskparagraph.a +0 -0
- package/libs/android/arm64-v8a/libsksg.a +0 -0
- package/libs/android/arm64-v8a/libskshaper.a +0 -0
- package/libs/android/arm64-v8a/libskunicode.a +0 -0
- package/libs/android/arm64-v8a/libsvg.a +0 -0
- package/libs/android/armeabi-v7a/libskia.a +0 -0
- package/libs/android/armeabi-v7a/libskottie.a +0 -0
- package/libs/android/armeabi-v7a/libskparagraph.a +0 -0
- package/libs/android/armeabi-v7a/libsksg.a +0 -0
- package/libs/android/armeabi-v7a/libskshaper.a +0 -0
- package/libs/android/armeabi-v7a/libskunicode.a +0 -0
- package/libs/android/armeabi-v7a/libsvg.a +0 -0
- package/libs/android/x86/libskia.a +0 -0
- package/libs/android/x86/libskottie.a +0 -0
- package/libs/android/x86/libskparagraph.a +0 -0
- package/libs/android/x86/libsksg.a +0 -0
- package/libs/android/x86/libskshaper.a +0 -0
- package/libs/android/x86/libskunicode.a +0 -0
- package/libs/android/x86/libsvg.a +0 -0
- package/libs/android/x86_64/libskia.a +0 -0
- package/libs/android/x86_64/libskottie.a +0 -0
- package/libs/android/x86_64/libskparagraph.a +0 -0
- package/libs/android/x86_64/libsksg.a +0 -0
- package/libs/android/x86_64/libskshaper.a +0 -0
- package/libs/android/x86_64/libskunicode.a +0 -0
- package/libs/android/x86_64/libsvg.a +0 -0
- package/libs/ios/libskia.xcframework/ios-arm64_arm64e/libskia.a +0 -0
- package/libs/ios/libskia.xcframework/ios-arm64_arm64e_x86_64-simulator/libskia.a +0 -0
- package/libs/ios/libskottie.xcframework/ios-arm64_arm64e/libskottie.a +0 -0
- package/libs/ios/libskottie.xcframework/ios-arm64_arm64e_x86_64-simulator/libskottie.a +0 -0
- package/libs/ios/libskparagraph.xcframework/Info.plist +42 -0
- package/libs/ios/libskparagraph.xcframework/ios-arm64_arm64e/libskparagraph.a +0 -0
- package/libs/ios/libskparagraph.xcframework/ios-arm64_arm64e_x86_64-simulator/libskparagraph.a +0 -0
- package/libs/ios/libsksg.xcframework/Info.plist +5 -5
- package/libs/ios/libsksg.xcframework/ios-arm64_arm64e/libsksg.a +0 -0
- package/libs/ios/libsksg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsksg.a +0 -0
- package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e/libskshaper.a +0 -0
- package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e_x86_64-simulator/libskshaper.a +0 -0
- package/libs/ios/libskunicode.xcframework/Info.plist +42 -0
- package/libs/ios/libskunicode.xcframework/ios-arm64_arm64e/libskunicode.a +0 -0
- package/libs/ios/libskunicode.xcframework/ios-arm64_arm64e_x86_64-simulator/libskunicode.a +0 -0
- package/libs/ios/libsvg.xcframework/ios-arm64_arm64e/libsvg.a +0 -0
- package/libs/ios/libsvg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsvg.a +0 -0
- package/package.json +5 -3
- package/react-native-skia.podspec +3 -1
- package/src/dom/nodes/JsiSkDOM.ts +170 -56
- package/src/dom/nodes/RenderNode.ts +1 -1
- package/src/renderer/Canvas.tsx +32 -56
- package/src/renderer/DependencyManager.tsx +0 -5
- package/src/renderer/HostComponents.ts +152 -1
- package/src/renderer/useCanvas.ts +1 -15
- package/src/views/SkiaBaseWebView.tsx +4 -0
- package/src/views/SkiaDomView.tsx +120 -0
- package/src/views/SkiaDomView.web.tsx +37 -0
- package/src/views/SkiaPictureView.tsx +10 -2
- package/src/views/SkiaView.tsx +11 -3
- package/src/views/index.ts +1 -0
- package/src/views/types.ts +19 -2
- package/cpp/jsi/JsiSimpleValueWrapper.h +0 -99
- package/cpp/skia/include/c/sk_canvas.h +0 -159
- package/cpp/skia/include/c/sk_colorspace.h +0 -25
- package/cpp/skia/include/c/sk_data.h +0 -65
- package/cpp/skia/include/c/sk_image.h +0 -71
- package/cpp/skia/include/c/sk_imageinfo.h +0 -62
- package/cpp/skia/include/c/sk_maskfilter.h +0 -47
- package/cpp/skia/include/c/sk_matrix.h +0 -49
- package/cpp/skia/include/c/sk_paint.h +0 -145
- package/cpp/skia/include/c/sk_path.h +0 -102
- package/cpp/skia/include/c/sk_picture.h +0 -70
- package/cpp/skia/include/c/sk_shader.h +0 -143
- package/cpp/skia/include/c/sk_surface.h +0 -73
- package/cpp/skia/include/c/sk_types.h +0 -278
- package/cpp/skia/include/gpu/graphite/SkStuff.h +0 -47
- package/cpp/skia/include/private/SkNx.h +0 -430
- package/cpp/skia/include/private/SkNx_neon.h +0 -713
- package/cpp/skia/include/private/SkNx_sse.h +0 -823
- package/cpp/skia/include/sksl/DSLRuntimeEffects.h +0 -32
- package/cpp/skia/include/sksl/DSLWrapper.h +0 -77
@@ -0,0 +1,173 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "DerivedNodeProp.h"
|
4
|
+
|
5
|
+
#include "JsiSkImage.h"
|
6
|
+
|
7
|
+
#include <algorithm>
|
8
|
+
#include <memory>
|
9
|
+
#include <string>
|
10
|
+
|
11
|
+
namespace RNSkia {
|
12
|
+
|
13
|
+
struct FitSizes {
|
14
|
+
SkSize src;
|
15
|
+
SkSize dst;
|
16
|
+
};
|
17
|
+
|
18
|
+
struct FitRects {
|
19
|
+
SkRect src;
|
20
|
+
SkRect dst;
|
21
|
+
};
|
22
|
+
|
23
|
+
static PropId PropNameImage = JsiPropId::get("image");
|
24
|
+
static PropId PropNameFit = JsiPropId::get("fit");
|
25
|
+
|
26
|
+
class ImageProp : public DerivedSkProp<SkImage> {
|
27
|
+
public:
|
28
|
+
explicit ImageProp(PropId name) : DerivedSkProp<SkImage>() {
|
29
|
+
_imageProp = addProperty(std::make_shared<NodeProp>(name));
|
30
|
+
}
|
31
|
+
|
32
|
+
void updateDerivedValue() override {
|
33
|
+
if (_imageProp->value().getType() != PropType::HostObject) {
|
34
|
+
throw std::runtime_error("Expected SkImage object for the " +
|
35
|
+
std::string(getName()) + " property.");
|
36
|
+
}
|
37
|
+
|
38
|
+
auto ptr = std::dynamic_pointer_cast<JsiSkImage>(
|
39
|
+
_imageProp->value().getAsHostObject());
|
40
|
+
if (ptr == nullptr) {
|
41
|
+
throw std::runtime_error("Expected SkImage object for the " +
|
42
|
+
std::string(getName()) + " property.");
|
43
|
+
}
|
44
|
+
|
45
|
+
setDerivedValue(ptr->getObject());
|
46
|
+
}
|
47
|
+
|
48
|
+
private:
|
49
|
+
NodeProp *_imageProp;
|
50
|
+
};
|
51
|
+
|
52
|
+
class ImageProps : public DerivedProp<FitRects> {
|
53
|
+
public:
|
54
|
+
ImageProps() : DerivedProp<FitRects>() {
|
55
|
+
_fitProp = addProperty(std::make_shared<NodeProp>(PropNameFit));
|
56
|
+
_imageProp = addProperty(std::make_shared<ImageProp>(PropNameImage));
|
57
|
+
_rectProp = addProperty(std::make_shared<RectProps>(PropNameRect));
|
58
|
+
}
|
59
|
+
|
60
|
+
void updateDerivedValue() override {
|
61
|
+
if (!_imageProp->isSet()) {
|
62
|
+
throw std::runtime_error("Image property is not set on the Image node.");
|
63
|
+
}
|
64
|
+
|
65
|
+
auto image = _imageProp->getDerivedValue();
|
66
|
+
auto imageRect = SkRect::MakeXYWH(0, 0, image->width(), image->height());
|
67
|
+
|
68
|
+
auto rect = _rectProp->getDerivedValue() ? *_rectProp->getDerivedValue()
|
69
|
+
: imageRect;
|
70
|
+
auto fit = _fitProp->isSet() ? _fitProp->value().getAsString() : "none";
|
71
|
+
|
72
|
+
setDerivedValue(fitRects(fit, imageRect, rect));
|
73
|
+
}
|
74
|
+
|
75
|
+
sk_sp<SkImage> getImage() { return _imageProp->getDerivedValue(); }
|
76
|
+
std::shared_ptr<SkRect> getRect() { return _rectProp->getDerivedValue(); }
|
77
|
+
|
78
|
+
SkRect rect2rect(SkRect src, SkRect dst) {
|
79
|
+
auto scaleX = dst.width() / src.width();
|
80
|
+
auto scaleY = dst.height() / src.height();
|
81
|
+
auto translateX = dst.x() - src.x() * scaleX;
|
82
|
+
auto translateY = dst.y() - src.y() * scaleY;
|
83
|
+
return SkRect::MakeXYWH(translateX, translateY, scaleX, scaleY);
|
84
|
+
}
|
85
|
+
|
86
|
+
private:
|
87
|
+
SkSize size(double width, double height) {
|
88
|
+
return SkSize::Make(width, height);
|
89
|
+
}
|
90
|
+
|
91
|
+
FitRects fitRects(const std::string &fit, SkRect rect, SkRect rect2) {
|
92
|
+
auto sizes = applyBoxFit(fit, size(rect.width(), rect.height()),
|
93
|
+
size(rect2.width(), rect2.height()));
|
94
|
+
|
95
|
+
auto src = inscribe(sizes.src, rect);
|
96
|
+
auto dst = inscribe(sizes.dst, rect2);
|
97
|
+
|
98
|
+
return {.src = src, .dst = dst};
|
99
|
+
}
|
100
|
+
|
101
|
+
SkRect inscribe(SkSize size, SkRect rect) {
|
102
|
+
auto halfWidthDelta = (rect.width() - size.width()) / 2.0;
|
103
|
+
auto halfHeightDelta = (rect.height() - size.height()) / 2.0;
|
104
|
+
return SkRect::MakeXYWH(rect.x() + halfWidthDelta,
|
105
|
+
rect.y() + halfHeightDelta, size.width(),
|
106
|
+
size.height());
|
107
|
+
}
|
108
|
+
|
109
|
+
FitSizes applyBoxFit(const std::string fit, SkSize input, SkSize output) {
|
110
|
+
SkSize src = size(0, 0);
|
111
|
+
SkSize dst = size(0, 0);
|
112
|
+
|
113
|
+
if (input.height() <= 0.0 || input.width() <= 0.0 ||
|
114
|
+
output.height() <= 0.0 || output.width() <= 0.0) {
|
115
|
+
return {.src = src, .dst = dst};
|
116
|
+
}
|
117
|
+
|
118
|
+
if (fit == "fill") {
|
119
|
+
src = input;
|
120
|
+
dst = output;
|
121
|
+
} else if (fit == "contain") {
|
122
|
+
src = input;
|
123
|
+
if (output.width() / output.height() > src.width() / src.height()) {
|
124
|
+
dst = size((src.width() * output.height()) / src.height(),
|
125
|
+
output.height());
|
126
|
+
} else {
|
127
|
+
dst =
|
128
|
+
size(output.width(), (src.height() * output.width()) / src.width());
|
129
|
+
}
|
130
|
+
} else if (fit == "cover") {
|
131
|
+
if (output.width() / output.height() > input.width() / input.height()) {
|
132
|
+
src = size(input.width(),
|
133
|
+
(input.width() * output.height()) / output.width());
|
134
|
+
} else {
|
135
|
+
src = size((input.height() * output.width()) / output.height(),
|
136
|
+
input.height());
|
137
|
+
}
|
138
|
+
dst = output;
|
139
|
+
} else if (fit == "fitWidth") {
|
140
|
+
src = size(input.width(),
|
141
|
+
(input.width() * output.height()) / output.width());
|
142
|
+
dst = size(output.width(), (src.height() * output.width()) / src.width());
|
143
|
+
} else if (fit == "fitHeight") {
|
144
|
+
src = size((input.height() * output.width()) / output.height(),
|
145
|
+
input.height());
|
146
|
+
dst =
|
147
|
+
size((src.width() * output.height()) / src.height(), output.height());
|
148
|
+
} else if (fit == "none") {
|
149
|
+
src = size(std::min(input.width(), output.width()),
|
150
|
+
std::min(input.height(), output.height()));
|
151
|
+
dst = src;
|
152
|
+
} else if (fit == "scaleDown") {
|
153
|
+
src = input;
|
154
|
+
dst = input;
|
155
|
+
auto aspectRatio = input.width() / input.height();
|
156
|
+
if (dst.height() > output.height()) {
|
157
|
+
dst = size(output.height() * aspectRatio, output.height());
|
158
|
+
}
|
159
|
+
if (dst.width() > output.width()) {
|
160
|
+
dst = size(output.width(), output.width() / aspectRatio);
|
161
|
+
}
|
162
|
+
} else {
|
163
|
+
throw std::runtime_error("The value \"" + fit +
|
164
|
+
"\" is not a valid fit value.");
|
165
|
+
}
|
166
|
+
return {.src = src, .dst = dst};
|
167
|
+
}
|
168
|
+
|
169
|
+
NodeProp *_fitProp;
|
170
|
+
ImageProp *_imageProp;
|
171
|
+
RectProps *_rectProp;
|
172
|
+
};
|
173
|
+
} // namespace RNSkia
|
@@ -0,0 +1,50 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "DerivedNodeProp.h"
|
4
|
+
|
5
|
+
#include "PaintProps.h"
|
6
|
+
|
7
|
+
#include <memory>
|
8
|
+
|
9
|
+
namespace RNSkia {
|
10
|
+
|
11
|
+
class LayerProp : public DerivedProp<SkPaint> {
|
12
|
+
public:
|
13
|
+
explicit LayerProp(PropId name) : DerivedProp<SkPaint>() {
|
14
|
+
_layerPaintProp = addProperty(std::make_shared<PaintProp>(name));
|
15
|
+
_layerBoolProp = addProperty(std::make_shared<NodeProp>(name));
|
16
|
+
}
|
17
|
+
|
18
|
+
/**
|
19
|
+
Returns true if is optional and one of the child props has a value, or all
|
20
|
+
props if optional is false.
|
21
|
+
*/
|
22
|
+
bool isSet() override { return DerivedProp<SkPaint>::isSet() || _isBool; };
|
23
|
+
|
24
|
+
void updateDerivedValue() override {
|
25
|
+
if (_layerBoolProp->isSet() &&
|
26
|
+
_layerBoolProp->value().getType() == PropType::Bool) {
|
27
|
+
_isBool = true;
|
28
|
+
setDerivedValue(nullptr);
|
29
|
+
return;
|
30
|
+
}
|
31
|
+
|
32
|
+
if (_layerPaintProp->isSet()) {
|
33
|
+
// We have a paint object for the layer property
|
34
|
+
setDerivedValue(_layerPaintProp->getDerivedValue());
|
35
|
+
_isBool = false;
|
36
|
+
} else {
|
37
|
+
_isBool = false;
|
38
|
+
setDerivedValue(nullptr);
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
bool isBool() { return _isBool; }
|
43
|
+
|
44
|
+
private:
|
45
|
+
PaintProp *_layerPaintProp;
|
46
|
+
NodeProp *_layerBoolProp;
|
47
|
+
std::atomic<bool> _isBool;
|
48
|
+
};
|
49
|
+
|
50
|
+
} // namespace RNSkia
|
@@ -0,0 +1,33 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "DerivedNodeProp.h"
|
4
|
+
#include "JsiSkMatrix.h"
|
5
|
+
|
6
|
+
#include <memory>
|
7
|
+
|
8
|
+
namespace RNSkia {
|
9
|
+
|
10
|
+
static PropId PropNameMatrix = JsiPropId::get("matrix");
|
11
|
+
|
12
|
+
class MatrixProp : public DerivedProp<SkMatrix> {
|
13
|
+
public:
|
14
|
+
explicit MatrixProp(PropId name) : DerivedProp<SkMatrix>() {
|
15
|
+
_matrixProp = addProperty(std::make_shared<NodeProp>(name));
|
16
|
+
}
|
17
|
+
|
18
|
+
void updateDerivedValue() override {
|
19
|
+
if (_matrixProp->isSet() &&
|
20
|
+
_matrixProp->value().getType() == PropType::HostObject) {
|
21
|
+
// Try reading as SkMatrix
|
22
|
+
auto matrix = _matrixProp->value().getAs<JsiSkMatrix>();
|
23
|
+
if (matrix != nullptr) {
|
24
|
+
setDerivedValue(matrix->getObject());
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
private:
|
30
|
+
NodeProp *_matrixProp;
|
31
|
+
};
|
32
|
+
|
33
|
+
} // namespace RNSkia
|
@@ -0,0 +1,63 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "DerivedNodeProp.h"
|
4
|
+
|
5
|
+
#include <memory>
|
6
|
+
#include <string>
|
7
|
+
#include <utility>
|
8
|
+
#include <vector>
|
9
|
+
|
10
|
+
namespace RNSkia {
|
11
|
+
|
12
|
+
class NumbersProp : public DerivedProp<std::vector<SkScalar>> {
|
13
|
+
public:
|
14
|
+
explicit NumbersProp(PropId name) : DerivedProp<std::vector<SkScalar>>() {
|
15
|
+
_positionProp = addProperty(std::make_shared<NodeProp>(name));
|
16
|
+
}
|
17
|
+
|
18
|
+
void updateDerivedValue() override {
|
19
|
+
if (_positionProp->isSet()) {
|
20
|
+
auto positions = _positionProp->value().getAsArray();
|
21
|
+
std::vector<SkScalar> derivedPositions;
|
22
|
+
derivedPositions.reserve(positions.size());
|
23
|
+
|
24
|
+
for (size_t i = 0; i < positions.size(); ++i) {
|
25
|
+
derivedPositions.push_back(positions[i].getAsNumber());
|
26
|
+
}
|
27
|
+
setDerivedValue(std::move(derivedPositions));
|
28
|
+
} else {
|
29
|
+
setDerivedValue(nullptr);
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
private:
|
34
|
+
NodeProp *_positionProp;
|
35
|
+
};
|
36
|
+
|
37
|
+
class Numbers16Prop : public DerivedProp<std::vector<u_int16_t>> {
|
38
|
+
public:
|
39
|
+
explicit Numbers16Prop(PropId name) : DerivedProp<std::vector<u_int16_t>>() {
|
40
|
+
_prop = addProperty(std::make_shared<NodeProp>(name));
|
41
|
+
}
|
42
|
+
|
43
|
+
void updateDerivedValue() override {
|
44
|
+
if (_prop->isSet()) {
|
45
|
+
auto positions = _prop->value().getAsArray();
|
46
|
+
std::vector<u_int16_t> derivedPositions;
|
47
|
+
derivedPositions.reserve(positions.size());
|
48
|
+
|
49
|
+
for (size_t i = 0; i < positions.size(); ++i) {
|
50
|
+
derivedPositions.push_back(
|
51
|
+
static_cast<u_int16_t>(positions[i].getAsNumber()));
|
52
|
+
}
|
53
|
+
setDerivedValue(std::move(derivedPositions));
|
54
|
+
} else {
|
55
|
+
setDerivedValue(nullptr);
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
private:
|
60
|
+
NodeProp *_prop;
|
61
|
+
};
|
62
|
+
|
63
|
+
} // namespace RNSkia
|
@@ -0,0 +1,172 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "BlendModeProp.h"
|
4
|
+
#include "ColorProp.h"
|
5
|
+
#include "NodeProp.h"
|
6
|
+
#include "StrokeProps.h"
|
7
|
+
|
8
|
+
#include "JsiSkPaint.h"
|
9
|
+
#include "third_party/CSSColorParser.h"
|
10
|
+
|
11
|
+
#include <memory>
|
12
|
+
|
13
|
+
#pragma clang diagnostic push
|
14
|
+
#pragma clang diagnostic ignored "-Wdocumentation"
|
15
|
+
|
16
|
+
#include <SkPaint.h>
|
17
|
+
|
18
|
+
#pragma clang diagnostic pop
|
19
|
+
|
20
|
+
namespace RNSkia {
|
21
|
+
|
22
|
+
static PropId PropNameCurrent = JsiPropId::get("current");
|
23
|
+
|
24
|
+
class PaintProp : public DerivedProp<SkPaint> {
|
25
|
+
public:
|
26
|
+
explicit PaintProp(PropId name) : DerivedProp<SkPaint>() {
|
27
|
+
_paintProp = addProperty(std::make_shared<NodeProp>(name));
|
28
|
+
}
|
29
|
+
|
30
|
+
PaintProp() : PaintProp(JsiPropId::get("paint")) {}
|
31
|
+
|
32
|
+
void updateDerivedValue() override {
|
33
|
+
if (_paintProp->isSet()) {
|
34
|
+
if (_paintProp->value().getType() == PropType::HostObject) {
|
35
|
+
// Read paint property as Host Object - JsiSkPaint
|
36
|
+
auto ptr = _paintProp->value().getAs<JsiSkPaint>();
|
37
|
+
if (ptr != nullptr) {
|
38
|
+
setDerivedValue(ptr->getObject());
|
39
|
+
} else {
|
40
|
+
throw std::runtime_error("Expected SkPaint object, got unknown "
|
41
|
+
"object when reading paint property.");
|
42
|
+
}
|
43
|
+
} else if (_paintProp->value().getType() == PropType::Object) {
|
44
|
+
// We have a JS object - is it a ref?
|
45
|
+
auto ref = _paintProp->value().getValue(PropNameCurrent);
|
46
|
+
if (ref.getType() == PropType::HostObject) {
|
47
|
+
auto ptr = ref.getAs<JsiSkPaint>();
|
48
|
+
if (ptr != nullptr) {
|
49
|
+
// Update the local paint for the current context
|
50
|
+
setDerivedValue(ptr->getObject());
|
51
|
+
} else {
|
52
|
+
throw std::runtime_error(
|
53
|
+
"Expected reference to a SkPaint object, got unknown object "
|
54
|
+
"when reading paint property.");
|
55
|
+
}
|
56
|
+
}
|
57
|
+
} else {
|
58
|
+
setDerivedValue(nullptr);
|
59
|
+
}
|
60
|
+
} else {
|
61
|
+
setDerivedValue(nullptr);
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
private:
|
66
|
+
NodeProp *_paintProp;
|
67
|
+
};
|
68
|
+
|
69
|
+
class PaintProps : public BaseDerivedProp {
|
70
|
+
public:
|
71
|
+
PaintProps() : BaseDerivedProp() {
|
72
|
+
_color = addProperty(std::make_shared<ColorProp>(JsiPropId::get("color")));
|
73
|
+
_style = addProperty(std::make_shared<NodeProp>(JsiPropId::get("style")));
|
74
|
+
_strokeWidth =
|
75
|
+
addProperty(std::make_shared<NodeProp>(JsiPropId::get("strokeWidth")));
|
76
|
+
_blendMode = addProperty(
|
77
|
+
std::make_shared<BlendModeProp>(JsiPropId::get("blendMode")));
|
78
|
+
_strokeJoin = addProperty(
|
79
|
+
std::make_shared<StrokeJoinProp>(JsiPropId::get("strokeJoin")));
|
80
|
+
_strokeCap = addProperty(
|
81
|
+
std::make_shared<StrokeCapProp>(JsiPropId::get("strokeCap")));
|
82
|
+
_strokeMiter =
|
83
|
+
addProperty(std::make_shared<NodeProp>(JsiPropId::get("strokeMiter")));
|
84
|
+
_antiAlias =
|
85
|
+
addProperty(std::make_shared<NodeProp>(JsiPropId::get("antiAlias")));
|
86
|
+
_opacity =
|
87
|
+
addProperty(std::make_shared<NodeProp>(JsiPropId::get("opacity")));
|
88
|
+
}
|
89
|
+
|
90
|
+
void decorate(DrawingContext *context) {
|
91
|
+
// Now we can start updating the context
|
92
|
+
|
93
|
+
// Opacity
|
94
|
+
if (_opacity->isChanged() || context->isChanged()) {
|
95
|
+
if (_opacity->isSet()) {
|
96
|
+
context->setOpacity(_opacity->value().getAsNumber());
|
97
|
+
} else {
|
98
|
+
context->clearOpacity();
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
// COLOR
|
103
|
+
if (_color->isSet() && (_color->isChanged() || context->isChanged())) {
|
104
|
+
auto paint = context->getMutablePaint();
|
105
|
+
paint->setShader(nullptr);
|
106
|
+
paint->setColor(*_color->getDerivedValue());
|
107
|
+
paint->setAlphaf(context->getOpacity() * paint->getColor4f().fA);
|
108
|
+
}
|
109
|
+
|
110
|
+
// Style
|
111
|
+
if (_style->isSet() && (_style->isChanged() || context->isChanged())) {
|
112
|
+
auto styleValue = _style->value().getAsString();
|
113
|
+
if (styleValue == "stroke") {
|
114
|
+
context->getMutablePaint()->setStyle(SkPaint::Style::kStroke_Style);
|
115
|
+
} else if (styleValue == "fill") {
|
116
|
+
context->getMutablePaint()->setStyle(SkPaint::Style::kFill_Style);
|
117
|
+
} else {
|
118
|
+
throw std::runtime_error(
|
119
|
+
styleValue + " is not a valud value for the style property.");
|
120
|
+
}
|
121
|
+
}
|
122
|
+
// Stroke Width
|
123
|
+
if (_strokeWidth->isSet() &&
|
124
|
+
(_strokeWidth->isChanged() || context->isChanged())) {
|
125
|
+
context->getMutablePaint()->setStrokeWidth(
|
126
|
+
_strokeWidth->value().getAsNumber());
|
127
|
+
}
|
128
|
+
// Blend mode
|
129
|
+
if (_blendMode->isSet() &&
|
130
|
+
(_blendMode->isChanged() || context->isChanged())) {
|
131
|
+
context->getMutablePaint()->setBlendMode(*_blendMode->getDerivedValue());
|
132
|
+
}
|
133
|
+
// Stroke Join
|
134
|
+
if (_strokeJoin->isSet() &&
|
135
|
+
(_strokeJoin->isChanged() || context->isChanged())) {
|
136
|
+
context->getMutablePaint()->setStrokeJoin(
|
137
|
+
*_strokeJoin->getDerivedValue());
|
138
|
+
}
|
139
|
+
// Stroke Cap
|
140
|
+
if (_strokeCap->isSet() &&
|
141
|
+
(_strokeCap->isChanged() || context->isChanged())) {
|
142
|
+
context->getMutablePaint()->setStrokeCap(*_strokeCap->getDerivedValue());
|
143
|
+
}
|
144
|
+
// Stroke Miter
|
145
|
+
if (_strokeMiter->isSet() &&
|
146
|
+
(_strokeMiter->isChanged() || context->isChanged())) {
|
147
|
+
context->getMutablePaint()->setStrokeMiter(
|
148
|
+
_strokeMiter->value().getAsNumber());
|
149
|
+
}
|
150
|
+
// AntiAlias
|
151
|
+
if (_antiAlias->isSet() &&
|
152
|
+
(_antiAlias->isChanged() || context->isChanged())) {
|
153
|
+
context->getMutablePaint()->setAntiAlias(
|
154
|
+
_antiAlias->value().getAsNumber());
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
void updateDerivedValue() override {}
|
159
|
+
|
160
|
+
private:
|
161
|
+
ColorProp *_color;
|
162
|
+
NodeProp *_style;
|
163
|
+
NodeProp *_strokeWidth;
|
164
|
+
BlendModeProp *_blendMode;
|
165
|
+
StrokeJoinProp *_strokeJoin;
|
166
|
+
StrokeCapProp *_strokeCap;
|
167
|
+
NodeProp *_strokeMiter;
|
168
|
+
NodeProp *_antiAlias;
|
169
|
+
NodeProp *_opacity;
|
170
|
+
};
|
171
|
+
|
172
|
+
} // namespace RNSkia
|
@@ -0,0 +1,55 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "DerivedNodeProp.h"
|
4
|
+
#include "JsiSkPath.h"
|
5
|
+
|
6
|
+
#include <memory>
|
7
|
+
|
8
|
+
#pragma clang diagnostic push
|
9
|
+
#pragma clang diagnostic ignored "-Wdocumentation"
|
10
|
+
|
11
|
+
#include <SkPath.h>
|
12
|
+
|
13
|
+
#pragma clang diagnostic pop
|
14
|
+
|
15
|
+
namespace RNSkia {
|
16
|
+
|
17
|
+
class PathProp : public DerivedProp<SkPath> {
|
18
|
+
public:
|
19
|
+
explicit PathProp(PropId name) : DerivedProp<SkPath>() {
|
20
|
+
_pathProp = addProperty(std::make_shared<NodeProp>(name));
|
21
|
+
}
|
22
|
+
|
23
|
+
void updateDerivedValue() override {
|
24
|
+
if (!_pathProp->isSet()) {
|
25
|
+
setDerivedValue(nullptr);
|
26
|
+
return;
|
27
|
+
}
|
28
|
+
|
29
|
+
if (_pathProp->value().getType() == PropType::HostObject) {
|
30
|
+
// Try reading as Path
|
31
|
+
auto ptr = std::dynamic_pointer_cast<JsiSkPath>(
|
32
|
+
_pathProp->value().getAsHostObject());
|
33
|
+
if (ptr != nullptr) {
|
34
|
+
setDerivedValue(ptr->getObject());
|
35
|
+
}
|
36
|
+
} else if (_pathProp->value().getType() == PropType::String) {
|
37
|
+
// Read as string
|
38
|
+
auto pathString = _pathProp->value().getAsString();
|
39
|
+
SkPath result;
|
40
|
+
|
41
|
+
if (SkParsePath::FromSVGString(pathString.c_str(), &result)) {
|
42
|
+
setDerivedValue(std::make_shared<SkPath>(result));
|
43
|
+
} else {
|
44
|
+
throw std::runtime_error("Could not parse path from string.");
|
45
|
+
}
|
46
|
+
} else {
|
47
|
+
setDerivedValue(nullptr);
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
private:
|
52
|
+
NodeProp *_pathProp;
|
53
|
+
};
|
54
|
+
|
55
|
+
} // namespace RNSkia
|
@@ -0,0 +1,38 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "DerivedNodeProp.h"
|
4
|
+
|
5
|
+
#include "JsiSkPicture.h"
|
6
|
+
|
7
|
+
#include <memory>
|
8
|
+
#include <string>
|
9
|
+
|
10
|
+
namespace RNSkia {
|
11
|
+
|
12
|
+
class PictureProp : public DerivedSkProp<SkPicture> {
|
13
|
+
public:
|
14
|
+
explicit PictureProp(PropId name) : DerivedSkProp<SkPicture>() {
|
15
|
+
_pictureProp = addProperty(std::make_shared<NodeProp>(name));
|
16
|
+
}
|
17
|
+
|
18
|
+
void updateDerivedValue() override {
|
19
|
+
if (_pictureProp->value().getType() != PropType::HostObject) {
|
20
|
+
throw std::runtime_error("Expected SkPicture object for the " +
|
21
|
+
std::string(getName()) + " property.");
|
22
|
+
}
|
23
|
+
|
24
|
+
auto ptr = std::dynamic_pointer_cast<JsiSkPicture>(
|
25
|
+
_pictureProp->value().getAsHostObject());
|
26
|
+
if (ptr == nullptr) {
|
27
|
+
throw std::runtime_error("Expected SkPicture object for the " +
|
28
|
+
std::string(getName()) + " property.");
|
29
|
+
}
|
30
|
+
|
31
|
+
setDerivedValue(ptr->getObject());
|
32
|
+
}
|
33
|
+
|
34
|
+
private:
|
35
|
+
NodeProp *_pictureProp;
|
36
|
+
};
|
37
|
+
|
38
|
+
} // namespace RNSkia
|
@@ -0,0 +1,72 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "DerivedNodeProp.h"
|
4
|
+
#include "JsiSkPoint.h"
|
5
|
+
|
6
|
+
#include <memory>
|
7
|
+
#include <utility>
|
8
|
+
|
9
|
+
#pragma clang diagnostic push
|
10
|
+
#pragma clang diagnostic ignored "-Wdocumentation"
|
11
|
+
|
12
|
+
#include <SkPoint.h>
|
13
|
+
|
14
|
+
#pragma clang diagnostic pop
|
15
|
+
|
16
|
+
namespace RNSkia {
|
17
|
+
|
18
|
+
static PropId PropNameX = JsiPropId::get("x");
|
19
|
+
static PropId PropNameY = JsiPropId::get("y");
|
20
|
+
static SkPoint EmptyPoint = SkPoint::Make(-1, -1);
|
21
|
+
|
22
|
+
class PointProp : public DerivedProp<SkPoint> {
|
23
|
+
public:
|
24
|
+
explicit PointProp(PropId name) : DerivedProp<SkPoint>() {
|
25
|
+
_pointProp = addProperty(std::make_shared<NodeProp>(name));
|
26
|
+
}
|
27
|
+
|
28
|
+
void updateDerivedValue() override {
|
29
|
+
auto point = processProperty(_pointProp);
|
30
|
+
if (EmptyPoint != point) {
|
31
|
+
setDerivedValue(std::move(point));
|
32
|
+
} else {
|
33
|
+
setDerivedValue(nullptr);
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
static SkPoint processValue(const JsiValue &value) {
|
38
|
+
if (value.getType() == PropType::HostObject) {
|
39
|
+
// Try reading as point
|
40
|
+
auto ptr = std::dynamic_pointer_cast<JsiSkPoint>(value.getAsHostObject());
|
41
|
+
if (ptr != nullptr) {
|
42
|
+
return SkPoint::Make(ptr->getObject()->x(), ptr->getObject()->y());
|
43
|
+
} else {
|
44
|
+
// Try reading as rect
|
45
|
+
auto ptr =
|
46
|
+
std::dynamic_pointer_cast<JsiSkRect>(value.getAsHostObject());
|
47
|
+
if (ptr != nullptr) {
|
48
|
+
return SkPoint::Make(ptr->getObject()->x(), ptr->getObject()->y());
|
49
|
+
}
|
50
|
+
}
|
51
|
+
} else if (value.getType() == PropType::Object &&
|
52
|
+
value.hasValue(PropNameX) && value.hasValue(PropNameY)) {
|
53
|
+
auto x = value.getValue(PropNameX);
|
54
|
+
auto y = value.getValue(PropNameY);
|
55
|
+
return SkPoint::Make(x.getAsNumber(), y.getAsNumber());
|
56
|
+
}
|
57
|
+
return EmptyPoint;
|
58
|
+
}
|
59
|
+
|
60
|
+
static SkPoint processProperty(NodeProp *prop) {
|
61
|
+
if (prop->isSet()) {
|
62
|
+
// Check for JsiSkRect and JsiSkPoint
|
63
|
+
return processValue(prop->value());
|
64
|
+
}
|
65
|
+
return EmptyPoint;
|
66
|
+
}
|
67
|
+
|
68
|
+
private:
|
69
|
+
NodeProp *_pointProp;
|
70
|
+
};
|
71
|
+
|
72
|
+
} // namespace RNSkia
|