@shopify/react-native-skia 1.11.8 → 1.11.9-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/CMakeLists.txt +30 -153
- package/android/build.gradle +1 -1
- package/cpp/skia/include/codec/SkCodec.h +7 -2
- package/cpp/skia/include/config/SkUserConfig.h +11 -0
- package/cpp/skia/include/core/SkCanvas.h +11 -7
- package/cpp/skia/include/core/SkColor.h +10 -0
- package/cpp/skia/include/core/SkColorSpace.h +184 -2
- package/cpp/skia/include/core/SkColorType.h +114 -32
- package/cpp/skia/include/core/SkFontScanner.h +5 -8
- package/cpp/skia/include/core/SkFontStyle.h +1 -1
- package/cpp/skia/include/core/SkMaskFilter.h +0 -8
- package/cpp/skia/include/core/SkMilestone.h +1 -1
- package/cpp/skia/include/core/SkPath.h +1 -1
- package/cpp/skia/include/core/SkRRect.h +3 -1
- package/cpp/skia/include/core/SkShader.h +3 -3
- package/cpp/skia/include/core/SkString.h +8 -8
- package/cpp/skia/include/core/SkSurface.h +14 -0
- package/cpp/skia/include/core/SkTypeface.h +24 -7
- package/cpp/skia/include/effects/SkGradientShader.h +6 -1
- package/cpp/skia/include/effects/SkRuntimeEffect.h +1 -0
- package/cpp/skia/include/encode/SkPngEncoder.h +14 -0
- package/cpp/skia/include/gpu/GpuTypes.h +9 -0
- package/cpp/skia/include/gpu/ganesh/GrContextOptions.h +135 -133
- package/cpp/skia/include/gpu/ganesh/GrDirectContext.h +5 -0
- package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h +3 -3
- package/cpp/skia/include/gpu/ganesh/GrTypes.h +14 -9
- package/cpp/skia/include/gpu/graphite/Context.h +25 -2
- package/cpp/skia/include/gpu/graphite/ContextOptions.h +23 -5
- package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +20 -1
- package/cpp/skia/include/gpu/graphite/Image.h +1 -0
- package/cpp/skia/include/gpu/graphite/LogPriority.h +36 -0
- package/cpp/skia/include/gpu/graphite/PrecompileContext.h +52 -0
- package/cpp/skia/include/gpu/graphite/Recorder.h +6 -0
- package/cpp/skia/include/gpu/graphite/Recording.h +3 -1
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +4 -36
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypesUtils.h +48 -0
- package/cpp/skia/include/gpu/graphite/precompile/Precompile.h +3 -2
- package/cpp/skia/include/pathops/SkPathOps.h +9 -1
- package/cpp/skia/include/ports/SkFontMgr_FontConfigInterface.h +3 -0
- package/cpp/skia/include/private/SkPathRef.h +15 -21
- package/cpp/skia/include/private/base/SkAttributes.h +16 -10
- package/cpp/skia/include/private/base/SkMutex.h +8 -0
- package/cpp/skia/include/private/base/SkTArray.h +1 -1
- package/cpp/skia/include/private/base/SkTDArray.h +1 -1
- package/cpp/skia/include/private/base/SkTemplates.h +24 -11
- package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +1 -1
- package/cpp/skia/include/sksl/SkSLDebugTrace.h +0 -3
- package/cpp/skia/modules/skcms/src/Transform_inl.h +20 -20
- package/cpp/skia/modules/skcms/src/skcms_Transform.h +4 -3
- package/cpp/skia/modules/skcms/src/skcms_public.h +19 -15
- package/cpp/skia/modules/skresources/include/SkResources.h +3 -1
- package/cpp/skia/modules/svg/include/SkSVGCircle.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGContainer.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGImage.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGPath.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGPoly.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRect.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +2 -0
- package/cpp/skia/modules/svg/include/SkSVGShape.h +1 -0
- package/cpp/skia/modules/svg/include/SkSVGText.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +4 -0
- package/cpp/skia/modules/svg/include/SkSVGUse.h +1 -1
- package/cpp/skia/src/core/SkLRUCache.h +19 -13
- package/cpp/skia/src/core/SkTHash.h +50 -4
- package/cpp/skia/src/gpu/ganesh/gl/GrGLDefines.h +1 -0
- package/lib/commonjs/external/reanimated/textures.js +4 -3
- package/lib/commonjs/external/reanimated/textures.js.map +1 -1
- package/lib/commonjs/headless/index.d.ts +1 -1
- package/lib/commonjs/headless/index.js +2 -2
- package/lib/commonjs/headless/index.js.map +1 -1
- package/lib/commonjs/renderer/Canvas.d.ts +2 -2
- package/lib/commonjs/renderer/Canvas.js +10 -27
- package/lib/commonjs/renderer/Canvas.js.map +1 -1
- package/lib/commonjs/renderer/Offscreen.d.ts +2 -2
- package/lib/commonjs/renderer/Offscreen.js +4 -4
- package/lib/commonjs/renderer/Offscreen.js.map +1 -1
- package/lib/commonjs/renderer/__tests__/setup.d.ts +5 -5
- package/lib/commonjs/sksg/Container.d.ts +3 -1
- package/lib/commonjs/sksg/Container.js +7 -1
- package/lib/commonjs/sksg/Container.js.map +1 -1
- package/lib/commonjs/sksg/HostConfig.d.ts +1 -1
- package/lib/commonjs/sksg/HostConfig.js +36 -6
- package/lib/commonjs/sksg/HostConfig.js.map +1 -1
- package/lib/commonjs/sksg/Reconciler.d.ts +3 -2
- package/lib/commonjs/sksg/Reconciler.js +16 -6
- package/lib/commonjs/sksg/Reconciler.js.map +1 -1
- package/lib/module/Platform/Platform.web.js +1 -1
- package/lib/module/Platform/Platform.web.js.map +1 -1
- package/lib/module/dom/nodes/datatypes/Circle.js +1 -2
- package/lib/module/dom/nodes/datatypes/Circle.js.map +1 -1
- package/lib/module/dom/nodes/datatypes/Gradient.js +3 -3
- package/lib/module/dom/nodes/datatypes/Gradient.js.map +1 -1
- package/lib/module/dom/nodes/datatypes/Rect.js +3 -5
- package/lib/module/dom/nodes/datatypes/Rect.js.map +1 -1
- package/lib/module/external/reanimated/buffers.js +1 -2
- package/lib/module/external/reanimated/buffers.js.map +1 -1
- package/lib/module/external/reanimated/textures.js +5 -4
- package/lib/module/external/reanimated/textures.js.map +1 -1
- package/lib/module/external/reanimated/useAnimatedImageValue.js +1 -1
- package/lib/module/external/reanimated/useAnimatedImageValue.js.map +1 -1
- package/lib/module/external/reanimated/useVideo.js +10 -23
- package/lib/module/external/reanimated/useVideo.js.map +1 -1
- package/lib/module/headless/index.d.ts +1 -1
- package/lib/module/headless/index.js +2 -2
- package/lib/module/headless/index.js.map +1 -1
- package/lib/module/renderer/Canvas.d.ts +2 -2
- package/lib/module/renderer/Canvas.js +9 -27
- package/lib/module/renderer/Canvas.js.map +1 -1
- package/lib/module/renderer/Offscreen.d.ts +2 -2
- package/lib/module/renderer/Offscreen.js +4 -4
- package/lib/module/renderer/Offscreen.js.map +1 -1
- package/lib/module/renderer/__tests__/setup.d.ts +5 -5
- package/lib/module/skia/core/Vector.js +1 -1
- package/lib/module/skia/core/Vector.js.map +1 -1
- package/lib/module/skia/web/CanvasKitWebGLBufferImpl.js +1 -4
- package/lib/module/skia/web/CanvasKitWebGLBufferImpl.js.map +1 -1
- package/lib/module/skia/web/Host.js +1 -7
- package/lib/module/skia/web/Host.js.map +1 -1
- package/lib/module/skia/web/JsiSkAnimatedImage.js +3 -6
- package/lib/module/skia/web/JsiSkAnimatedImage.js.map +1 -1
- package/lib/module/skia/web/JsiSkCanvas.js +3 -6
- package/lib/module/skia/web/JsiSkCanvas.js.map +1 -1
- package/lib/module/skia/web/JsiSkColorFilter.js +3 -6
- package/lib/module/skia/web/JsiSkColorFilter.js.map +1 -1
- package/lib/module/skia/web/JsiSkContourMeasure.js +3 -6
- package/lib/module/skia/web/JsiSkContourMeasure.js.map +1 -1
- package/lib/module/skia/web/JsiSkContourMeasureIter.js +3 -6
- package/lib/module/skia/web/JsiSkContourMeasureIter.js.map +1 -1
- package/lib/module/skia/web/JsiSkData.js +3 -6
- package/lib/module/skia/web/JsiSkData.js.map +1 -1
- package/lib/module/skia/web/JsiSkFont.js +3 -6
- package/lib/module/skia/web/JsiSkFont.js.map +1 -1
- package/lib/module/skia/web/JsiSkImage.js +8 -12
- package/lib/module/skia/web/JsiSkImage.js.map +1 -1
- package/lib/module/skia/web/JsiSkImageFilter.js +3 -6
- package/lib/module/skia/web/JsiSkImageFilter.js.map +1 -1
- package/lib/module/skia/web/JsiSkMaskFilter.js +3 -6
- package/lib/module/skia/web/JsiSkMaskFilter.js.map +1 -1
- package/lib/module/skia/web/JsiSkMatrix.js +5 -8
- package/lib/module/skia/web/JsiSkMatrix.js.map +1 -1
- package/lib/module/skia/web/JsiSkPaint.js +3 -6
- package/lib/module/skia/web/JsiSkPaint.js.map +1 -1
- package/lib/module/skia/web/JsiSkParagraphBuilder.js +2 -3
- package/lib/module/skia/web/JsiSkParagraphBuilder.js.map +1 -1
- package/lib/module/skia/web/JsiSkParagraphBuilderFactory.js +1 -1
- package/lib/module/skia/web/JsiSkParagraphBuilderFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkParagraphStyle.js +15 -15
- package/lib/module/skia/web/JsiSkParagraphStyle.js.map +1 -1
- package/lib/module/skia/web/JsiSkPath.js +3 -6
- package/lib/module/skia/web/JsiSkPath.js.map +1 -1
- package/lib/module/skia/web/JsiSkPathEffect.js +3 -6
- package/lib/module/skia/web/JsiSkPathEffect.js.map +1 -1
- package/lib/module/skia/web/JsiSkPicture.js +3 -6
- package/lib/module/skia/web/JsiSkPicture.js.map +1 -1
- package/lib/module/skia/web/JsiSkPictureRecorder.js +3 -6
- package/lib/module/skia/web/JsiSkPictureRecorder.js.map +1 -1
- package/lib/module/skia/web/JsiSkPoint.js +3 -6
- package/lib/module/skia/web/JsiSkPoint.js.map +1 -1
- package/lib/module/skia/web/JsiSkRRect.js +3 -6
- package/lib/module/skia/web/JsiSkRRect.js.map +1 -1
- package/lib/module/skia/web/JsiSkRSXform.js +3 -6
- package/lib/module/skia/web/JsiSkRSXform.js.map +1 -1
- package/lib/module/skia/web/JsiSkRect.js +3 -6
- package/lib/module/skia/web/JsiSkRect.js.map +1 -1
- package/lib/module/skia/web/JsiSkRuntimeEffect.js +3 -6
- package/lib/module/skia/web/JsiSkRuntimeEffect.js.map +1 -1
- package/lib/module/skia/web/JsiSkSVG.js +5 -8
- package/lib/module/skia/web/JsiSkSVG.js.map +1 -1
- package/lib/module/skia/web/JsiSkShader.js +3 -6
- package/lib/module/skia/web/JsiSkShader.js.map +1 -1
- package/lib/module/skia/web/JsiSkSurface.js +3 -6
- package/lib/module/skia/web/JsiSkSurface.js.map +1 -1
- package/lib/module/skia/web/JsiSkTextBlob.js +3 -6
- package/lib/module/skia/web/JsiSkTextBlob.js.map +1 -1
- package/lib/module/skia/web/JsiSkTypeface.js +3 -6
- package/lib/module/skia/web/JsiSkTypeface.js.map +1 -1
- package/lib/module/skia/web/JsiSkTypefaceFontProvider.js +1 -4
- package/lib/module/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
- package/lib/module/skia/web/JsiSkVertices.js +3 -6
- package/lib/module/skia/web/JsiSkVertices.js.map +1 -1
- package/lib/module/skia/web/JsiVideo.js +2 -5
- package/lib/module/skia/web/JsiVideo.js.map +1 -1
- package/lib/module/sksg/Container.d.ts +3 -1
- package/lib/module/sksg/Container.js +11 -8
- package/lib/module/sksg/Container.js.map +1 -1
- package/lib/module/sksg/HostConfig.d.ts +1 -1
- package/lib/module/sksg/HostConfig.js +36 -7
- package/lib/module/sksg/HostConfig.js.map +1 -1
- package/lib/module/sksg/Reconciler.d.ts +3 -2
- package/lib/module/sksg/Reconciler.js +16 -11
- package/lib/module/sksg/Reconciler.js.map +1 -1
- package/lib/module/sksg/Recorder/ReanimatedRecorder.js +1 -5
- package/lib/module/sksg/Recorder/ReanimatedRecorder.js.map +1 -1
- package/lib/module/sksg/Recorder/Recorder.js +3 -6
- package/lib/module/sksg/Recorder/Recorder.js.map +1 -1
- package/lib/module/sksg/Recorder/Visitor.js +1 -1
- package/lib/module/sksg/Recorder/Visitor.js.map +1 -1
- package/lib/module/sksg/Recorder/commands/Drawing.js +2 -4
- package/lib/module/sksg/Recorder/commands/Drawing.js.map +1 -1
- package/lib/module/sksg/Recorder/commands/Shaders.js +2 -3
- package/lib/module/sksg/Recorder/commands/Shaders.js.map +1 -1
- package/lib/module/views/SkiaBaseWebView.js +9 -12
- package/lib/module/views/SkiaBaseWebView.js.map +1 -1
- package/lib/module/views/SkiaPictureView.js +1 -5
- package/lib/module/views/SkiaPictureView.js.map +1 -1
- package/lib/module/views/SkiaPictureView.web.js +1 -4
- package/lib/module/views/SkiaPictureView.web.js.map +1 -1
- package/lib/module/web/LoadSkiaWeb.js +1 -2
- package/lib/module/web/LoadSkiaWeb.js.map +1 -1
- package/lib/module/web/WithSkiaWeb.js +1 -1
- package/lib/module/web/WithSkiaWeb.js.map +1 -1
- package/lib/typescript/lib/commonjs/headless/index.d.ts +1 -1
- package/lib/typescript/lib/commonjs/renderer/Canvas.d.ts +9 -1
- package/lib/typescript/lib/commonjs/renderer/Offscreen.d.ts +2 -2
- package/lib/typescript/lib/commonjs/sksg/Container.d.ts +3 -0
- package/lib/typescript/lib/commonjs/sksg/HostConfig.d.ts +21 -4
- package/lib/typescript/lib/commonjs/sksg/Reconciler.d.ts +9 -2
- package/lib/typescript/lib/module/headless/index.d.ts +1 -1
- package/lib/typescript/lib/module/renderer/Canvas.d.ts +9 -1
- package/lib/typescript/lib/module/renderer/Offscreen.d.ts +2 -2
- package/lib/typescript/lib/module/skia/web/CanvasKitWebGLBufferImpl.d.ts +2 -2
- package/lib/typescript/lib/module/skia/web/JsiSkAnimatedImage.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkCanvas.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkColorFilter.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkContourMeasure.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkContourMeasureIter.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkData.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkFont.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkImage.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkImageFilter.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkMaskFilter.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkMatrix.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkPaint.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkPath.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkPathEffect.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkPicture.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkPictureRecorder.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkPoint.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkRRect.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkRSXform.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkRect.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkRuntimeEffect.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkSVG.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkShader.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkSurface.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkTextBlob.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkTypeface.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkVertices.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiVideo.d.ts +2 -2
- package/lib/typescript/lib/module/sksg/Container.d.ts +7 -12
- package/lib/typescript/lib/module/sksg/HostConfig.d.ts +20 -4
- package/lib/typescript/lib/module/sksg/Reconciler.d.ts +18 -17
- package/lib/typescript/lib/module/sksg/Recorder/ReanimatedRecorder.d.ts +1 -0
- package/lib/typescript/lib/module/sksg/Recorder/Recorder.d.ts +5 -2
- package/lib/typescript/lib/module/views/SkiaBaseWebView.d.ts +12 -11
- package/lib/typescript/lib/module/views/SkiaPictureView.d.ts +2 -2
- package/lib/typescript/lib/module/views/SkiaPictureView.web.d.ts +1 -1
- package/lib/typescript/src/headless/index.d.ts +1 -1
- package/lib/typescript/src/renderer/Canvas.d.ts +2 -2
- package/lib/typescript/src/renderer/Offscreen.d.ts +2 -2
- package/lib/typescript/src/renderer/__tests__/setup.d.ts +5 -5
- package/lib/typescript/src/sksg/Container.d.ts +3 -1
- package/lib/typescript/src/sksg/HostConfig.d.ts +1 -1
- package/lib/typescript/src/sksg/Reconciler.d.ts +3 -2
- package/libs/apple/libskia.xcframework/Info.plist +15 -15
- package/libs/apple/libskia.xcframework/ios-arm64_arm64e/libskia.a +0 -0
- package/libs/apple/libskia.xcframework/ios-arm64_arm64e_x86_64-simulator/libskia.a +0 -0
- package/libs/apple/libskia.xcframework/macos-arm64_x86_64/libskia.a +0 -0
- package/libs/apple/libskia.xcframework/tvos-arm64_arm64e/libskia.a +0 -0
- package/libs/apple/libskia.xcframework/tvos-arm64_arm64e_x86_64-simulator/libskia.a +0 -0
- package/libs/apple/libskottie.xcframework/Info.plist +8 -8
- package/libs/apple/libskottie.xcframework/ios-arm64_arm64e/libskottie.a +0 -0
- package/libs/apple/libskottie.xcframework/ios-arm64_arm64e_x86_64-simulator/libskottie.a +0 -0
- package/libs/apple/libskottie.xcframework/macos-arm64_x86_64/libskottie.a +0 -0
- package/libs/apple/libskottie.xcframework/tvos-arm64_arm64e/libskottie.a +0 -0
- package/libs/apple/libskottie.xcframework/tvos-arm64_arm64e_x86_64-simulator/libskottie.a +0 -0
- package/libs/apple/libskparagraph.xcframework/Info.plist +7 -7
- package/libs/apple/libskparagraph.xcframework/ios-arm64_arm64e/libskparagraph.a +0 -0
- package/libs/apple/libskparagraph.xcframework/ios-arm64_arm64e_x86_64-simulator/libskparagraph.a +0 -0
- package/libs/apple/libskparagraph.xcframework/macos-arm64_x86_64/libskparagraph.a +0 -0
- package/libs/apple/libskparagraph.xcframework/tvos-arm64_arm64e/libskparagraph.a +0 -0
- package/libs/apple/libskparagraph.xcframework/tvos-arm64_arm64e_x86_64-simulator/libskparagraph.a +0 -0
- package/libs/apple/libsksg.xcframework/Info.plist +12 -12
- package/libs/apple/libsksg.xcframework/ios-arm64_arm64e/libsksg.a +0 -0
- package/libs/apple/libsksg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsksg.a +0 -0
- package/libs/apple/libsksg.xcframework/macos-arm64_x86_64/libsksg.a +0 -0
- package/libs/apple/libsksg.xcframework/tvos-arm64_arm64e/libsksg.a +0 -0
- package/libs/apple/libsksg.xcframework/tvos-arm64_arm64e_x86_64-simulator/libsksg.a +0 -0
- package/libs/apple/libskshaper.xcframework/Info.plist +14 -14
- package/libs/apple/libskshaper.xcframework/ios-arm64_arm64e/libskshaper.a +0 -0
- package/libs/apple/libskshaper.xcframework/ios-arm64_arm64e_x86_64-simulator/libskshaper.a +0 -0
- package/libs/apple/libskshaper.xcframework/macos-arm64_x86_64/libskshaper.a +0 -0
- package/libs/apple/libskshaper.xcframework/tvos-arm64_arm64e/libskshaper.a +0 -0
- package/libs/apple/libskshaper.xcframework/tvos-arm64_arm64e_x86_64-simulator/libskshaper.a +0 -0
- package/libs/apple/libskunicode_core.xcframework/Info.plist +14 -14
- package/libs/apple/libskunicode_core.xcframework/ios-arm64_arm64e/libskunicode_core.a +0 -0
- package/libs/apple/libskunicode_core.xcframework/ios-arm64_arm64e_x86_64-simulator/libskunicode_core.a +0 -0
- package/libs/apple/libskunicode_core.xcframework/macos-arm64_x86_64/libskunicode_core.a +0 -0
- package/libs/apple/libskunicode_core.xcframework/tvos-arm64_arm64e/libskunicode_core.a +0 -0
- package/libs/apple/libskunicode_core.xcframework/tvos-arm64_arm64e_x86_64-simulator/libskunicode_core.a +0 -0
- package/libs/apple/libskunicode_libgrapheme.xcframework/Info.plist +13 -13
- package/libs/apple/libskunicode_libgrapheme.xcframework/ios-arm64_arm64e/libskunicode_libgrapheme.a +0 -0
- package/libs/apple/libskunicode_libgrapheme.xcframework/ios-arm64_arm64e_x86_64-simulator/libskunicode_libgrapheme.a +0 -0
- package/libs/apple/libskunicode_libgrapheme.xcframework/macos-arm64_x86_64/libskunicode_libgrapheme.a +0 -0
- package/libs/apple/libskunicode_libgrapheme.xcframework/tvos-arm64_arm64e/libskunicode_libgrapheme.a +0 -0
- package/libs/apple/libskunicode_libgrapheme.xcframework/tvos-arm64_arm64e_x86_64-simulator/libskunicode_libgrapheme.a +0 -0
- package/libs/apple/libsvg.xcframework/Info.plist +11 -11
- package/libs/apple/libsvg.xcframework/ios-arm64_arm64e/libsvg.a +0 -0
- package/libs/apple/libsvg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsvg.a +0 -0
- package/libs/apple/libsvg.xcframework/macos-arm64_x86_64/libsvg.a +0 -0
- package/libs/apple/libsvg.xcframework/tvos-arm64_arm64e/libsvg.a +0 -0
- package/libs/apple/libsvg.xcframework/tvos-arm64_arm64e_x86_64-simulator/libsvg.a +0 -0
- package/package.json +10 -9
- package/src/external/reanimated/textures.tsx +5 -4
- package/src/headless/index.ts +2 -2
- package/src/renderer/Canvas.tsx +57 -80
- package/src/renderer/Offscreen.tsx +4 -4
- package/src/renderer/__tests__/Data.spec.tsx +9 -10
- package/src/renderer/__tests__/Drawings.spec.tsx +11 -11
- package/src/renderer/__tests__/FitBox.spec.tsx +10 -10
- package/src/renderer/__tests__/Glyphs.spec.tsx +2 -2
- package/src/renderer/__tests__/Image.spec.tsx +2 -2
- package/src/renderer/__tests__/Paths.spec.tsx +8 -8
- package/src/renderer/__tests__/Picture.spec.tsx +10 -12
- package/src/renderer/__tests__/Simple.spec.tsx +6 -6
- package/src/renderer/__tests__/Surfaces.spec.tsx +2 -2
- package/src/renderer/__tests__/Text.spec.tsx +12 -12
- package/src/renderer/__tests__/Transform.spec.tsx +8 -8
- package/src/renderer/__tests__/documentation/Group.spec.tsx +12 -12
- package/src/renderer/__tests__/documentation/getting-started/HelloWorld.spec.tsx +2 -2
- package/src/renderer/__tests__/documentation/paint/Overview.spec.tsx +8 -8
- package/src/renderer/__tests__/documentation/shapes/Box.spec.tsx +4 -4
- package/src/renderer/__tests__/e2e/Atlas.spec.tsx +3 -3
- package/src/renderer/__tests__/e2e/Offscreen.spec.tsx +1 -1
- package/src/renderer/__tests__/examples/BlendModes.spec.tsx +4 -4
- package/src/renderer/__tests__/setup.tsx +13 -13
- package/src/sksg/Container.ts +9 -1
- package/src/sksg/HostConfig.ts +37 -7
- package/src/sksg/Reconciler.ts +17 -6
- package/src/sksg/__tests__/Simple.spec.tsx +8 -8
- package/lib/commonjs/sksg/HostConfig2.d.ts +0 -19
- package/lib/commonjs/sksg/HostConfig2.js +0 -159
- package/lib/commonjs/sksg/HostConfig2.js.map +0 -1
- package/lib/module/sksg/HostConfig2.d.ts +0 -19
- package/lib/module/sksg/HostConfig2.js +0 -152
- package/lib/module/sksg/HostConfig2.js.map +0 -1
- package/lib/typescript/lib/commonjs/sksg/HostConfig2.d.ts +0 -44
- package/lib/typescript/lib/module/sksg/HostConfig2.d.ts +0 -43
- package/lib/typescript/src/sksg/HostConfig2.d.ts +0 -19
- package/src/sksg/HostConfig2.ts +0 -247
package/android/CMakeLists.txt
CHANGED
@@ -13,7 +13,6 @@ set (SKIA_SKPARAGRAPH_LIB "skparagraph")
|
|
13
13
|
set (SKIA_SKUNICODE_CORE_LIB "skunicode_core")
|
14
14
|
set (SKIA_SKUNICODE_ICU_LIB "skunicode_icu")
|
15
15
|
|
16
|
-
|
17
16
|
# Clear some variables
|
18
17
|
unset(LIBRN_DIR CACHE)
|
19
18
|
unset(libfbjni_link_DIRS CACHE)
|
@@ -40,7 +39,6 @@ if(SK_GRAPHITE)
|
|
40
39
|
set(DAWN_PLATFORM_LIB "libdawn_platform_static")
|
41
40
|
set(DAWN_PROC_LIB "libdawn_proc_static")
|
42
41
|
set(BACKEND_SOURCES
|
43
|
-
#TODO: is this source needed to be added?
|
44
42
|
"${PROJECT_SOURCE_DIR}/../cpp/rnskia/DawnWindowContext.cpp"
|
45
43
|
)
|
46
44
|
add_library(libdawn_native_static STATIC IMPORTED)
|
@@ -59,14 +57,6 @@ else()
|
|
59
57
|
)
|
60
58
|
endif()
|
61
59
|
|
62
|
-
if(${REACT_NATIVE_VERSION} LESS 66)
|
63
|
-
file(
|
64
|
-
TO_CMAKE_PATH
|
65
|
-
"${NODE_MODULES_DIR}/react-native/ReactCommon/jsi/jsi/jsi.cpp"
|
66
|
-
INCLUDE_JSI_CPP
|
67
|
-
)
|
68
|
-
endif()
|
69
|
-
|
70
60
|
add_library(
|
71
61
|
${PACKAGE_NAME}
|
72
62
|
SHARED
|
@@ -91,7 +81,6 @@ add_library(
|
|
91
81
|
${BACKEND_SOURCES}
|
92
82
|
)
|
93
83
|
|
94
|
-
|
95
84
|
target_include_directories(
|
96
85
|
${PACKAGE_NAME}
|
97
86
|
PRIVATE
|
@@ -140,160 +129,48 @@ set_property(TARGET skunicode_core PROPERTY IMPORTED_LOCATION "${SKIA_LIBS_PATH}
|
|
140
129
|
add_library(skunicode_icu STATIC IMPORTED)
|
141
130
|
set_property(TARGET skunicode_icu PROPERTY IMPORTED_LOCATION "${SKIA_LIBS_PATH}/libskunicode_icu.a")
|
142
131
|
|
143
|
-
|
144
132
|
find_library(
|
145
133
|
LOG_LIB
|
146
134
|
log
|
147
135
|
)
|
148
136
|
message("-- LOG : " ${LOG_LIB})
|
149
137
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
find_package(ReactAndroid REQUIRED CONFIG)
|
154
|
-
endif()
|
138
|
+
# Find the required packages for RN 0.78+
|
139
|
+
find_package(fbjni REQUIRED CONFIG)
|
140
|
+
find_package(ReactAndroid REQUIRED CONFIG)
|
155
141
|
|
156
|
-
|
157
|
-
|
158
|
-
# JSI lib didn't exist on RN 0.65 and before. Simply omit it.
|
159
|
-
set (JSI_LIB "")
|
160
|
-
elseif(${REACT_NATIVE_VERSION} GREATER_EQUAL 71)
|
161
|
-
# RN 0.71 distributes prebuilt binaries.
|
162
|
-
set (JSI_LIB ReactAndroid::jsi)
|
163
|
-
else()
|
164
|
-
# RN 0.66 distributes libjsi.so, can be used instead of compiling jsi.cpp manually.
|
165
|
-
find_library(
|
166
|
-
JSI_LIB
|
167
|
-
jsi
|
168
|
-
PATHS ${LIBRN_DIR}
|
169
|
-
NO_CMAKE_FIND_ROOT_PATH
|
170
|
-
)
|
171
|
-
endif()
|
142
|
+
# Set JSI library for RN 0.78+
|
143
|
+
set (JSI_LIB ReactAndroid::jsi)
|
172
144
|
message("-- JSI : " ${JSI_LIB})
|
173
145
|
|
174
|
-
|
175
|
-
|
176
|
-
# RN 0.76 packs react_nativemodule_core into ReactAndroid::reactnative
|
177
|
-
set (REACT_LIB ReactAndroid::reactnative)
|
178
|
-
elseif(${REACT_NATIVE_VERSION} GREATER_EQUAL 71)
|
179
|
-
# RN 0.71 distributes prebuilt binaries.
|
180
|
-
set (REACT_LIB ReactAndroid::react_nativemodule_core)
|
181
|
-
else()
|
182
|
-
find_library(
|
183
|
-
REACT_LIB
|
184
|
-
react_nativemodule_core
|
185
|
-
PATHS ${LIBRN_DIR}
|
186
|
-
NO_CMAKE_FIND_ROOT_PATH
|
187
|
-
)
|
188
|
-
endif()
|
146
|
+
# Set React library for RN 0.78+
|
147
|
+
set (REACT_LIB ReactAndroid::reactnative)
|
189
148
|
message("-- REACT : " ${REACT_LIB})
|
190
149
|
|
191
|
-
|
192
|
-
|
193
|
-
# RN 0.71 distributes prebuilt binaries.
|
194
|
-
set (FBJNI_LIBRARY fbjni::fbjni)
|
195
|
-
else()
|
196
|
-
find_library(
|
197
|
-
FBJNI_LIBRARY
|
198
|
-
fbjni
|
199
|
-
PATHS ${libfbjni_link_DIRS}
|
200
|
-
NO_CMAKE_FIND_ROOT_PATH
|
201
|
-
)
|
202
|
-
endif()
|
150
|
+
# Set FBJNI library for RN 0.78+
|
151
|
+
set (FBJNI_LIBRARY fbjni::fbjni)
|
203
152
|
message("-- FBJNI : " ${FBJNI_LIBRARY})
|
204
153
|
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
# DO NOTHING, we'll not link these libraries
|
226
|
-
elseif(${REACT_NATIVE_VERSION} GREATER_EQUAL 71)
|
227
|
-
# RN 0.71 distributes prebuilt binaries.
|
228
|
-
set (RUNTIMEEXECUTOR_LIB "ReactAndroid::runtimeexecutor")
|
229
|
-
else()
|
230
|
-
find_library(
|
231
|
-
RUNTIMEEXECUTOR_LIB
|
232
|
-
runtimeexecutor
|
233
|
-
PATHS ${LIBRN_DIR}
|
234
|
-
NO_CMAKE_FIND_ROOT_PATH
|
235
|
-
)
|
236
|
-
endif()
|
237
|
-
message("-- RUNTIMEEXECUTOR : " ${RUNTIMEEXECUTOR_LIB})
|
238
|
-
|
239
|
-
unset(TURBOMODULES_LIB CACHE)
|
240
|
-
if(${REACT_NATIVE_VERSION} GREATER_EQUAL 76)
|
241
|
-
# RN 0.76 doesn't have turbomodulejsijni
|
242
|
-
# DO NOTHING, we'll not link these libraries
|
243
|
-
elseif(${REACT_NATIVE_VERSION} GREATER_EQUAL 71)
|
244
|
-
# RN 0.71 distributes prebuilt binaries.
|
245
|
-
set (TURBOMODULES_LIB "ReactAndroid::turbomodulejsijni")
|
246
|
-
else()
|
247
|
-
find_library(
|
248
|
-
TURBOMODULES_LIB
|
249
|
-
turbomodulejsijni
|
250
|
-
PATHS ${LIBRN_DIR}
|
251
|
-
NO_CMAKE_FIND_ROOT_PATH
|
252
|
-
)
|
253
|
-
endif()
|
254
|
-
message("-- TURBO : " ${TURBOMODULES_LIB})
|
255
|
-
|
256
|
-
add_definitions(-DREACT_NATIVE_VERSION=${REACT_NATIVE_VERSION})
|
257
|
-
|
258
|
-
# Link
|
259
|
-
if(${REACT_NATIVE_VERSION} GREATER_EQUAL 76)
|
260
|
-
set(COMMON_LIBS
|
261
|
-
${LOG_LIB}
|
262
|
-
${REACT_LIB}
|
263
|
-
${FBJNI_LIBRARY}
|
264
|
-
${JSI_LIB}
|
265
|
-
${SKIA_SVG_LIB}
|
266
|
-
${SKIA_SKSHAPER_LIB}
|
267
|
-
${SKIA_SKPARAGRAPH_LIB}
|
268
|
-
${SKIA_SKUNICODE_CORE_LIB}
|
269
|
-
${SKIA_SKUNICODE_ICU_LIB}
|
270
|
-
${SKIA_LIB}
|
271
|
-
-ljnigraphics
|
272
|
-
-lGLESv2
|
273
|
-
-lEGL
|
274
|
-
-landroid
|
275
|
-
)
|
276
|
-
else()
|
277
|
-
set(COMMON_LIBS
|
278
|
-
${LOG_LIB}
|
279
|
-
${FBJNI_LIBRARY}
|
280
|
-
${REACT_LIB}
|
281
|
-
${JSI_LIB}
|
282
|
-
${REACTNATIVEJNI_LIB}
|
283
|
-
${RUNTIMEEXECUTOR_LIB}
|
284
|
-
${TURBOMODULES_LIB}
|
285
|
-
${SKIA_SVG_LIB}
|
286
|
-
${SKIA_SKSHAPER_LIB}
|
287
|
-
${SKIA_SKPARAGRAPH_LIB}
|
288
|
-
${SKIA_SKUNICODE_CORE_LIB}
|
289
|
-
${SKIA_SKUNICODE_ICU_LIB}
|
290
|
-
${SKIA_LIB}
|
291
|
-
-ljnigraphics
|
292
|
-
-lGLESv2
|
293
|
-
-lEGL
|
294
|
-
-landroid
|
295
|
-
)
|
296
|
-
endif()
|
154
|
+
# Define React Native version
|
155
|
+
add_definitions(-DREACT_NATIVE_VERSION=78)
|
156
|
+
|
157
|
+
# Link libraries for RN 0.78+
|
158
|
+
set(COMMON_LIBS
|
159
|
+
${LOG_LIB}
|
160
|
+
${REACT_LIB} # This is ReactAndroid::reactnative which includes all needed components
|
161
|
+
${FBJNI_LIBRARY}
|
162
|
+
${JSI_LIB}
|
163
|
+
${SKIA_SVG_LIB}
|
164
|
+
${SKIA_SKSHAPER_LIB}
|
165
|
+
${SKIA_SKPARAGRAPH_LIB}
|
166
|
+
${SKIA_SKUNICODE_CORE_LIB}
|
167
|
+
${SKIA_SKUNICODE_ICU_LIB}
|
168
|
+
${SKIA_LIB}
|
169
|
+
-ljnigraphics
|
170
|
+
-lGLESv2
|
171
|
+
-lEGL
|
172
|
+
-landroid
|
173
|
+
)
|
297
174
|
|
298
175
|
if(SK_GRAPHITE)
|
299
176
|
target_link_libraries(${PACKAGE_NAME}
|
@@ -308,4 +185,4 @@ else()
|
|
308
185
|
-lGLESv2
|
309
186
|
-lEGL
|
310
187
|
)
|
311
|
-
endif()
|
188
|
+
endif()
|
package/android/build.gradle
CHANGED
@@ -19,7 +19,7 @@ import java.nio.file.Paths
|
|
19
19
|
// the minimum React Native version supported.
|
20
20
|
def DEFAULT_COMPILE_SDK_VERSION = 28
|
21
21
|
def DEFAULT_BUILD_TOOLS_VERSION = '28.0.3'
|
22
|
-
def DEFAULT_MIN_SDK_VERSION =
|
22
|
+
def DEFAULT_MIN_SDK_VERSION = 26
|
23
23
|
def DEFAULT_TARGET_SDK_VERSION = 28
|
24
24
|
|
25
25
|
def safeExtGet(prop, fallback) {
|
@@ -412,6 +412,9 @@ public:
|
|
412
412
|
* If a scanline decode is in progress, scanline mode will end, requiring the client to call
|
413
413
|
* startScanlineDecode() in order to return to decoding scanlines.
|
414
414
|
*
|
415
|
+
* For certain codecs, reading into a smaller bitmap than the original dimensions may not
|
416
|
+
* produce correct results (e.g. animated webp).
|
417
|
+
*
|
415
418
|
* @return Result kSuccess, or another value explaining the type of failure.
|
416
419
|
*/
|
417
420
|
Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options*);
|
@@ -812,6 +815,7 @@ protected:
|
|
812
815
|
}
|
813
816
|
|
814
817
|
virtual bool onGetGainmapCodec(SkGainmapInfo*, std::unique_ptr<SkCodec>*) { return false; }
|
818
|
+
virtual bool onGetGainmapInfo(SkGainmapInfo*) { return false; }
|
815
819
|
|
816
820
|
// TODO(issues.skia.org/363544350): This API only works for JPEG images. Remove this API once
|
817
821
|
// it is no longer used.
|
@@ -1053,8 +1057,9 @@ private:
|
|
1053
1057
|
friend class PNGCodecGM; // for fillIncompleteImage
|
1054
1058
|
friend class SkSampledCodec;
|
1055
1059
|
friend class SkIcoCodec;
|
1056
|
-
friend class
|
1057
|
-
friend class
|
1060
|
+
friend class SkPngCodec; // for onGetGainmapCodec
|
1061
|
+
friend class SkAndroidCodec; // for handleFrameIndex
|
1062
|
+
friend class SkCodecPriv; // for fEncodedInfo
|
1058
1063
|
};
|
1059
1064
|
|
1060
1065
|
namespace SkCodecs {
|
@@ -74,6 +74,12 @@
|
|
74
74
|
*/
|
75
75
|
//#define SK_R32_SHIFT 16
|
76
76
|
|
77
|
+
/* This controls how much space should be pre-allocated in an SkCanvas object
|
78
|
+
to store the SkMatrix and clip via calls to SkCanvas::save() (and balanced with
|
79
|
+
SkCanvas::restore()).
|
80
|
+
*/
|
81
|
+
//#define SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT 32
|
82
|
+
|
77
83
|
/* Determines whether to build code that supports the Ganesh GPU backend. Some classes
|
78
84
|
that are not GPU-specific, such as SkShader subclasses, have optional code
|
79
85
|
that is used allows them to interact with this GPU backend. If you'd like to
|
@@ -95,6 +101,11 @@
|
|
95
101
|
//#define SK_HISTOGRAM_MEMORY_KB(name, sample)
|
96
102
|
//#define SK_HISTOGRAM_CUSTOM_MICROSECONDS_TIMES(name, sampleUSec, minUSec, maxUSec, bucketCount)
|
97
103
|
|
104
|
+
/*
|
105
|
+
* Skia can provide extensive logging of Graphite Pipeline lifetimes.
|
106
|
+
*/
|
107
|
+
//#define SK_PIPELINE_LIFETIME_LOGGING
|
108
|
+
|
98
109
|
// To use smaller but slower mipmap builder
|
99
110
|
//#define SK_USE_DRAWING_MIPMAP_DOWNSAMPLER
|
100
111
|
|
@@ -34,6 +34,7 @@
|
|
34
34
|
#include "include/private/base/SkDeque.h"
|
35
35
|
#include "include/private/base/SkTArray.h"
|
36
36
|
|
37
|
+
#include <cstddef>
|
37
38
|
#include <cstdint>
|
38
39
|
#include <cstring>
|
39
40
|
#include <memory>
|
@@ -2502,15 +2503,18 @@ private:
|
|
2502
2503
|
void reset(SkDevice* device);
|
2503
2504
|
};
|
2504
2505
|
|
2505
|
-
|
2506
|
-
static constexpr int
|
2507
|
-
|
2506
|
+
#if defined(SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT)
|
2507
|
+
static constexpr int kMCRecCount = SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT;
|
2508
|
+
#else
|
2509
|
+
static constexpr int kMCRecCount = 32; // common depth for save/restores
|
2510
|
+
#endif
|
2508
2511
|
|
2509
|
-
|
2512
|
+
// This stack allocation of memory will be used to house the first kMCRecCount
|
2513
|
+
// layers without need to call malloc.
|
2514
|
+
alignas(MCRec) std::byte fMCRecStorage[sizeof(MCRec) * kMCRecCount];
|
2510
2515
|
|
2511
|
-
SkDeque fMCStack;
|
2512
|
-
// points to top of stack
|
2513
|
-
MCRec* fMCRec;
|
2516
|
+
SkDeque fMCStack; // uses the stack memory
|
2517
|
+
MCRec* fMCRec; // points to top of stack for convenience
|
2514
2518
|
|
2515
2519
|
// Installed via init()
|
2516
2520
|
sk_sp<SkDevice> fRootDevice;
|
@@ -12,6 +12,7 @@
|
|
12
12
|
#include "include/core/SkScalar.h"
|
13
13
|
#include "include/core/SkTypes.h"
|
14
14
|
#include "include/private/base/SkCPUTypes.h"
|
15
|
+
#include "include/private/base/SkTPin.h"
|
15
16
|
|
16
17
|
#include <array>
|
17
18
|
#include <cstdint>
|
@@ -415,6 +416,15 @@ struct SkRGBA4f {
|
|
415
416
|
SkRGBA4f makeOpaque() const {
|
416
417
|
return { fR, fG, fB, 1.0f };
|
417
418
|
}
|
419
|
+
|
420
|
+
/**
|
421
|
+
Returns a copy of the SkRGBA4f but with the alpha component pinned to [0, 1].
|
422
|
+
|
423
|
+
@return color with pinned alpha
|
424
|
+
*/
|
425
|
+
SkRGBA4f pinAlpha() const {
|
426
|
+
return { fR, fG, fB, SkTPin(fA, 0.f, 1.f) };
|
427
|
+
}
|
418
428
|
};
|
419
429
|
|
420
430
|
/** \struct SkColor4f
|
@@ -39,6 +39,85 @@ struct SK_API SkColorSpacePrimaries {
|
|
39
39
|
bool toXYZD50(skcms_Matrix3x3* toXYZD50) const;
|
40
40
|
};
|
41
41
|
|
42
|
+
namespace SkNamedPrimaries {
|
43
|
+
|
44
|
+
////////////////////////////////////////////////////////////////////////////////
|
45
|
+
// Color primaries defined by ITU-T H.273, table 2. Names are given by the first
|
46
|
+
// specification referenced in the value's row.
|
47
|
+
|
48
|
+
// Rec. ITU-R BT.709-6, value 1.
|
49
|
+
static constexpr SkColorSpacePrimaries kRec709 = {
|
50
|
+
0.64f, 0.33f, 0.3f, 0.6f, 0.15f, 0.06f, 0.3127f, 0.329f};
|
51
|
+
|
52
|
+
// Rec. ITU-R BT.470-6 System M (historical), value 4.
|
53
|
+
static constexpr SkColorSpacePrimaries kRec470SystemM = {
|
54
|
+
0.67f, 0.33f, 0.21f, 0.71f, 0.14f, 0.08f, 0.31f, 0.316f};
|
55
|
+
|
56
|
+
// Rec. ITU-R BT.470-6 System B, G (historical), value 5.
|
57
|
+
static constexpr SkColorSpacePrimaries kRec470SystemBG = {
|
58
|
+
0.64f, 0.33f, 0.29f, 0.60f, 0.15f, 0.06f, 0.3127f, 0.3290f};
|
59
|
+
|
60
|
+
// Rec. ITU-R BT.601-7 525, value 6.
|
61
|
+
static constexpr SkColorSpacePrimaries kRec601 = {
|
62
|
+
0.630f, 0.340f, 0.310f, 0.595f, 0.155f, 0.070f, 0.3127f, 0.3290f};
|
63
|
+
|
64
|
+
// SMPTE ST 240, value 7 (functionally the same as value 6).
|
65
|
+
static constexpr SkColorSpacePrimaries kSMPTE_ST_240 = kRec601;
|
66
|
+
|
67
|
+
// Generic film (colour filters using Illuminant C), value 8.
|
68
|
+
static constexpr SkColorSpacePrimaries kGenericFilm = {
|
69
|
+
0.681f, 0.319f, 0.243f, 0.692f, 0.145f, 0.049f, 0.310f, 0.316f};
|
70
|
+
|
71
|
+
// Rec. ITU-R BT.2020-2, value 9.
|
72
|
+
static constexpr SkColorSpacePrimaries kRec2020{
|
73
|
+
0.708f, 0.292f, 0.170f, 0.797f, 0.131f, 0.046f, 0.3127f, 0.3290f};
|
74
|
+
|
75
|
+
// SMPTE ST 428-1, value 10.
|
76
|
+
static constexpr SkColorSpacePrimaries kSMPTE_ST_428_1 = {
|
77
|
+
1.f, 0.f, 0.f, 1.f, 0.f, 0.f, 1.f / 3.f, 1.f / 3.f};
|
78
|
+
|
79
|
+
// SMPTE RP 431-2, value 11.
|
80
|
+
static constexpr SkColorSpacePrimaries kSMPTE_RP_431_2 = {
|
81
|
+
0.680f, 0.320f, 0.265f, 0.690f, 0.150f, 0.060f, 0.314f, 0.351f};
|
82
|
+
|
83
|
+
// SMPTE EG 432-1, value 12.
|
84
|
+
static constexpr SkColorSpacePrimaries kSMPTE_EG_432_1 = {
|
85
|
+
0.680f, 0.320f, 0.265f, 0.690f, 0.150f, 0.060f, 0.3127f, 0.3290f};
|
86
|
+
|
87
|
+
// No corresponding industry specification identified, value 22.
|
88
|
+
// This is sometimes referred to as EBU 3213-E, but that document doesn't
|
89
|
+
// specify these values.
|
90
|
+
static constexpr SkColorSpacePrimaries kITU_T_H273_Value22 = {
|
91
|
+
0.630f, 0.340f, 0.295f, 0.605f, 0.155f, 0.077f, 0.3127f, 0.3290f};
|
92
|
+
|
93
|
+
// Mapping between names of color primaries and the number of the corresponding
|
94
|
+
// row in ITU-T H.273, table 2. As above, the constants are named based on the
|
95
|
+
// first specification referenced in the value's row.
|
96
|
+
enum class CicpId : uint8_t {
|
97
|
+
// Value 0 is reserved.
|
98
|
+
kRec709 = 1,
|
99
|
+
// Value 2 is unspecified.
|
100
|
+
// Value 3 is reserved.
|
101
|
+
kRec470SystemM = 4,
|
102
|
+
kRec470SystemBG = 5,
|
103
|
+
kRec601 = 6,
|
104
|
+
kSMPTE_ST_240 = 7,
|
105
|
+
kGenericFilm = 8,
|
106
|
+
kRec2020 = 9,
|
107
|
+
kSMPTE_ST_428_1 = 10,
|
108
|
+
kSMPTE_RP_431_2 = 11,
|
109
|
+
kSMPTE_EG_432_1 = 12,
|
110
|
+
// Values 13-21 are reserved.
|
111
|
+
kITU_T_H273_Value22 = 22,
|
112
|
+
// Values 23-255 are reserved.
|
113
|
+
};
|
114
|
+
|
115
|
+
// https://www.w3.org/TR/css-color-4/#predefined-prophoto-rgb
|
116
|
+
static constexpr SkColorSpacePrimaries kProPhotoRGB = {
|
117
|
+
0.7347f, 0.2653f, 0.1596f, 0.8404f, 0.0366f, 0.0001f, 0.34567f, 0.35850f};
|
118
|
+
|
119
|
+
} // namespace SkNamedPrimaries
|
120
|
+
|
42
121
|
namespace SkNamedTransferFn {
|
43
122
|
|
44
123
|
// Like SkNamedGamut::kSRGB, keeping this bitwise exactly the same as skcms makes things fastest.
|
@@ -48,18 +127,98 @@ static constexpr skcms_TransferFunction kSRGB =
|
|
48
127
|
static constexpr skcms_TransferFunction k2Dot2 =
|
49
128
|
{ 2.2f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f };
|
50
129
|
|
130
|
+
static constexpr skcms_TransferFunction kRec2020 = {
|
131
|
+
2.22222f, 0.909672f, 0.0903276f, 0.222222f, 0.0812429f, 0, 0};
|
132
|
+
|
133
|
+
////////////////////////////////////////////////////////////////////////////////
|
134
|
+
// Color primaries defined by ITU-T H.273, table 3. Names are given by the first
|
135
|
+
// specification referenced in the value's row.
|
136
|
+
|
137
|
+
// Rec. ITU-R BT.709-6, value 1.
|
138
|
+
static constexpr skcms_TransferFunction kRec709 = {2.222222222222f,
|
139
|
+
0.909672415686f,
|
140
|
+
0.090327584314f,
|
141
|
+
0.222222222222f,
|
142
|
+
0.081242858299f,
|
143
|
+
0.f,
|
144
|
+
0.f};
|
145
|
+
|
146
|
+
// Rec. ITU-R BT.470-6 System M (historical) assumed display gamma 2.2, value 4.
|
147
|
+
static constexpr skcms_TransferFunction kRec470SystemM = {2.2f, 1.f, 0.f, 0.f, 0.f, 0.f, 0.f};
|
148
|
+
|
149
|
+
// Rec. ITU-R BT.470-6 System B, G (historical) assumed display gamma 2.8,
|
150
|
+
// value 5.
|
151
|
+
static constexpr skcms_TransferFunction kRec470SystemBG = {2.8f, 1.f, 0.f, 0.f, 0.f, 0.f, 0.f};
|
152
|
+
|
153
|
+
// Rec. ITU-R BT.601-7, same as kRec709, value 6.
|
154
|
+
static constexpr skcms_TransferFunction kRec601 = kRec709;
|
155
|
+
|
156
|
+
// SMPTE ST 240, value 7.
|
157
|
+
static constexpr skcms_TransferFunction kSMPTE_ST_240 = {
|
158
|
+
2.222222222222f, 0.899626676224f, 0.100373323776f, 0.25f, 0.091286342118f, 0.f, 0.f};
|
159
|
+
|
160
|
+
// Linear, value 8
|
51
161
|
static constexpr skcms_TransferFunction kLinear =
|
52
162
|
{ 1.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f };
|
53
163
|
|
54
|
-
|
55
|
-
|
164
|
+
// IEC 61966-2-4, value 11, same as kRec709 (but is explicitly extended).
|
165
|
+
static constexpr skcms_TransferFunction kIEC61966_2_4 = kRec709;
|
166
|
+
|
167
|
+
// IEC 61966-2-1 sRGB, value 13.
|
168
|
+
static constexpr skcms_TransferFunction kIEC61966_2_1 = kSRGB;
|
169
|
+
|
170
|
+
// Rec. ITU-R BT.2020-2 (10-bit system), value 14.
|
171
|
+
static constexpr skcms_TransferFunction kRec2020_10bit = kRec709;
|
56
172
|
|
173
|
+
// Rec. ITU-R BT.2020-2 (12-bit system), value 15.
|
174
|
+
static constexpr skcms_TransferFunction kRec2020_12bit = kRec709;
|
175
|
+
|
176
|
+
// Rec. ITU-R BT.2100-2 perceptual quantization (PQ) system, value 16.
|
57
177
|
static constexpr skcms_TransferFunction kPQ =
|
58
178
|
{-2.0f, -107/128.0f, 1.0f, 32/2523.0f, 2413/128.0f, -2392/128.0f, 8192/1305.0f };
|
59
179
|
|
180
|
+
// SMPTE ST 428-1, value 17.
|
181
|
+
static constexpr skcms_TransferFunction kSMPTE_ST_428_1 = {
|
182
|
+
2.6f, 1.034080527699f, 0.f, 0.f, 0.f, 0.f, 0.f};
|
183
|
+
|
184
|
+
// Rec. ITU-R BT.2100-2 hybrid log-gamma (HLG) system, value 18.
|
60
185
|
static constexpr skcms_TransferFunction kHLG =
|
61
186
|
{-3.0f, 2.0f, 2.0f, 1/0.17883277f, 0.28466892f, 0.55991073f, 0.0f };
|
62
187
|
|
188
|
+
// Mapping between transfer function names and the number of the corresponding
|
189
|
+
// row in ITU-T H.273, table 3. As above, the constants are named based on the
|
190
|
+
// first specification referenced in the value's row.
|
191
|
+
enum class CicpId : uint8_t {
|
192
|
+
// Value 0 is reserved.
|
193
|
+
kRec709 = 1,
|
194
|
+
// Value 2 is unspecified.
|
195
|
+
// Value 3 is reserved.
|
196
|
+
kRec470SystemM = 4,
|
197
|
+
kRec470SystemBG = 5,
|
198
|
+
kRec601 = 6,
|
199
|
+
kSMPTE_ST_240 = 7,
|
200
|
+
kLinear = 8,
|
201
|
+
// Value 9 is not supported by `SkColorSpace::MakeCICP`.
|
202
|
+
// Value 10 is not supported by `SkColorSpace::MakeCICP`.
|
203
|
+
kIEC61966_2_4 = 11,
|
204
|
+
// Value 12 is not supported by `SkColorSpace::MakeCICP`.
|
205
|
+
kIEC61966_2_1 = 13,
|
206
|
+
kSRGB = kIEC61966_2_1,
|
207
|
+
kRec2020_10bit = 14,
|
208
|
+
kRec2020_12bit = 15,
|
209
|
+
kPQ = 16,
|
210
|
+
kSMPTE_ST_428_1 = 17,
|
211
|
+
kHLG = 18,
|
212
|
+
// Values 19-255 are reserved.
|
213
|
+
};
|
214
|
+
|
215
|
+
// https://w3.org/TR/css-color-4/#valdef-color-prophoto-rgb
|
216
|
+
// "The transfer curve is a gamma function with a value of 1/1.8"
|
217
|
+
static constexpr skcms_TransferFunction kProPhotoRGB = {1.8f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f};
|
218
|
+
|
219
|
+
// https://www.w3.org/TR/css-color-4/#predefined-a98-rgb
|
220
|
+
static constexpr skcms_TransferFunction kA98RGB = k2Dot2;
|
221
|
+
|
63
222
|
} // namespace SkNamedTransferFn
|
64
223
|
|
65
224
|
namespace SkNamedGamut {
|
@@ -122,6 +281,29 @@ public:
|
|
122
281
|
static sk_sp<SkColorSpace> MakeRGB(const skcms_TransferFunction& transferFn,
|
123
282
|
const skcms_Matrix3x3& toXYZ);
|
124
283
|
|
284
|
+
/**
|
285
|
+
* Create an SkColorSpace from code points specified in Rec. ITU-T H.273.
|
286
|
+
* Null will be returned for invalid or unsupported combination of code
|
287
|
+
* points.
|
288
|
+
*
|
289
|
+
* Parameters:
|
290
|
+
*
|
291
|
+
* - `color_primaries` identifies an entry in Rec. ITU-T H.273, Table 2.
|
292
|
+
* - `transfer_characteristics` identifies an entry in Rec. ITU-T H.273, Table 3.
|
293
|
+
*
|
294
|
+
* `SkColorSpace` (and the underlying `skcms_ICCProfile`) only supports RGB
|
295
|
+
* color spaces and therefore this function does not take a
|
296
|
+
* `matrix_coefficients` parameter - the caller is expected to verify that
|
297
|
+
* `matrix_coefficients` is `0`.
|
298
|
+
*
|
299
|
+
* Narrow range images are extremely rare - see
|
300
|
+
* https://github.com/w3c/png/issues/312#issuecomment-2327349614. Therefore
|
301
|
+
* this function doesn't take a `video_full_range_flag` - the caller is
|
302
|
+
* expected to verify that it is `1` (indicating a full range image).
|
303
|
+
*/
|
304
|
+
static sk_sp<SkColorSpace> MakeCICP(SkNamedPrimaries::CicpId color_primaries,
|
305
|
+
SkNamedTransferFn::CicpId transfer_characteristics);
|
306
|
+
|
125
307
|
/**
|
126
308
|
* Create an SkColorSpace from a parsed (skcms) ICC profile.
|
127
309
|
*/
|