@shopify/react-native-skia 0.1.157 → 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 +31 -30
- 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/JsiSkContourMeasure.h +7 -5
- 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/DrawingNode.js +1 -5
- package/lib/commonjs/dom/nodes/DrawingNode.js.map +1 -1
- 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 +3 -9
- package/lib/commonjs/dom/nodes/RenderNode.js.map +1 -1
- package/lib/commonjs/dom/nodes/drawings/Text.js +4 -9
- package/lib/commonjs/dom/nodes/drawings/Text.js.map +1 -1
- package/lib/commonjs/dom/types/Common.js.map +1 -1
- package/lib/commonjs/dom/types/Drawings.js.map +1 -1
- package/lib/commonjs/mock/index.js +0 -1
- package/lib/commonjs/mock/index.js.map +1 -1
- package/lib/commonjs/renderer/Canvas.js +21 -57
- 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/components/Mask.js +1 -3
- package/lib/commonjs/renderer/components/Mask.js.map +1 -1
- package/lib/commonjs/renderer/components/Paint.js +5 -18
- package/lib/commonjs/renderer/components/Paint.js.map +1 -1
- package/lib/commonjs/renderer/useCanvas.js +8 -6
- package/lib/commonjs/renderer/useCanvas.js.map +1 -1
- package/lib/commonjs/skia/core/Picture.js +1 -24
- package/lib/commonjs/skia/core/Picture.js.map +1 -1
- package/lib/commonjs/skia/core/Rect.js +1 -1
- package/lib/commonjs/skia/core/Rect.js.map +1 -1
- package/lib/commonjs/skia/types/ContourMeasure.js.map +1 -1
- package/lib/commonjs/skia/types/Size.js +2 -0
- package/lib/commonjs/skia/types/Size.js.map +1 -0
- package/lib/commonjs/skia/types/index.js +13 -0
- package/lib/commonjs/skia/types/index.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkColor.js +8 -0
- package/lib/commonjs/skia/web/JsiSkColor.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkContourMeasure.js +4 -7
- package/lib/commonjs/skia/web/JsiSkContourMeasure.js.map +1 -1
- package/lib/commonjs/values/web/RNSkReadonlyValue.js +4 -2
- package/lib/commonjs/values/web/RNSkReadonlyValue.js.map +1 -1
- package/lib/commonjs/views/SkiaBaseWebView.js +9 -2
- 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/DrawingNode.js +2 -6
- package/lib/module/dom/nodes/DrawingNode.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 +2 -5
- package/lib/module/dom/nodes/RenderNode.js.map +1 -1
- package/lib/module/dom/nodes/drawings/Text.js +4 -9
- package/lib/module/dom/nodes/drawings/Text.js.map +1 -1
- package/lib/module/dom/types/Common.js.map +1 -1
- package/lib/module/dom/types/Drawings.js.map +1 -1
- package/lib/module/mock/index.js +0 -1
- package/lib/module/mock/index.js.map +1 -1
- package/lib/module/renderer/Canvas.js +22 -58
- 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/components/Mask.js +2 -4
- package/lib/module/renderer/components/Mask.js.map +1 -1
- package/lib/module/renderer/components/Paint.js +3 -14
- package/lib/module/renderer/components/Paint.js.map +1 -1
- package/lib/module/renderer/useCanvas.js +6 -4
- package/lib/module/renderer/useCanvas.js.map +1 -1
- package/lib/module/skia/core/Picture.js +0 -18
- package/lib/module/skia/core/Picture.js.map +1 -1
- package/lib/module/skia/core/Rect.js +1 -1
- package/lib/module/skia/core/Rect.js.map +1 -1
- package/lib/module/skia/types/ContourMeasure.js.map +1 -1
- package/lib/module/skia/types/Size.js +2 -0
- package/lib/module/skia/types/Size.js.map +1 -0
- package/lib/module/skia/types/index.js +1 -0
- package/lib/module/skia/types/index.js.map +1 -1
- package/lib/module/skia/web/JsiSkColor.js +8 -0
- package/lib/module/skia/web/JsiSkColor.js.map +1 -1
- package/lib/module/skia/web/JsiSkContourMeasure.js +3 -7
- package/lib/module/skia/web/JsiSkContourMeasure.js.map +1 -1
- package/lib/module/values/web/RNSkReadonlyValue.js +4 -2
- package/lib/module/values/web/RNSkReadonlyValue.js.map +1 -1
- package/lib/module/views/SkiaBaseWebView.js +9 -2
- 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/dom/nodes/RenderNode.d.ts +1 -3
- package/lib/typescript/src/dom/types/Common.d.ts +2 -3
- package/lib/typescript/src/dom/types/Drawings.d.ts +1 -3
- package/lib/typescript/src/renderer/Canvas.d.ts +5 -5
- package/lib/typescript/src/renderer/DependencyManager.d.ts +0 -2
- package/lib/typescript/src/renderer/HostComponents.d.ts +67 -8
- package/lib/typescript/src/renderer/components/Paint.d.ts +3 -4
- package/lib/typescript/src/renderer/useCanvas.d.ts +1 -6
- package/lib/typescript/src/skia/core/Picture.d.ts +0 -8
- package/lib/typescript/src/skia/types/ContourMeasure.d.ts +3 -2
- package/lib/typescript/src/skia/types/Size.d.ts +4 -0
- package/lib/typescript/src/skia/types/index.d.ts +1 -0
- package/lib/typescript/src/skia/web/JsiSkContourMeasure.d.ts +2 -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 +6 -4
- package/react-native-skia.podspec +3 -1
- package/src/dom/nodes/DrawingNode.ts +2 -4
- package/src/dom/nodes/JsiSkDOM.ts +170 -56
- package/src/dom/nodes/RenderNode.ts +2 -14
- package/src/dom/nodes/drawings/Text.ts +4 -4
- package/src/dom/types/Common.ts +2 -4
- package/src/dom/types/Drawings.ts +1 -4
- package/src/mock/index.ts +0 -1
- package/src/renderer/Canvas.tsx +32 -51
- package/src/renderer/DependencyManager.tsx +0 -5
- package/src/renderer/HostComponents.ts +153 -5
- package/src/renderer/components/Mask.tsx +2 -2
- package/src/renderer/components/Paint.tsx +3 -14
- package/src/renderer/useCanvas.ts +5 -5
- package/src/skia/core/Picture.ts +0 -24
- package/src/skia/core/Rect.ts +1 -1
- package/src/skia/types/ContourMeasure.tsx +3 -2
- package/src/skia/types/Size.ts +4 -0
- package/src/skia/types/index.ts +1 -0
- package/src/skia/web/JsiSkColor.ts +11 -0
- package/src/skia/web/JsiSkContourMeasure.ts +7 -3
- package/src/values/web/RNSkReadonlyValue.ts +4 -2
- package/src/views/SkiaBaseWebView.tsx +6 -2
- 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
@@ -1,713 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright 2015 Google Inc.
|
3
|
-
*
|
4
|
-
* Use of this source code is governed by a BSD-style license that can be
|
5
|
-
* found in the LICENSE file.
|
6
|
-
*/
|
7
|
-
|
8
|
-
#ifndef SkNx_neon_DEFINED
|
9
|
-
#define SkNx_neon_DEFINED
|
10
|
-
|
11
|
-
#include <arm_neon.h>
|
12
|
-
|
13
|
-
namespace { // NOLINT(google-build-namespaces)
|
14
|
-
|
15
|
-
// ARMv8 has vrndm(q)_f32 to floor floats. Here we emulate it:
|
16
|
-
// - roundtrip through integers via truncation
|
17
|
-
// - subtract 1 if that's too big (possible for negative values).
|
18
|
-
// This restricts the domain of our inputs to a maximum somehwere around 2^31. Seems plenty big.
|
19
|
-
AI static float32x4_t emulate_vrndmq_f32(float32x4_t v) {
|
20
|
-
auto roundtrip = vcvtq_f32_s32(vcvtq_s32_f32(v));
|
21
|
-
auto too_big = vcgtq_f32(roundtrip, v);
|
22
|
-
return vsubq_f32(roundtrip, (float32x4_t)vandq_u32(too_big, (uint32x4_t)vdupq_n_f32(1)));
|
23
|
-
}
|
24
|
-
AI static float32x2_t emulate_vrndm_f32(float32x2_t v) {
|
25
|
-
auto roundtrip = vcvt_f32_s32(vcvt_s32_f32(v));
|
26
|
-
auto too_big = vcgt_f32(roundtrip, v);
|
27
|
-
return vsub_f32(roundtrip, (float32x2_t)vand_u32(too_big, (uint32x2_t)vdup_n_f32(1)));
|
28
|
-
}
|
29
|
-
|
30
|
-
template <>
|
31
|
-
class SkNx<2, float> {
|
32
|
-
public:
|
33
|
-
AI SkNx(float32x2_t vec) : fVec(vec) {}
|
34
|
-
|
35
|
-
AI SkNx() {}
|
36
|
-
AI SkNx(float val) : fVec(vdup_n_f32(val)) {}
|
37
|
-
AI SkNx(float a, float b) { fVec = (float32x2_t) { a, b }; }
|
38
|
-
|
39
|
-
AI static SkNx Load(const void* ptr) { return vld1_f32((const float*)ptr); }
|
40
|
-
AI void store(void* ptr) const { vst1_f32((float*)ptr, fVec); }
|
41
|
-
|
42
|
-
AI static void Load2(const void* ptr, SkNx* x, SkNx* y) {
|
43
|
-
float32x2x2_t xy = vld2_f32((const float*) ptr);
|
44
|
-
*x = xy.val[0];
|
45
|
-
*y = xy.val[1];
|
46
|
-
}
|
47
|
-
|
48
|
-
AI static void Store2(void* dst, const SkNx& a, const SkNx& b) {
|
49
|
-
float32x2x2_t ab = {{
|
50
|
-
a.fVec,
|
51
|
-
b.fVec,
|
52
|
-
}};
|
53
|
-
vst2_f32((float*) dst, ab);
|
54
|
-
}
|
55
|
-
|
56
|
-
AI static void Store3(void* dst, const SkNx& a, const SkNx& b, const SkNx& c) {
|
57
|
-
float32x2x3_t abc = {{
|
58
|
-
a.fVec,
|
59
|
-
b.fVec,
|
60
|
-
c.fVec,
|
61
|
-
}};
|
62
|
-
vst3_f32((float*) dst, abc);
|
63
|
-
}
|
64
|
-
|
65
|
-
AI static void Store4(void* dst, const SkNx& a, const SkNx& b, const SkNx& c, const SkNx& d) {
|
66
|
-
float32x2x4_t abcd = {{
|
67
|
-
a.fVec,
|
68
|
-
b.fVec,
|
69
|
-
c.fVec,
|
70
|
-
d.fVec,
|
71
|
-
}};
|
72
|
-
vst4_f32((float*) dst, abcd);
|
73
|
-
}
|
74
|
-
|
75
|
-
AI SkNx operator - () const { return vneg_f32(fVec); }
|
76
|
-
|
77
|
-
AI SkNx operator + (const SkNx& o) const { return vadd_f32(fVec, o.fVec); }
|
78
|
-
AI SkNx operator - (const SkNx& o) const { return vsub_f32(fVec, o.fVec); }
|
79
|
-
AI SkNx operator * (const SkNx& o) const { return vmul_f32(fVec, o.fVec); }
|
80
|
-
AI SkNx operator / (const SkNx& o) const {
|
81
|
-
#if defined(SK_CPU_ARM64)
|
82
|
-
return vdiv_f32(fVec, o.fVec);
|
83
|
-
#else
|
84
|
-
float32x2_t est0 = vrecpe_f32(o.fVec),
|
85
|
-
est1 = vmul_f32(vrecps_f32(est0, o.fVec), est0),
|
86
|
-
est2 = vmul_f32(vrecps_f32(est1, o.fVec), est1);
|
87
|
-
return vmul_f32(fVec, est2);
|
88
|
-
#endif
|
89
|
-
}
|
90
|
-
|
91
|
-
AI SkNx operator==(const SkNx& o) const { return vreinterpret_f32_u32(vceq_f32(fVec, o.fVec)); }
|
92
|
-
AI SkNx operator <(const SkNx& o) const { return vreinterpret_f32_u32(vclt_f32(fVec, o.fVec)); }
|
93
|
-
AI SkNx operator >(const SkNx& o) const { return vreinterpret_f32_u32(vcgt_f32(fVec, o.fVec)); }
|
94
|
-
AI SkNx operator<=(const SkNx& o) const { return vreinterpret_f32_u32(vcle_f32(fVec, o.fVec)); }
|
95
|
-
AI SkNx operator>=(const SkNx& o) const { return vreinterpret_f32_u32(vcge_f32(fVec, o.fVec)); }
|
96
|
-
AI SkNx operator!=(const SkNx& o) const {
|
97
|
-
return vreinterpret_f32_u32(vmvn_u32(vceq_f32(fVec, o.fVec)));
|
98
|
-
}
|
99
|
-
|
100
|
-
AI static SkNx Min(const SkNx& l, const SkNx& r) { return vmin_f32(l.fVec, r.fVec); }
|
101
|
-
AI static SkNx Max(const SkNx& l, const SkNx& r) { return vmax_f32(l.fVec, r.fVec); }
|
102
|
-
|
103
|
-
AI SkNx abs() const { return vabs_f32(fVec); }
|
104
|
-
AI SkNx floor() const {
|
105
|
-
#if defined(SK_CPU_ARM64)
|
106
|
-
return vrndm_f32(fVec);
|
107
|
-
#else
|
108
|
-
return emulate_vrndm_f32(fVec);
|
109
|
-
#endif
|
110
|
-
}
|
111
|
-
|
112
|
-
AI SkNx sqrt() const {
|
113
|
-
#if defined(SK_CPU_ARM64)
|
114
|
-
return vsqrt_f32(fVec);
|
115
|
-
#else
|
116
|
-
float32x2_t est0 = vrsqrte_f32(fVec),
|
117
|
-
est1 = vmul_f32(vrsqrts_f32(fVec, vmul_f32(est0, est0)), est0),
|
118
|
-
est2 = vmul_f32(vrsqrts_f32(fVec, vmul_f32(est1, est1)), est1);
|
119
|
-
return vmul_f32(fVec, est2);
|
120
|
-
#endif
|
121
|
-
}
|
122
|
-
|
123
|
-
AI float operator[](int k) const {
|
124
|
-
SkASSERT(0 <= k && k < 2);
|
125
|
-
union { float32x2_t v; float fs[2]; } pun = {fVec};
|
126
|
-
return pun.fs[k&1];
|
127
|
-
}
|
128
|
-
|
129
|
-
AI bool allTrue() const {
|
130
|
-
#if defined(SK_CPU_ARM64)
|
131
|
-
return 0 != vminv_u32(vreinterpret_u32_f32(fVec));
|
132
|
-
#else
|
133
|
-
auto v = vreinterpret_u32_f32(fVec);
|
134
|
-
return vget_lane_u32(v,0) && vget_lane_u32(v,1);
|
135
|
-
#endif
|
136
|
-
}
|
137
|
-
AI bool anyTrue() const {
|
138
|
-
#if defined(SK_CPU_ARM64)
|
139
|
-
return 0 != vmaxv_u32(vreinterpret_u32_f32(fVec));
|
140
|
-
#else
|
141
|
-
auto v = vreinterpret_u32_f32(fVec);
|
142
|
-
return vget_lane_u32(v,0) || vget_lane_u32(v,1);
|
143
|
-
#endif
|
144
|
-
}
|
145
|
-
|
146
|
-
AI SkNx thenElse(const SkNx& t, const SkNx& e) const {
|
147
|
-
return vbsl_f32(vreinterpret_u32_f32(fVec), t.fVec, e.fVec);
|
148
|
-
}
|
149
|
-
|
150
|
-
float32x2_t fVec;
|
151
|
-
};
|
152
|
-
|
153
|
-
template <>
|
154
|
-
class SkNx<4, float> {
|
155
|
-
public:
|
156
|
-
AI SkNx(float32x4_t vec) : fVec(vec) {}
|
157
|
-
|
158
|
-
AI SkNx() {}
|
159
|
-
AI SkNx(float val) : fVec(vdupq_n_f32(val)) {}
|
160
|
-
AI SkNx(float a, float b, float c, float d) { fVec = (float32x4_t) { a, b, c, d }; }
|
161
|
-
|
162
|
-
AI static SkNx Load(const void* ptr) { return vld1q_f32((const float*)ptr); }
|
163
|
-
AI void store(void* ptr) const { vst1q_f32((float*)ptr, fVec); }
|
164
|
-
|
165
|
-
AI static void Load2(const void* ptr, SkNx* x, SkNx* y) {
|
166
|
-
float32x4x2_t xy = vld2q_f32((const float*) ptr);
|
167
|
-
*x = xy.val[0];
|
168
|
-
*y = xy.val[1];
|
169
|
-
}
|
170
|
-
|
171
|
-
AI static void Load4(const void* ptr, SkNx* r, SkNx* g, SkNx* b, SkNx* a) {
|
172
|
-
float32x4x4_t rgba = vld4q_f32((const float*) ptr);
|
173
|
-
*r = rgba.val[0];
|
174
|
-
*g = rgba.val[1];
|
175
|
-
*b = rgba.val[2];
|
176
|
-
*a = rgba.val[3];
|
177
|
-
}
|
178
|
-
AI static void Store4(void* dst, const SkNx& r, const SkNx& g, const SkNx& b, const SkNx& a) {
|
179
|
-
float32x4x4_t rgba = {{
|
180
|
-
r.fVec,
|
181
|
-
g.fVec,
|
182
|
-
b.fVec,
|
183
|
-
a.fVec,
|
184
|
-
}};
|
185
|
-
vst4q_f32((float*) dst, rgba);
|
186
|
-
}
|
187
|
-
|
188
|
-
AI SkNx operator - () const { return vnegq_f32(fVec); }
|
189
|
-
|
190
|
-
AI SkNx operator + (const SkNx& o) const { return vaddq_f32(fVec, o.fVec); }
|
191
|
-
AI SkNx operator - (const SkNx& o) const { return vsubq_f32(fVec, o.fVec); }
|
192
|
-
AI SkNx operator * (const SkNx& o) const { return vmulq_f32(fVec, o.fVec); }
|
193
|
-
AI SkNx operator / (const SkNx& o) const {
|
194
|
-
#if defined(SK_CPU_ARM64)
|
195
|
-
return vdivq_f32(fVec, o.fVec);
|
196
|
-
#else
|
197
|
-
float32x4_t est0 = vrecpeq_f32(o.fVec),
|
198
|
-
est1 = vmulq_f32(vrecpsq_f32(est0, o.fVec), est0),
|
199
|
-
est2 = vmulq_f32(vrecpsq_f32(est1, o.fVec), est1);
|
200
|
-
return vmulq_f32(fVec, est2);
|
201
|
-
#endif
|
202
|
-
}
|
203
|
-
|
204
|
-
AI SkNx operator==(const SkNx& o) const {return vreinterpretq_f32_u32(vceqq_f32(fVec, o.fVec));}
|
205
|
-
AI SkNx operator <(const SkNx& o) const {return vreinterpretq_f32_u32(vcltq_f32(fVec, o.fVec));}
|
206
|
-
AI SkNx operator >(const SkNx& o) const {return vreinterpretq_f32_u32(vcgtq_f32(fVec, o.fVec));}
|
207
|
-
AI SkNx operator<=(const SkNx& o) const {return vreinterpretq_f32_u32(vcleq_f32(fVec, o.fVec));}
|
208
|
-
AI SkNx operator>=(const SkNx& o) const {return vreinterpretq_f32_u32(vcgeq_f32(fVec, o.fVec));}
|
209
|
-
AI SkNx operator!=(const SkNx& o) const {
|
210
|
-
return vreinterpretq_f32_u32(vmvnq_u32(vceqq_f32(fVec, o.fVec)));
|
211
|
-
}
|
212
|
-
|
213
|
-
AI static SkNx Min(const SkNx& l, const SkNx& r) { return vminq_f32(l.fVec, r.fVec); }
|
214
|
-
AI static SkNx Max(const SkNx& l, const SkNx& r) { return vmaxq_f32(l.fVec, r.fVec); }
|
215
|
-
|
216
|
-
AI SkNx abs() const { return vabsq_f32(fVec); }
|
217
|
-
AI SkNx floor() const {
|
218
|
-
#if defined(SK_CPU_ARM64)
|
219
|
-
return vrndmq_f32(fVec);
|
220
|
-
#else
|
221
|
-
return emulate_vrndmq_f32(fVec);
|
222
|
-
#endif
|
223
|
-
}
|
224
|
-
|
225
|
-
|
226
|
-
AI SkNx sqrt() const {
|
227
|
-
#if defined(SK_CPU_ARM64)
|
228
|
-
return vsqrtq_f32(fVec);
|
229
|
-
#else
|
230
|
-
float32x4_t est0 = vrsqrteq_f32(fVec),
|
231
|
-
est1 = vmulq_f32(vrsqrtsq_f32(fVec, vmulq_f32(est0, est0)), est0),
|
232
|
-
est2 = vmulq_f32(vrsqrtsq_f32(fVec, vmulq_f32(est1, est1)), est1);
|
233
|
-
return vmulq_f32(fVec, est2);
|
234
|
-
#endif
|
235
|
-
}
|
236
|
-
|
237
|
-
AI float operator[](int k) const {
|
238
|
-
SkASSERT(0 <= k && k < 4);
|
239
|
-
union { float32x4_t v; float fs[4]; } pun = {fVec};
|
240
|
-
return pun.fs[k&3];
|
241
|
-
}
|
242
|
-
|
243
|
-
AI float min() const {
|
244
|
-
#if defined(SK_CPU_ARM64)
|
245
|
-
return vminvq_f32(fVec);
|
246
|
-
#else
|
247
|
-
SkNx min = Min(*this, vrev64q_f32(fVec));
|
248
|
-
return std::min(min[0], min[2]);
|
249
|
-
#endif
|
250
|
-
}
|
251
|
-
|
252
|
-
AI float max() const {
|
253
|
-
#if defined(SK_CPU_ARM64)
|
254
|
-
return vmaxvq_f32(fVec);
|
255
|
-
#else
|
256
|
-
SkNx max = Max(*this, vrev64q_f32(fVec));
|
257
|
-
return std::max(max[0], max[2]);
|
258
|
-
#endif
|
259
|
-
}
|
260
|
-
|
261
|
-
AI bool allTrue() const {
|
262
|
-
#if defined(SK_CPU_ARM64)
|
263
|
-
return 0 != vminvq_u32(vreinterpretq_u32_f32(fVec));
|
264
|
-
#else
|
265
|
-
auto v = vreinterpretq_u32_f32(fVec);
|
266
|
-
return vgetq_lane_u32(v,0) && vgetq_lane_u32(v,1)
|
267
|
-
&& vgetq_lane_u32(v,2) && vgetq_lane_u32(v,3);
|
268
|
-
#endif
|
269
|
-
}
|
270
|
-
AI bool anyTrue() const {
|
271
|
-
#if defined(SK_CPU_ARM64)
|
272
|
-
return 0 != vmaxvq_u32(vreinterpretq_u32_f32(fVec));
|
273
|
-
#else
|
274
|
-
auto v = vreinterpretq_u32_f32(fVec);
|
275
|
-
return vgetq_lane_u32(v,0) || vgetq_lane_u32(v,1)
|
276
|
-
|| vgetq_lane_u32(v,2) || vgetq_lane_u32(v,3);
|
277
|
-
#endif
|
278
|
-
}
|
279
|
-
|
280
|
-
AI SkNx thenElse(const SkNx& t, const SkNx& e) const {
|
281
|
-
return vbslq_f32(vreinterpretq_u32_f32(fVec), t.fVec, e.fVec);
|
282
|
-
}
|
283
|
-
|
284
|
-
float32x4_t fVec;
|
285
|
-
};
|
286
|
-
|
287
|
-
#if defined(SK_CPU_ARM64)
|
288
|
-
AI static Sk4f SkNx_fma(const Sk4f& f, const Sk4f& m, const Sk4f& a) {
|
289
|
-
return vfmaq_f32(a.fVec, f.fVec, m.fVec);
|
290
|
-
}
|
291
|
-
#endif
|
292
|
-
|
293
|
-
// It's possible that for our current use cases, representing this as
|
294
|
-
// half a uint16x8_t might be better than representing it as a uint16x4_t.
|
295
|
-
// It'd make conversion to Sk4b one step simpler.
|
296
|
-
template <>
|
297
|
-
class SkNx<4, uint16_t> {
|
298
|
-
public:
|
299
|
-
AI SkNx(const uint16x4_t& vec) : fVec(vec) {}
|
300
|
-
|
301
|
-
AI SkNx() {}
|
302
|
-
AI SkNx(uint16_t val) : fVec(vdup_n_u16(val)) {}
|
303
|
-
AI SkNx(uint16_t a, uint16_t b, uint16_t c, uint16_t d) {
|
304
|
-
fVec = (uint16x4_t) { a,b,c,d };
|
305
|
-
}
|
306
|
-
|
307
|
-
AI static SkNx Load(const void* ptr) { return vld1_u16((const uint16_t*)ptr); }
|
308
|
-
AI void store(void* ptr) const { vst1_u16((uint16_t*)ptr, fVec); }
|
309
|
-
|
310
|
-
AI static void Load4(const void* ptr, SkNx* r, SkNx* g, SkNx* b, SkNx* a) {
|
311
|
-
uint16x4x4_t rgba = vld4_u16((const uint16_t*)ptr);
|
312
|
-
*r = rgba.val[0];
|
313
|
-
*g = rgba.val[1];
|
314
|
-
*b = rgba.val[2];
|
315
|
-
*a = rgba.val[3];
|
316
|
-
}
|
317
|
-
AI static void Load3(const void* ptr, SkNx* r, SkNx* g, SkNx* b) {
|
318
|
-
uint16x4x3_t rgba = vld3_u16((const uint16_t*)ptr);
|
319
|
-
*r = rgba.val[0];
|
320
|
-
*g = rgba.val[1];
|
321
|
-
*b = rgba.val[2];
|
322
|
-
}
|
323
|
-
AI static void Store4(void* dst, const SkNx& r, const SkNx& g, const SkNx& b, const SkNx& a) {
|
324
|
-
uint16x4x4_t rgba = {{
|
325
|
-
r.fVec,
|
326
|
-
g.fVec,
|
327
|
-
b.fVec,
|
328
|
-
a.fVec,
|
329
|
-
}};
|
330
|
-
vst4_u16((uint16_t*) dst, rgba);
|
331
|
-
}
|
332
|
-
|
333
|
-
AI SkNx operator + (const SkNx& o) const { return vadd_u16(fVec, o.fVec); }
|
334
|
-
AI SkNx operator - (const SkNx& o) const { return vsub_u16(fVec, o.fVec); }
|
335
|
-
AI SkNx operator * (const SkNx& o) const { return vmul_u16(fVec, o.fVec); }
|
336
|
-
AI SkNx operator & (const SkNx& o) const { return vand_u16(fVec, o.fVec); }
|
337
|
-
AI SkNx operator | (const SkNx& o) const { return vorr_u16(fVec, o.fVec); }
|
338
|
-
|
339
|
-
AI SkNx operator << (int bits) const { return fVec << SkNx(bits).fVec; }
|
340
|
-
AI SkNx operator >> (int bits) const { return fVec >> SkNx(bits).fVec; }
|
341
|
-
|
342
|
-
AI static SkNx Min(const SkNx& a, const SkNx& b) { return vmin_u16(a.fVec, b.fVec); }
|
343
|
-
|
344
|
-
AI uint16_t operator[](int k) const {
|
345
|
-
SkASSERT(0 <= k && k < 4);
|
346
|
-
union { uint16x4_t v; uint16_t us[4]; } pun = {fVec};
|
347
|
-
return pun.us[k&3];
|
348
|
-
}
|
349
|
-
|
350
|
-
AI SkNx thenElse(const SkNx& t, const SkNx& e) const {
|
351
|
-
return vbsl_u16(fVec, t.fVec, e.fVec);
|
352
|
-
}
|
353
|
-
|
354
|
-
uint16x4_t fVec;
|
355
|
-
};
|
356
|
-
|
357
|
-
template <>
|
358
|
-
class SkNx<8, uint16_t> {
|
359
|
-
public:
|
360
|
-
AI SkNx(const uint16x8_t& vec) : fVec(vec) {}
|
361
|
-
|
362
|
-
AI SkNx() {}
|
363
|
-
AI SkNx(uint16_t val) : fVec(vdupq_n_u16(val)) {}
|
364
|
-
AI static SkNx Load(const void* ptr) { return vld1q_u16((const uint16_t*)ptr); }
|
365
|
-
|
366
|
-
AI SkNx(uint16_t a, uint16_t b, uint16_t c, uint16_t d,
|
367
|
-
uint16_t e, uint16_t f, uint16_t g, uint16_t h) {
|
368
|
-
fVec = (uint16x8_t) { a,b,c,d, e,f,g,h };
|
369
|
-
}
|
370
|
-
|
371
|
-
AI void store(void* ptr) const { vst1q_u16((uint16_t*)ptr, fVec); }
|
372
|
-
|
373
|
-
AI SkNx operator + (const SkNx& o) const { return vaddq_u16(fVec, o.fVec); }
|
374
|
-
AI SkNx operator - (const SkNx& o) const { return vsubq_u16(fVec, o.fVec); }
|
375
|
-
AI SkNx operator * (const SkNx& o) const { return vmulq_u16(fVec, o.fVec); }
|
376
|
-
AI SkNx operator & (const SkNx& o) const { return vandq_u16(fVec, o.fVec); }
|
377
|
-
AI SkNx operator | (const SkNx& o) const { return vorrq_u16(fVec, o.fVec); }
|
378
|
-
|
379
|
-
AI SkNx operator << (int bits) const { return fVec << SkNx(bits).fVec; }
|
380
|
-
AI SkNx operator >> (int bits) const { return fVec >> SkNx(bits).fVec; }
|
381
|
-
|
382
|
-
AI static SkNx Min(const SkNx& a, const SkNx& b) { return vminq_u16(a.fVec, b.fVec); }
|
383
|
-
|
384
|
-
AI uint16_t operator[](int k) const {
|
385
|
-
SkASSERT(0 <= k && k < 8);
|
386
|
-
union { uint16x8_t v; uint16_t us[8]; } pun = {fVec};
|
387
|
-
return pun.us[k&7];
|
388
|
-
}
|
389
|
-
|
390
|
-
AI SkNx mulHi(const SkNx& m) const {
|
391
|
-
uint32x4_t hi = vmull_u16(vget_high_u16(fVec), vget_high_u16(m.fVec));
|
392
|
-
uint32x4_t lo = vmull_u16( vget_low_u16(fVec), vget_low_u16(m.fVec));
|
393
|
-
|
394
|
-
return { vcombine_u16(vshrn_n_u32(lo,16), vshrn_n_u32(hi,16)) };
|
395
|
-
}
|
396
|
-
|
397
|
-
AI SkNx thenElse(const SkNx& t, const SkNx& e) const {
|
398
|
-
return vbslq_u16(fVec, t.fVec, e.fVec);
|
399
|
-
}
|
400
|
-
|
401
|
-
uint16x8_t fVec;
|
402
|
-
};
|
403
|
-
|
404
|
-
template <>
|
405
|
-
class SkNx<4, uint8_t> {
|
406
|
-
public:
|
407
|
-
typedef uint32_t __attribute__((aligned(1))) unaligned_uint32_t;
|
408
|
-
|
409
|
-
AI SkNx(const uint8x8_t& vec) : fVec(vec) {}
|
410
|
-
|
411
|
-
AI SkNx() {}
|
412
|
-
AI SkNx(uint8_t a, uint8_t b, uint8_t c, uint8_t d) {
|
413
|
-
fVec = (uint8x8_t){a,b,c,d, 0,0,0,0};
|
414
|
-
}
|
415
|
-
AI static SkNx Load(const void* ptr) {
|
416
|
-
return (uint8x8_t)vld1_dup_u32((const unaligned_uint32_t*)ptr);
|
417
|
-
}
|
418
|
-
AI void store(void* ptr) const {
|
419
|
-
return vst1_lane_u32((unaligned_uint32_t*)ptr, (uint32x2_t)fVec, 0);
|
420
|
-
}
|
421
|
-
AI uint8_t operator[](int k) const {
|
422
|
-
SkASSERT(0 <= k && k < 4);
|
423
|
-
union { uint8x8_t v; uint8_t us[8]; } pun = {fVec};
|
424
|
-
return pun.us[k&3];
|
425
|
-
}
|
426
|
-
|
427
|
-
// TODO as needed
|
428
|
-
|
429
|
-
uint8x8_t fVec;
|
430
|
-
};
|
431
|
-
|
432
|
-
template <>
|
433
|
-
class SkNx<8, uint8_t> {
|
434
|
-
public:
|
435
|
-
AI SkNx(const uint8x8_t& vec) : fVec(vec) {}
|
436
|
-
|
437
|
-
AI SkNx() {}
|
438
|
-
AI SkNx(uint8_t val) : fVec(vdup_n_u8(val)) {}
|
439
|
-
AI SkNx(uint8_t a, uint8_t b, uint8_t c, uint8_t d,
|
440
|
-
uint8_t e, uint8_t f, uint8_t g, uint8_t h) {
|
441
|
-
fVec = (uint8x8_t) { a,b,c,d, e,f,g,h };
|
442
|
-
}
|
443
|
-
|
444
|
-
AI static SkNx Load(const void* ptr) { return vld1_u8((const uint8_t*)ptr); }
|
445
|
-
AI void store(void* ptr) const { vst1_u8((uint8_t*)ptr, fVec); }
|
446
|
-
|
447
|
-
AI uint8_t operator[](int k) const {
|
448
|
-
SkASSERT(0 <= k && k < 8);
|
449
|
-
union { uint8x8_t v; uint8_t us[8]; } pun = {fVec};
|
450
|
-
return pun.us[k&7];
|
451
|
-
}
|
452
|
-
|
453
|
-
uint8x8_t fVec;
|
454
|
-
};
|
455
|
-
|
456
|
-
template <>
|
457
|
-
class SkNx<16, uint8_t> {
|
458
|
-
public:
|
459
|
-
AI SkNx(const uint8x16_t& vec) : fVec(vec) {}
|
460
|
-
|
461
|
-
AI SkNx() {}
|
462
|
-
AI SkNx(uint8_t val) : fVec(vdupq_n_u8(val)) {}
|
463
|
-
AI SkNx(uint8_t a, uint8_t b, uint8_t c, uint8_t d,
|
464
|
-
uint8_t e, uint8_t f, uint8_t g, uint8_t h,
|
465
|
-
uint8_t i, uint8_t j, uint8_t k, uint8_t l,
|
466
|
-
uint8_t m, uint8_t n, uint8_t o, uint8_t p) {
|
467
|
-
fVec = (uint8x16_t) { a,b,c,d, e,f,g,h, i,j,k,l, m,n,o,p };
|
468
|
-
}
|
469
|
-
|
470
|
-
AI static SkNx Load(const void* ptr) { return vld1q_u8((const uint8_t*)ptr); }
|
471
|
-
AI void store(void* ptr) const { vst1q_u8((uint8_t*)ptr, fVec); }
|
472
|
-
|
473
|
-
AI SkNx saturatedAdd(const SkNx& o) const { return vqaddq_u8(fVec, o.fVec); }
|
474
|
-
|
475
|
-
AI SkNx operator + (const SkNx& o) const { return vaddq_u8(fVec, o.fVec); }
|
476
|
-
AI SkNx operator - (const SkNx& o) const { return vsubq_u8(fVec, o.fVec); }
|
477
|
-
AI SkNx operator & (const SkNx& o) const { return vandq_u8(fVec, o.fVec); }
|
478
|
-
|
479
|
-
AI static SkNx Min(const SkNx& a, const SkNx& b) { return vminq_u8(a.fVec, b.fVec); }
|
480
|
-
AI SkNx operator < (const SkNx& o) const { return vcltq_u8(fVec, o.fVec); }
|
481
|
-
|
482
|
-
AI uint8_t operator[](int k) const {
|
483
|
-
SkASSERT(0 <= k && k < 16);
|
484
|
-
union { uint8x16_t v; uint8_t us[16]; } pun = {fVec};
|
485
|
-
return pun.us[k&15];
|
486
|
-
}
|
487
|
-
|
488
|
-
AI SkNx thenElse(const SkNx& t, const SkNx& e) const {
|
489
|
-
return vbslq_u8(fVec, t.fVec, e.fVec);
|
490
|
-
}
|
491
|
-
|
492
|
-
uint8x16_t fVec;
|
493
|
-
};
|
494
|
-
|
495
|
-
template <>
|
496
|
-
class SkNx<4, int32_t> {
|
497
|
-
public:
|
498
|
-
AI SkNx(const int32x4_t& vec) : fVec(vec) {}
|
499
|
-
|
500
|
-
AI SkNx() {}
|
501
|
-
AI SkNx(int32_t v) {
|
502
|
-
fVec = vdupq_n_s32(v);
|
503
|
-
}
|
504
|
-
AI SkNx(int32_t a, int32_t b, int32_t c, int32_t d) {
|
505
|
-
fVec = (int32x4_t){a,b,c,d};
|
506
|
-
}
|
507
|
-
AI static SkNx Load(const void* ptr) {
|
508
|
-
return vld1q_s32((const int32_t*)ptr);
|
509
|
-
}
|
510
|
-
AI void store(void* ptr) const {
|
511
|
-
return vst1q_s32((int32_t*)ptr, fVec);
|
512
|
-
}
|
513
|
-
AI int32_t operator[](int k) const {
|
514
|
-
SkASSERT(0 <= k && k < 4);
|
515
|
-
union { int32x4_t v; int32_t is[4]; } pun = {fVec};
|
516
|
-
return pun.is[k&3];
|
517
|
-
}
|
518
|
-
|
519
|
-
AI SkNx operator + (const SkNx& o) const { return vaddq_s32(fVec, o.fVec); }
|
520
|
-
AI SkNx operator - (const SkNx& o) const { return vsubq_s32(fVec, o.fVec); }
|
521
|
-
AI SkNx operator * (const SkNx& o) const { return vmulq_s32(fVec, o.fVec); }
|
522
|
-
|
523
|
-
AI SkNx operator & (const SkNx& o) const { return vandq_s32(fVec, o.fVec); }
|
524
|
-
AI SkNx operator | (const SkNx& o) const { return vorrq_s32(fVec, o.fVec); }
|
525
|
-
AI SkNx operator ^ (const SkNx& o) const { return veorq_s32(fVec, o.fVec); }
|
526
|
-
|
527
|
-
AI SkNx operator << (int bits) const { return fVec << SkNx(bits).fVec; }
|
528
|
-
AI SkNx operator >> (int bits) const { return fVec >> SkNx(bits).fVec; }
|
529
|
-
|
530
|
-
AI SkNx operator == (const SkNx& o) const {
|
531
|
-
return vreinterpretq_s32_u32(vceqq_s32(fVec, o.fVec));
|
532
|
-
}
|
533
|
-
AI SkNx operator < (const SkNx& o) const {
|
534
|
-
return vreinterpretq_s32_u32(vcltq_s32(fVec, o.fVec));
|
535
|
-
}
|
536
|
-
AI SkNx operator > (const SkNx& o) const {
|
537
|
-
return vreinterpretq_s32_u32(vcgtq_s32(fVec, o.fVec));
|
538
|
-
}
|
539
|
-
|
540
|
-
AI static SkNx Min(const SkNx& a, const SkNx& b) { return vminq_s32(a.fVec, b.fVec); }
|
541
|
-
AI static SkNx Max(const SkNx& a, const SkNx& b) { return vmaxq_s32(a.fVec, b.fVec); }
|
542
|
-
// TODO as needed
|
543
|
-
|
544
|
-
AI SkNx thenElse(const SkNx& t, const SkNx& e) const {
|
545
|
-
return vbslq_s32(vreinterpretq_u32_s32(fVec), t.fVec, e.fVec);
|
546
|
-
}
|
547
|
-
|
548
|
-
AI SkNx abs() const { return vabsq_s32(fVec); }
|
549
|
-
|
550
|
-
int32x4_t fVec;
|
551
|
-
};
|
552
|
-
|
553
|
-
template <>
|
554
|
-
class SkNx<4, uint32_t> {
|
555
|
-
public:
|
556
|
-
AI SkNx(const uint32x4_t& vec) : fVec(vec) {}
|
557
|
-
|
558
|
-
AI SkNx() {}
|
559
|
-
AI SkNx(uint32_t v) {
|
560
|
-
fVec = vdupq_n_u32(v);
|
561
|
-
}
|
562
|
-
AI SkNx(uint32_t a, uint32_t b, uint32_t c, uint32_t d) {
|
563
|
-
fVec = (uint32x4_t){a,b,c,d};
|
564
|
-
}
|
565
|
-
AI static SkNx Load(const void* ptr) {
|
566
|
-
return vld1q_u32((const uint32_t*)ptr);
|
567
|
-
}
|
568
|
-
AI void store(void* ptr) const {
|
569
|
-
return vst1q_u32((uint32_t*)ptr, fVec);
|
570
|
-
}
|
571
|
-
AI uint32_t operator[](int k) const {
|
572
|
-
SkASSERT(0 <= k && k < 4);
|
573
|
-
union { uint32x4_t v; uint32_t us[4]; } pun = {fVec};
|
574
|
-
return pun.us[k&3];
|
575
|
-
}
|
576
|
-
|
577
|
-
AI SkNx operator + (const SkNx& o) const { return vaddq_u32(fVec, o.fVec); }
|
578
|
-
AI SkNx operator - (const SkNx& o) const { return vsubq_u32(fVec, o.fVec); }
|
579
|
-
AI SkNx operator * (const SkNx& o) const { return vmulq_u32(fVec, o.fVec); }
|
580
|
-
|
581
|
-
AI SkNx operator & (const SkNx& o) const { return vandq_u32(fVec, o.fVec); }
|
582
|
-
AI SkNx operator | (const SkNx& o) const { return vorrq_u32(fVec, o.fVec); }
|
583
|
-
AI SkNx operator ^ (const SkNx& o) const { return veorq_u32(fVec, o.fVec); }
|
584
|
-
|
585
|
-
AI SkNx operator << (int bits) const { return fVec << SkNx(bits).fVec; }
|
586
|
-
AI SkNx operator >> (int bits) const { return fVec >> SkNx(bits).fVec; }
|
587
|
-
|
588
|
-
AI SkNx operator == (const SkNx& o) const { return vceqq_u32(fVec, o.fVec); }
|
589
|
-
AI SkNx operator < (const SkNx& o) const { return vcltq_u32(fVec, o.fVec); }
|
590
|
-
AI SkNx operator > (const SkNx& o) const { return vcgtq_u32(fVec, o.fVec); }
|
591
|
-
|
592
|
-
AI static SkNx Min(const SkNx& a, const SkNx& b) { return vminq_u32(a.fVec, b.fVec); }
|
593
|
-
// TODO as needed
|
594
|
-
|
595
|
-
AI SkNx mulHi(const SkNx& m) const {
|
596
|
-
uint64x2_t hi = vmull_u32(vget_high_u32(fVec), vget_high_u32(m.fVec));
|
597
|
-
uint64x2_t lo = vmull_u32( vget_low_u32(fVec), vget_low_u32(m.fVec));
|
598
|
-
|
599
|
-
return { vcombine_u32(vshrn_n_u64(lo,32), vshrn_n_u64(hi,32)) };
|
600
|
-
}
|
601
|
-
|
602
|
-
AI SkNx thenElse(const SkNx& t, const SkNx& e) const {
|
603
|
-
return vbslq_u32(fVec, t.fVec, e.fVec);
|
604
|
-
}
|
605
|
-
|
606
|
-
uint32x4_t fVec;
|
607
|
-
};
|
608
|
-
|
609
|
-
template<> AI /*static*/ Sk4i SkNx_cast<int32_t, float>(const Sk4f& src) {
|
610
|
-
return vcvtq_s32_f32(src.fVec);
|
611
|
-
|
612
|
-
}
|
613
|
-
template<> AI /*static*/ Sk4f SkNx_cast<float, int32_t>(const Sk4i& src) {
|
614
|
-
return vcvtq_f32_s32(src.fVec);
|
615
|
-
}
|
616
|
-
template<> AI /*static*/ Sk4f SkNx_cast<float, uint32_t>(const Sk4u& src) {
|
617
|
-
return SkNx_cast<float>(Sk4i::Load(&src));
|
618
|
-
}
|
619
|
-
|
620
|
-
template<> AI /*static*/ Sk4h SkNx_cast<uint16_t, float>(const Sk4f& src) {
|
621
|
-
return vqmovn_u32(vcvtq_u32_f32(src.fVec));
|
622
|
-
}
|
623
|
-
|
624
|
-
template<> AI /*static*/ Sk4f SkNx_cast<float, uint16_t>(const Sk4h& src) {
|
625
|
-
return vcvtq_f32_u32(vmovl_u16(src.fVec));
|
626
|
-
}
|
627
|
-
|
628
|
-
template<> AI /*static*/ Sk4b SkNx_cast<uint8_t, float>(const Sk4f& src) {
|
629
|
-
uint32x4_t _32 = vcvtq_u32_f32(src.fVec);
|
630
|
-
uint16x4_t _16 = vqmovn_u32(_32);
|
631
|
-
return vqmovn_u16(vcombine_u16(_16, _16));
|
632
|
-
}
|
633
|
-
|
634
|
-
template<> AI /*static*/ Sk4u SkNx_cast<uint32_t, uint8_t>(const Sk4b& src) {
|
635
|
-
uint16x8_t _16 = vmovl_u8(src.fVec);
|
636
|
-
return vmovl_u16(vget_low_u16(_16));
|
637
|
-
}
|
638
|
-
|
639
|
-
template<> AI /*static*/ Sk4i SkNx_cast<int32_t, uint8_t>(const Sk4b& src) {
|
640
|
-
return vreinterpretq_s32_u32(SkNx_cast<uint32_t>(src).fVec);
|
641
|
-
}
|
642
|
-
|
643
|
-
template<> AI /*static*/ Sk4f SkNx_cast<float, uint8_t>(const Sk4b& src) {
|
644
|
-
return vcvtq_f32_s32(SkNx_cast<int32_t>(src).fVec);
|
645
|
-
}
|
646
|
-
|
647
|
-
template<> AI /*static*/ Sk16b SkNx_cast<uint8_t, float>(const Sk16f& src) {
|
648
|
-
Sk8f ab, cd;
|
649
|
-
SkNx_split(src, &ab, &cd);
|
650
|
-
|
651
|
-
Sk4f a,b,c,d;
|
652
|
-
SkNx_split(ab, &a, &b);
|
653
|
-
SkNx_split(cd, &c, &d);
|
654
|
-
return vuzpq_u8(vuzpq_u8((uint8x16_t)vcvtq_u32_f32(a.fVec),
|
655
|
-
(uint8x16_t)vcvtq_u32_f32(b.fVec)).val[0],
|
656
|
-
vuzpq_u8((uint8x16_t)vcvtq_u32_f32(c.fVec),
|
657
|
-
(uint8x16_t)vcvtq_u32_f32(d.fVec)).val[0]).val[0];
|
658
|
-
}
|
659
|
-
|
660
|
-
template<> AI /*static*/ Sk8b SkNx_cast<uint8_t, int32_t>(const Sk8i& src) {
|
661
|
-
Sk4i a, b;
|
662
|
-
SkNx_split(src, &a, &b);
|
663
|
-
uint16x4_t a16 = vqmovun_s32(a.fVec);
|
664
|
-
uint16x4_t b16 = vqmovun_s32(b.fVec);
|
665
|
-
|
666
|
-
return vqmovn_u16(vcombine_u16(a16, b16));
|
667
|
-
}
|
668
|
-
|
669
|
-
template<> AI /*static*/ Sk4h SkNx_cast<uint16_t, uint8_t>(const Sk4b& src) {
|
670
|
-
return vget_low_u16(vmovl_u8(src.fVec));
|
671
|
-
}
|
672
|
-
|
673
|
-
template<> AI /*static*/ Sk8h SkNx_cast<uint16_t, uint8_t>(const Sk8b& src) {
|
674
|
-
return vmovl_u8(src.fVec);
|
675
|
-
}
|
676
|
-
|
677
|
-
template<> AI /*static*/ Sk4b SkNx_cast<uint8_t, uint16_t>(const Sk4h& src) {
|
678
|
-
return vmovn_u16(vcombine_u16(src.fVec, src.fVec));
|
679
|
-
}
|
680
|
-
|
681
|
-
template<> AI /*static*/ Sk8b SkNx_cast<uint8_t, uint16_t>(const Sk8h& src) {
|
682
|
-
return vqmovn_u16(src.fVec);
|
683
|
-
}
|
684
|
-
|
685
|
-
template<> AI /*static*/ Sk4b SkNx_cast<uint8_t, int32_t>(const Sk4i& src) {
|
686
|
-
uint16x4_t _16 = vqmovun_s32(src.fVec);
|
687
|
-
return vqmovn_u16(vcombine_u16(_16, _16));
|
688
|
-
}
|
689
|
-
|
690
|
-
template<> AI /*static*/ Sk4b SkNx_cast<uint8_t, uint32_t>(const Sk4u& src) {
|
691
|
-
uint16x4_t _16 = vqmovn_u32(src.fVec);
|
692
|
-
return vqmovn_u16(vcombine_u16(_16, _16));
|
693
|
-
}
|
694
|
-
|
695
|
-
template<> AI /*static*/ Sk4i SkNx_cast<int32_t, uint16_t>(const Sk4h& src) {
|
696
|
-
return vreinterpretq_s32_u32(vmovl_u16(src.fVec));
|
697
|
-
}
|
698
|
-
|
699
|
-
template<> AI /*static*/ Sk4h SkNx_cast<uint16_t, int32_t>(const Sk4i& src) {
|
700
|
-
return vmovn_u32(vreinterpretq_u32_s32(src.fVec));
|
701
|
-
}
|
702
|
-
|
703
|
-
template<> AI /*static*/ Sk4i SkNx_cast<int32_t, uint32_t>(const Sk4u& src) {
|
704
|
-
return vreinterpretq_s32_u32(src.fVec);
|
705
|
-
}
|
706
|
-
|
707
|
-
AI static Sk4i Sk4f_round(const Sk4f& x) {
|
708
|
-
return vcvtq_s32_f32((x + 0.5f).fVec);
|
709
|
-
}
|
710
|
-
|
711
|
-
} // namespace
|
712
|
-
|
713
|
-
#endif//SkNx_neon_DEFINED
|