@shopify/react-native-skia 0.1.192 → 0.1.193
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 +1 -1
- package/android/build.gradle +1 -0
- package/android/cpp/jni/JniPlatformContext.cpp +1 -1
- package/cpp/api/JsiSkImage.h +25 -4
- package/cpp/api/JsiSkImageFactory.h +2 -2
- package/cpp/api/JsiSkPath.h +8 -6
- package/cpp/rnskia/dom/base/Declaration.h +5 -7
- package/cpp/rnskia/dom/nodes/JsiBlurMaskNode.h +1 -0
- package/cpp/rnskia/dom/nodes/JsiPathNode.h +2 -2
- package/cpp/rnskia/dom/props/BoxShadowProps.h +2 -0
- package/cpp/skia/include/android/SkAndroidFrameworkUtils.h +2 -8
- package/cpp/skia/include/android/SkImageAndroid.h +101 -0
- package/cpp/skia/include/codec/SkAndroidCodec.h +26 -8
- package/cpp/skia/include/codec/SkCodec.h +31 -17
- package/cpp/skia/include/codec/SkEncodedImageFormat.h +36 -0
- package/cpp/skia/include/codec/SkPixmapUtils.h +31 -0
- package/cpp/skia/include/config/SkUserConfig.h +61 -29
- package/cpp/skia/include/core/SkBitmap.h +25 -25
- package/cpp/skia/include/core/SkBlurTypes.h +0 -2
- package/cpp/skia/include/core/SkCanvas.h +32 -15
- package/cpp/skia/include/core/SkCapabilities.h +2 -2
- package/cpp/skia/include/core/SkColor.h +2 -0
- package/cpp/skia/include/core/SkColorPriv.h +19 -4
- package/cpp/skia/include/core/SkColorSpace.h +14 -17
- package/cpp/skia/include/core/SkColorType.h +1 -0
- package/cpp/skia/include/core/SkContourMeasure.h +1 -1
- package/cpp/skia/include/core/SkCoverageMode.h +0 -2
- package/cpp/skia/include/core/SkCubicMap.h +2 -0
- package/cpp/skia/include/core/SkData.h +5 -2
- package/cpp/skia/include/core/SkDataTable.h +6 -2
- package/cpp/skia/include/core/SkDeferredDisplayList.h +11 -10
- package/cpp/skia/include/core/SkDeferredDisplayListRecorder.h +9 -8
- package/cpp/skia/include/core/SkDrawable.h +10 -2
- package/cpp/skia/include/core/SkEncodedImageFormat.h +3 -30
- package/cpp/skia/include/core/SkFlattenable.h +4 -2
- package/cpp/skia/include/core/SkFont.h +1 -0
- package/cpp/skia/include/core/SkFontMetrics.h +1 -0
- package/cpp/skia/include/core/SkFontMgr.h +20 -29
- package/cpp/skia/include/core/SkFontStyle.h +4 -1
- package/cpp/skia/include/core/SkGraphics.h +21 -18
- package/cpp/skia/include/core/SkICC.h +3 -13
- package/cpp/skia/include/core/SkImage.h +395 -717
- package/cpp/skia/include/core/SkImageGenerator.h +19 -74
- package/cpp/skia/include/core/SkImageInfo.h +7 -5
- package/cpp/skia/include/core/SkM44.h +11 -0
- package/cpp/skia/include/core/SkMaskFilter.h +6 -3
- package/cpp/skia/include/core/SkMatrix.h +14 -4
- package/cpp/skia/include/core/SkMesh.h +52 -18
- package/cpp/skia/include/core/SkMilestone.h +1 -1
- package/cpp/skia/include/core/SkPaint.h +11 -34
- package/cpp/skia/include/core/SkPath.h +23 -4
- package/cpp/skia/include/core/SkPathBuilder.h +13 -5
- package/cpp/skia/include/core/SkPathMeasure.h +1 -1
- package/cpp/skia/include/core/SkPathTypes.h +0 -2
- package/cpp/skia/include/core/SkPathUtils.h +42 -0
- package/cpp/skia/include/core/SkPicture.h +3 -2
- package/cpp/skia/include/core/SkPictureRecorder.h +2 -0
- package/cpp/skia/include/core/SkPixelRef.h +4 -8
- package/cpp/skia/include/core/SkPixmap.h +12 -20
- package/cpp/skia/include/core/SkPoint.h +4 -2
- package/cpp/skia/include/core/SkPromiseImageTexture.h +2 -2
- package/cpp/skia/include/core/SkRRect.h +5 -1
- package/cpp/skia/include/core/SkRect.h +6 -3
- package/cpp/skia/include/core/SkRefCnt.h +9 -14
- package/cpp/skia/include/core/SkRegion.h +1 -1
- package/cpp/skia/include/core/SkScalar.h +2 -4
- package/cpp/skia/include/core/SkSerialProcs.h +18 -10
- package/cpp/skia/include/core/SkShader.h +1 -64
- package/cpp/skia/include/core/SkSize.h +2 -0
- package/cpp/skia/include/core/SkSpan.h +4 -112
- package/cpp/skia/include/core/SkStream.h +11 -12
- package/cpp/skia/include/core/SkString.h +9 -25
- package/cpp/skia/include/core/SkStrokeRec.h +1 -1
- package/cpp/skia/include/core/SkSurface.h +83 -61
- package/cpp/skia/include/core/SkSurfaceCharacterization.h +3 -3
- package/cpp/skia/include/core/SkSurfaceProps.h +9 -1
- package/cpp/skia/include/core/SkTextBlob.h +2 -2
- package/cpp/skia/include/core/SkTextureCompressionType.h +30 -0
- package/cpp/skia/include/core/SkTime.h +1 -1
- package/cpp/skia/include/core/SkTypeface.h +9 -2
- package/cpp/skia/include/core/SkTypes.h +37 -466
- package/cpp/skia/include/core/SkVertices.h +2 -0
- package/cpp/skia/include/core/SkYUVAInfo.h +4 -0
- package/cpp/skia/include/core/SkYUVAPixmaps.h +7 -1
- package/cpp/skia/include/docs/SkPDFDocument.h +12 -1
- package/cpp/skia/include/effects/SkColorMatrix.h +2 -1
- package/cpp/skia/include/effects/SkGradientShader.h +65 -14
- package/cpp/skia/include/effects/SkImageFilters.h +0 -11
- package/cpp/skia/include/effects/SkRuntimeEffect.h +41 -11
- package/cpp/skia/include/encode/SkEncoder.h +7 -3
- package/cpp/skia/include/encode/SkICC.h +36 -0
- package/cpp/skia/include/encode/SkJpegEncoder.h +102 -71
- package/cpp/skia/include/encode/SkPngEncoder.h +89 -71
- package/cpp/skia/include/encode/SkWebpEncoder.h +65 -38
- package/cpp/skia/include/gpu/GpuTypes.h +23 -1
- package/cpp/skia/include/gpu/GrBackendSurface.h +9 -7
- package/cpp/skia/include/gpu/GrContextOptions.h +28 -9
- package/cpp/skia/include/gpu/GrContextThreadSafeProxy.h +6 -4
- package/cpp/skia/include/gpu/GrDirectContext.h +84 -63
- package/cpp/skia/include/gpu/GrDriverBugWorkarounds.h +2 -1
- package/cpp/skia/include/gpu/GrRecordingContext.h +9 -5
- package/cpp/skia/include/gpu/GrTypes.h +18 -18
- package/cpp/skia/include/gpu/d3d/GrD3DTypes.h +4 -4
- package/cpp/skia/include/gpu/dawn/GrDawnTypes.h +3 -3
- package/cpp/skia/include/gpu/ganesh/GrTextureGenerator.h +77 -0
- package/cpp/skia/include/gpu/ganesh/SkImageGanesh.h +385 -0
- package/cpp/skia/include/gpu/gl/GrGLExtensions.h +3 -3
- package/cpp/skia/include/gpu/gl/GrGLFunctions.h +1 -1
- package/cpp/skia/include/gpu/gl/GrGLInterface.h +0 -3
- package/cpp/skia/include/gpu/gl/GrGLTypes.h +2 -1
- package/cpp/skia/include/gpu/graphite/BackendTexture.h +72 -3
- package/cpp/skia/include/gpu/graphite/Context.h +85 -32
- package/cpp/skia/include/gpu/graphite/ContextOptions.h +15 -11
- package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +55 -5
- package/cpp/skia/include/gpu/graphite/ImageProvider.h +6 -4
- package/cpp/skia/include/gpu/graphite/Recorder.h +41 -11
- package/cpp/skia/include/gpu/graphite/Recording.h +50 -3
- package/cpp/skia/include/gpu/graphite/TextureInfo.h +47 -8
- package/cpp/skia/include/gpu/graphite/YUVABackendTextures.h +139 -0
- package/cpp/skia/include/gpu/graphite/dawn/DawnTypes.h +40 -0
- package/cpp/skia/include/gpu/graphite/dawn/DawnUtils.h +28 -0
- package/cpp/skia/include/gpu/graphite/mtl/MtlBackendContext.h +1 -1
- package/cpp/skia/include/gpu/graphite/mtl/{MtlTypes.h → MtlGraphiteTypes.h} +7 -6
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteUtils.h +27 -0
- package/cpp/skia/include/gpu/graphite/vk/VulkanGraphiteTypes.h +4 -9
- package/cpp/skia/include/gpu/graphite/vk/VulkanGraphiteUtils.h +28 -0
- package/cpp/skia/include/gpu/mock/GrMockTypes.h +17 -13
- package/cpp/skia/include/gpu/mtl/GrMtlTypes.h +2 -2
- package/cpp/skia/include/gpu/vk/GrVkBackendContext.h +1 -1
- package/cpp/skia/include/gpu/vk/GrVkTypes.h +3 -3
- package/cpp/skia/include/gpu/vk/VulkanExtensions.h +3 -3
- package/cpp/skia/include/gpu/vk/VulkanMemoryAllocator.h +5 -7
- package/cpp/skia/include/pathops/SkPathOps.h +3 -3
- package/cpp/skia/include/ports/SkFontMgr_data.h +22 -0
- package/cpp/skia/include/ports/SkFontMgr_indirect.h +14 -14
- package/cpp/skia/include/ports/SkRemotableFontMgr.h +2 -2
- package/cpp/skia/include/ports/SkTypeface_win.h +2 -1
- package/cpp/skia/include/private/SkChecksum.h +32 -7
- package/cpp/skia/include/private/SkColorData.h +1 -26
- package/cpp/skia/include/private/SkGainmapInfo.h +97 -0
- package/cpp/skia/include/private/SkGainmapShader.h +53 -0
- package/cpp/skia/include/private/SkIDChangeListener.h +4 -3
- package/cpp/skia/include/private/SkJpegGainmapEncoder.h +71 -0
- package/cpp/skia/include/private/SkJpegMetadataDecoder.h +61 -0
- package/cpp/skia/include/private/SkOpts_spi.h +3 -1
- package/cpp/skia/include/private/SkPathRef.h +64 -47
- package/cpp/skia/include/private/SkSLDefines.h +5 -5
- package/cpp/skia/include/private/SkSLSampleUsage.h +0 -4
- package/cpp/skia/include/private/SkSpinlock.h +1 -1
- package/cpp/skia/include/private/SkWeakRefCnt.h +3 -0
- package/cpp/skia/include/private/{SingleOwner.h → base/SingleOwner.h} +8 -5
- package/cpp/skia/include/private/base/SkAPI.h +52 -0
- package/cpp/skia/include/private/base/SkAlign.h +39 -0
- package/cpp/skia/include/private/base/SkAlignedStorage.h +32 -0
- package/cpp/skia/include/private/base/SkAssert.h +92 -0
- package/cpp/skia/include/private/base/SkAttributes.h +102 -0
- package/cpp/skia/include/private/base/SkCPUTypes.h +25 -0
- package/cpp/skia/include/private/base/SkContainers.h +46 -0
- package/cpp/skia/include/private/base/SkDebug.h +27 -0
- package/cpp/skia/include/private/{SkDeque.h → base/SkDeque.h} +3 -1
- package/cpp/skia/include/private/base/SkFeatures.h +151 -0
- package/cpp/skia/include/private/{SkFixed.h → base/SkFixed.h} +9 -7
- package/cpp/skia/include/private/{SkFloatBits.h → base/SkFloatBits.h} +2 -3
- package/cpp/skia/include/private/{SkFloatingPoint.h → base/SkFloatingPoint.h} +18 -9
- package/cpp/skia/include/private/base/SkLoadUserConfig.h +63 -0
- package/cpp/skia/include/private/{SkMacros.h → base/SkMacros.h} +17 -2
- package/cpp/skia/include/private/{SkMalloc.h → base/SkMalloc.h} +4 -7
- package/cpp/skia/include/{core → private/base}/SkMath.h +25 -2
- package/cpp/skia/include/private/{SkMutex.h → base/SkMutex.h} +5 -5
- package/cpp/skia/include/private/{SkNoncopyable.h → base/SkNoncopyable.h} +2 -2
- package/cpp/skia/include/private/{SkOnce.h → base/SkOnce.h} +3 -1
- package/cpp/skia/include/private/base/SkPathEnums.h +25 -0
- package/cpp/skia/include/private/{SkSafe32.h → base/SkSafe32.h} +16 -1
- package/cpp/skia/include/private/{SkSemaphore.h → base/SkSemaphore.h} +4 -3
- package/cpp/skia/include/private/base/SkSpan_impl.h +129 -0
- package/cpp/skia/include/private/base/SkTArray.h +694 -0
- package/cpp/skia/include/private/{SkTDArray.h → base/SkTDArray.h} +17 -54
- package/cpp/skia/include/private/{SkTFitsIn.h → base/SkTFitsIn.h} +14 -8
- package/cpp/skia/include/private/{SkTLogic.h → base/SkTLogic.h} +1 -1
- package/cpp/skia/include/private/{SkTemplates.h → base/SkTemplates.h} +63 -88
- package/cpp/skia/include/private/{SkThreadID.h → base/SkThreadID.h} +5 -2
- package/cpp/skia/include/private/{SkTo.h → base/SkTo.h} +13 -2
- package/cpp/skia/include/private/base/SkTypeTraits.h +33 -0
- package/cpp/skia/include/private/chromium/GrVkSecondaryCBDrawContext.h +130 -0
- package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +5 -9
- package/cpp/skia/include/private/chromium/SkDiscardableMemory.h +70 -0
- package/cpp/skia/include/private/chromium/Slug.h +0 -9
- package/cpp/skia/include/private/gpu/ganesh/GrContext_Base.h +2 -1
- package/cpp/skia/include/private/gpu/ganesh/GrD3DTypesMinimal.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrDawnTypesPriv.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrGLTypesPriv.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrImageContext.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrMockTypesPriv.h +3 -2
- package/cpp/skia/include/private/gpu/ganesh/GrMtlTypesPriv.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +17 -23
- package/cpp/skia/include/private/gpu/ganesh/GrVkTypesPriv.h +2 -2
- package/cpp/skia/include/private/gpu/graphite/DawnTypesPriv.h +38 -0
- package/cpp/skia/include/private/gpu/graphite/{MtlTypesPriv.h → MtlGraphiteTypesPriv.h} +5 -5
- package/cpp/skia/include/private/gpu/graphite/VulkanGraphiteTypesPriv.h +1 -9
- package/cpp/skia/include/private/gpu/vk/SkiaVulkan.h +4 -0
- package/cpp/skia/include/utils/SkCamera.h +1 -1
- package/cpp/skia/include/utils/SkCustomTypeface.h +7 -1
- package/cpp/skia/include/utils/SkNWayCanvas.h +6 -6
- package/cpp/skia/include/utils/SkOrderedFontMgr.h +7 -6
- package/cpp/skia/include/utils/SkPaintFilterCanvas.h +2 -2
- package/cpp/skia/include/utils/SkParsePath.h +1 -1
- package/cpp/skia/modules/skcms/skcms.h +14 -0
- package/cpp/skia/modules/skcms/src/Transform_inl.h +19 -0
- package/cpp/skia/modules/skparagraph/include/FontCollection.h +2 -2
- package/cpp/skia/modules/skparagraph/include/Paragraph.h +72 -2
- package/cpp/skia/modules/skparagraph/include/ParagraphCache.h +1 -11
- package/cpp/skia/modules/skparagraph/include/ParagraphPainter.h +63 -0
- package/cpp/skia/modules/skparagraph/include/TextStyle.h +27 -4
- package/cpp/skia/modules/skparagraph/include/TypefaceFontProvider.h +13 -13
- package/cpp/skia/modules/skresources/include/SkResources.h +18 -4
- package/cpp/skia/modules/svg/include/SkSVGAttribute.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGAttributeParser.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGContainer.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGDOM.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFilterContext.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGGradient.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGIDMapper.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +3 -3
- package/cpp/skia/modules/svg/include/SkSVGSVG.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGTypes.h +22 -21
- package/cpp/skia/modules/svg/include/SkSVGValue.h +1 -1
- package/cpp/skia/{include/private → src/core}/SkTHash.h +41 -37
- package/ios/RNSkia-iOS/ViewScreenshotService.mm +1 -1
- package/libs/android/arm64-v8a/libskia.a +0 -0
- package/libs/android/arm64-v8a/libskottie.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/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/libsksg.a +0 -0
- package/libs/android/armeabi-v7a/libskshaper.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/libsksg.a +0 -0
- package/libs/android/x86/libskshaper.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/libsksg.a +0 -0
- package/libs/android/x86_64/libskshaper.a +0 -0
- package/libs/android/x86_64/libsvg.a +0 -0
- package/libs/ios/libskia.xcframework/Info.plist +5 -5
- 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/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/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 +1 -1
- package/react-native-skia.podspec +1 -1
- package/scripts/install-npm.js +11 -1
- package/cpp/skia/include/core/SkImageEncoder.h +0 -71
- package/cpp/skia/include/gpu/GrConfig.h +0 -53
- package/cpp/skia/include/gpu/graphite/CombinationBuilder.h +0 -195
- package/cpp/skia/include/private/SkHalf.h +0 -38
- package/cpp/skia/include/private/SkImageInfoPriv.h +0 -199
- package/cpp/skia/include/private/SkSLIRNode.h +0 -64
- package/cpp/skia/include/private/SkSLLayout.h +0 -144
- package/cpp/skia/include/private/SkSLModifiers.h +0 -178
- package/cpp/skia/include/private/SkSLProgramElement.h +0 -77
- package/cpp/skia/include/private/SkSLProgramKind.h +0 -35
- package/cpp/skia/include/private/SkSLStatement.h +0 -86
- package/cpp/skia/include/private/SkSLString.h +0 -41
- package/cpp/skia/include/private/SkSLSymbol.h +0 -94
- package/cpp/skia/include/private/SkSafe_math.h +0 -52
- package/cpp/skia/include/private/SkStringView.h +0 -51
- package/cpp/skia/include/private/SkTArray.h +0 -655
- package/cpp/skia/include/private/SkUniquePaintParamsID.h +0 -35
- package/cpp/skia/include/private/SkVx.h +0 -1026
- package/cpp/skia/include/sksl/DSL.h +0 -37
- package/cpp/skia/include/sksl/DSLBlock.h +0 -58
- package/cpp/skia/include/sksl/DSLCase.h +0 -62
- package/cpp/skia/include/sksl/DSLCore.h +0 -492
- package/cpp/skia/include/sksl/DSLExpression.h +0 -241
- package/cpp/skia/include/sksl/DSLFunction.h +0 -113
- package/cpp/skia/include/sksl/DSLLayout.h +0 -92
- package/cpp/skia/include/sksl/DSLModifiers.h +0 -69
- package/cpp/skia/include/sksl/DSLStatement.h +0 -82
- package/cpp/skia/include/sksl/DSLSymbols.h +0 -61
- package/cpp/skia/include/sksl/DSLType.h +0 -271
- package/cpp/skia/include/sksl/DSLVar.h +0 -231
- package/cpp/skia/include/sksl/SkSLErrorReporter.h +0 -65
- package/cpp/skia/include/sksl/SkSLOperator.h +0 -154
- package/cpp/skia/include/sksl/SkSLPosition.h +0 -104
- package/cpp/skia/include/utils/SkRandom.h +0 -169
- package/cpp/skia/src/core/SkLRUCache.h +0 -126
- package/cpp/skia/src/core/SkTInternalLList.h +0 -302
- /package/cpp/skia/include/{core → codec}/SkPngChunkReader.h +0 -0
- /package/cpp/skia/include/private/{SkTPin.h → base/SkTPin.h} +0 -0
- /package/cpp/skia/include/private/{SkThreadAnnotations.h → base/SkThreadAnnotations.h} +0 -0
|
@@ -13,10 +13,11 @@
|
|
|
13
13
|
#include "include/core/SkTypes.h"
|
|
14
14
|
|
|
15
15
|
class SkDeferredDisplayListPriv;
|
|
16
|
+
class SkPromiseImageTexture;
|
|
16
17
|
|
|
17
|
-
#if
|
|
18
|
+
#if defined(SK_GANESH)
|
|
18
19
|
#include "include/gpu/GrRecordingContext.h"
|
|
19
|
-
#include "include/private/SkTArray.h"
|
|
20
|
+
#include "include/private/base/SkTArray.h"
|
|
20
21
|
#include <map>
|
|
21
22
|
class GrRenderTask;
|
|
22
23
|
class GrRenderTargetProxy;
|
|
@@ -36,7 +37,7 @@ public:
|
|
|
36
37
|
return fCharacterization;
|
|
37
38
|
}
|
|
38
39
|
|
|
39
|
-
#if
|
|
40
|
+
#if defined(SK_GANESH)
|
|
40
41
|
/**
|
|
41
42
|
* Iterate through the programs required by the DDL.
|
|
42
43
|
*/
|
|
@@ -52,7 +53,7 @@ public:
|
|
|
52
53
|
|
|
53
54
|
private:
|
|
54
55
|
GrDirectContext* fDContext;
|
|
55
|
-
const
|
|
56
|
+
const skia_private::TArray<GrRecordingContext::ProgramData>& fProgramData;
|
|
56
57
|
int fIndex;
|
|
57
58
|
};
|
|
58
59
|
#endif
|
|
@@ -70,7 +71,7 @@ private:
|
|
|
70
71
|
// texture when the DDL is replayed. It has to be separately ref counted bc the lazy proxy
|
|
71
72
|
// can outlive the DDL.
|
|
72
73
|
class LazyProxyData : public SkRefCnt {
|
|
73
|
-
#if
|
|
74
|
+
#if defined(SK_GANESH)
|
|
74
75
|
public:
|
|
75
76
|
// Upon being replayed - this field will be filled in (by the DrawingManager) with the
|
|
76
77
|
// proxy backing the destination SkSurface. Note that, since there is no good place to
|
|
@@ -87,21 +88,21 @@ private:
|
|
|
87
88
|
sk_sp<GrRenderTargetProxy> fTargetProxy,
|
|
88
89
|
sk_sp<LazyProxyData>);
|
|
89
90
|
|
|
90
|
-
#if
|
|
91
|
-
const
|
|
91
|
+
#if defined(SK_GANESH)
|
|
92
|
+
const skia_private::TArray<GrRecordingContext::ProgramData>& programData() const {
|
|
92
93
|
return fProgramData;
|
|
93
94
|
}
|
|
94
95
|
#endif
|
|
95
96
|
|
|
96
97
|
const SkSurfaceCharacterization fCharacterization;
|
|
97
98
|
|
|
98
|
-
#if
|
|
99
|
+
#if defined(SK_GANESH)
|
|
99
100
|
// These are ordered such that the destructor cleans op tasks up first (which may refer back
|
|
100
101
|
// to the arena and memory pool in their destructors).
|
|
101
102
|
GrRecordingContext::OwnedArenas fArenas;
|
|
102
|
-
|
|
103
|
+
skia_private::TArray<sk_sp<GrRenderTask>> fRenderTasks;
|
|
103
104
|
|
|
104
|
-
|
|
105
|
+
skia_private::TArray<GrRecordingContext::ProgramData> fProgramData;
|
|
105
106
|
sk_sp<GrRenderTargetProxy> fTargetProxy;
|
|
106
107
|
sk_sp<LazyProxyData> fLazyProxyData;
|
|
107
108
|
#endif
|
|
@@ -50,13 +50,14 @@ public:
|
|
|
50
50
|
|
|
51
51
|
sk_sp<SkDeferredDisplayList> detach();
|
|
52
52
|
|
|
53
|
-
#if
|
|
54
|
-
using PromiseImageTextureContext
|
|
55
|
-
using PromiseImageTextureFulfillProc =
|
|
56
|
-
|
|
53
|
+
#if defined(SK_GANESH)
|
|
54
|
+
using PromiseImageTextureContext = void*;
|
|
55
|
+
using PromiseImageTextureFulfillProc =
|
|
56
|
+
sk_sp<SkPromiseImageTexture> (*)(PromiseImageTextureContext);
|
|
57
|
+
using PromiseImageTextureReleaseProc = void (*)(PromiseImageTextureContext);
|
|
57
58
|
|
|
58
59
|
#ifndef SK_MAKE_PROMISE_TEXTURE_DISABLE_LEGACY_API
|
|
59
|
-
/** Deprecated: Use
|
|
60
|
+
/** Deprecated: Use SkImages::PromiseTextureFrom instead. */
|
|
60
61
|
sk_sp<SkImage> makePromiseTexture(const GrBackendFormat& backendFormat,
|
|
61
62
|
int width,
|
|
62
63
|
int height,
|
|
@@ -69,14 +70,14 @@ public:
|
|
|
69
70
|
PromiseImageTextureReleaseProc textureReleaseProc,
|
|
70
71
|
PromiseImageTextureContext textureContext);
|
|
71
72
|
|
|
72
|
-
/** Deprecated: Use
|
|
73
|
+
/** Deprecated: Use SkImages::PromiseTextureFromYUVA instead. */
|
|
73
74
|
sk_sp<SkImage> makeYUVAPromiseTexture(const GrYUVABackendTextureInfo& yuvaBackendTextureInfo,
|
|
74
75
|
sk_sp<SkColorSpace> imageColorSpace,
|
|
75
76
|
PromiseImageTextureFulfillProc textureFulfillProc,
|
|
76
77
|
PromiseImageTextureReleaseProc textureReleaseProc,
|
|
77
78
|
PromiseImageTextureContext textureContexts[]);
|
|
78
79
|
#endif // SK_MAKE_PROMISE_TEXTURE_DISABLE_LEGACY_API
|
|
79
|
-
#endif //
|
|
80
|
+
#endif // defined(SK_GANESH)
|
|
80
81
|
|
|
81
82
|
private:
|
|
82
83
|
SkDeferredDisplayListRecorder(const SkDeferredDisplayListRecorder&) = delete;
|
|
@@ -86,7 +87,7 @@ private:
|
|
|
86
87
|
|
|
87
88
|
const SkSurfaceCharacterization fCharacterization;
|
|
88
89
|
|
|
89
|
-
#if
|
|
90
|
+
#if defined(SK_GANESH)
|
|
90
91
|
sk_sp<GrRecordingContext> fContext;
|
|
91
92
|
sk_sp<GrRenderTargetProxy> fTargetProxy;
|
|
92
93
|
sk_sp<SkDeferredDisplayList::LazyProxyData> fLazyProxyData;
|
|
@@ -9,14 +9,22 @@
|
|
|
9
9
|
#define SkDrawable_DEFINED
|
|
10
10
|
|
|
11
11
|
#include "include/core/SkFlattenable.h"
|
|
12
|
-
#include "include/core/
|
|
12
|
+
#include "include/core/SkRefCnt.h"
|
|
13
13
|
#include "include/core/SkScalar.h"
|
|
14
|
+
#include "include/private/base/SkAPI.h"
|
|
15
|
+
|
|
16
|
+
#include <cstddef>
|
|
17
|
+
#include <cstdint>
|
|
18
|
+
#include <memory>
|
|
14
19
|
|
|
15
20
|
class GrBackendDrawableInfo;
|
|
16
21
|
class SkCanvas;
|
|
17
22
|
class SkMatrix;
|
|
18
23
|
class SkPicture;
|
|
19
|
-
enum class GrBackendApi : unsigned;
|
|
24
|
+
enum class GrBackendApi : unsigned int;
|
|
25
|
+
struct SkDeserialProcs;
|
|
26
|
+
struct SkIRect;
|
|
27
|
+
struct SkImageInfo;
|
|
20
28
|
struct SkRect;
|
|
21
29
|
|
|
22
30
|
/**
|
|
@@ -1,36 +1,9 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright
|
|
2
|
+
* Copyright 2023 Google LLC
|
|
3
3
|
*
|
|
4
4
|
* Use of this source code is governed by a BSD-style license that can be
|
|
5
5
|
* found in the LICENSE file.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
#
|
|
10
|
-
|
|
11
|
-
#include <stdint.h>
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Enum describing format of encoded data.
|
|
15
|
-
*/
|
|
16
|
-
enum class SkEncodedImageFormat {
|
|
17
|
-
#ifdef SK_BUILD_FOR_GOOGLE3
|
|
18
|
-
kUnknown,
|
|
19
|
-
#endif
|
|
20
|
-
kBMP,
|
|
21
|
-
kGIF,
|
|
22
|
-
kICO,
|
|
23
|
-
kJPEG,
|
|
24
|
-
kPNG,
|
|
25
|
-
kWBMP,
|
|
26
|
-
kWEBP,
|
|
27
|
-
kPKM,
|
|
28
|
-
kKTX,
|
|
29
|
-
kASTC,
|
|
30
|
-
kDNG,
|
|
31
|
-
kHEIF,
|
|
32
|
-
kAVIF,
|
|
33
|
-
kJPEGXL,
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
#endif // SkEncodedImageFormat_DEFINED
|
|
8
|
+
// TODO(kjlubick) remove this shim after clients have been moved to the new location
|
|
9
|
+
#include "include/codec/SkEncodedImageFormat.h" // IWYU pragma: export
|
|
@@ -9,13 +9,15 @@
|
|
|
9
9
|
#define SkFlattenable_DEFINED
|
|
10
10
|
|
|
11
11
|
#include "include/core/SkRefCnt.h"
|
|
12
|
+
#include "include/core/SkTypes.h"
|
|
13
|
+
|
|
14
|
+
#include <cstddef>
|
|
12
15
|
|
|
13
16
|
class SkData;
|
|
14
17
|
class SkReadBuffer;
|
|
15
18
|
class SkWriteBuffer;
|
|
16
|
-
|
|
17
|
-
struct SkSerialProcs;
|
|
18
19
|
struct SkDeserialProcs;
|
|
20
|
+
struct SkSerialProcs;
|
|
19
21
|
|
|
20
22
|
/** \class SkFlattenable
|
|
21
23
|
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
#include "include/core/SkRefCnt.h"
|
|
14
14
|
#include "include/core/SkTypes.h"
|
|
15
15
|
|
|
16
|
+
#include <memory>
|
|
17
|
+
|
|
16
18
|
class SkData;
|
|
17
19
|
class SkFontData;
|
|
18
20
|
class SkStreamAsset;
|
|
@@ -23,23 +25,20 @@ class SK_API SkFontStyleSet : public SkRefCnt {
|
|
|
23
25
|
public:
|
|
24
26
|
virtual int count() = 0;
|
|
25
27
|
virtual void getStyle(int index, SkFontStyle*, SkString* style) = 0;
|
|
26
|
-
virtual SkTypeface
|
|
27
|
-
virtual SkTypeface
|
|
28
|
+
virtual sk_sp<SkTypeface> createTypeface(int index) = 0;
|
|
29
|
+
virtual sk_sp<SkTypeface> matchStyle(const SkFontStyle& pattern) = 0;
|
|
28
30
|
|
|
29
|
-
static SkFontStyleSet
|
|
31
|
+
static sk_sp<SkFontStyleSet> CreateEmpty();
|
|
30
32
|
|
|
31
33
|
protected:
|
|
32
|
-
SkTypeface
|
|
33
|
-
|
|
34
|
-
private:
|
|
35
|
-
using INHERITED = SkRefCnt;
|
|
34
|
+
sk_sp<SkTypeface> matchStyleCSS3(const SkFontStyle& pattern);
|
|
36
35
|
};
|
|
37
36
|
|
|
38
37
|
class SK_API SkFontMgr : public SkRefCnt {
|
|
39
38
|
public:
|
|
40
39
|
int countFamilies() const;
|
|
41
40
|
void getFamilyName(int index, SkString* familyName) const;
|
|
42
|
-
SkFontStyleSet
|
|
41
|
+
sk_sp<SkFontStyleSet> createStyleSet(int index) const;
|
|
43
42
|
|
|
44
43
|
/**
|
|
45
44
|
* The caller must call unref() on the returned object.
|
|
@@ -52,7 +51,7 @@ public:
|
|
|
52
51
|
* It is possible that this will return a style set not accessible from
|
|
53
52
|
* createStyleSet(int) due to hidden or auto-activated fonts.
|
|
54
53
|
*/
|
|
55
|
-
SkFontStyleSet
|
|
54
|
+
sk_sp<SkFontStyleSet> matchFamily(const char familyName[]) const;
|
|
56
55
|
|
|
57
56
|
/**
|
|
58
57
|
* Find the closest matching typeface to the specified familyName and style
|
|
@@ -66,7 +65,7 @@ public:
|
|
|
66
65
|
* createStyleSet(int) or matchFamily(const char[]) due to hidden or
|
|
67
66
|
* auto-activated fonts.
|
|
68
67
|
*/
|
|
69
|
-
SkTypeface
|
|
68
|
+
sk_sp<SkTypeface> matchFamilyStyle(const char familyName[], const SkFontStyle&) const;
|
|
70
69
|
|
|
71
70
|
/**
|
|
72
71
|
* Use the system fallback to find a typeface for the given character.
|
|
@@ -83,9 +82,9 @@ public:
|
|
|
83
82
|
* most significant. If no specified bcp47 codes match, any font with the
|
|
84
83
|
* requested character will be matched.
|
|
85
84
|
*/
|
|
86
|
-
SkTypeface
|
|
87
|
-
|
|
88
|
-
|
|
85
|
+
sk_sp<SkTypeface> matchFamilyStyleCharacter(const char familyName[], const SkFontStyle&,
|
|
86
|
+
const char* bcp47[], int bcp47Count,
|
|
87
|
+
SkUnichar character) const;
|
|
89
88
|
|
|
90
89
|
/**
|
|
91
90
|
* Create a typeface for the specified data and TTC index (pass 0 for none)
|
|
@@ -123,16 +122,17 @@ public:
|
|
|
123
122
|
protected:
|
|
124
123
|
virtual int onCountFamilies() const = 0;
|
|
125
124
|
virtual void onGetFamilyName(int index, SkString* familyName) const = 0;
|
|
126
|
-
virtual SkFontStyleSet
|
|
125
|
+
virtual sk_sp<SkFontStyleSet> onCreateStyleSet(int index)const = 0;
|
|
127
126
|
|
|
128
127
|
/** May return NULL if the name is not found. */
|
|
129
|
-
virtual SkFontStyleSet
|
|
128
|
+
virtual sk_sp<SkFontStyleSet> onMatchFamily(const char familyName[]) const = 0;
|
|
130
129
|
|
|
131
|
-
virtual SkTypeface
|
|
132
|
-
|
|
133
|
-
virtual SkTypeface
|
|
134
|
-
|
|
135
|
-
|
|
130
|
+
virtual sk_sp<SkTypeface> onMatchFamilyStyle(const char familyName[],
|
|
131
|
+
const SkFontStyle&) const = 0;
|
|
132
|
+
virtual sk_sp<SkTypeface> onMatchFamilyStyleCharacter(const char familyName[],
|
|
133
|
+
const SkFontStyle&,
|
|
134
|
+
const char* bcp47[], int bcp47Count,
|
|
135
|
+
SkUnichar character) const = 0;
|
|
136
136
|
|
|
137
137
|
virtual sk_sp<SkTypeface> onMakeFromData(sk_sp<SkData>, int ttcIndex) const = 0;
|
|
138
138
|
virtual sk_sp<SkTypeface> onMakeFromStreamIndex(std::unique_ptr<SkStreamAsset>,
|
|
@@ -143,18 +143,9 @@ protected:
|
|
|
143
143
|
|
|
144
144
|
virtual sk_sp<SkTypeface> onLegacyMakeTypeface(const char familyName[], SkFontStyle) const = 0;
|
|
145
145
|
|
|
146
|
-
// this method is never called -- will be removed
|
|
147
|
-
virtual SkTypeface* onMatchFaceStyle(const SkTypeface*,
|
|
148
|
-
const SkFontStyle&) const {
|
|
149
|
-
return nullptr;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
146
|
private:
|
|
153
|
-
|
|
154
147
|
/** Implemented by porting layer to return the default factory. */
|
|
155
148
|
static sk_sp<SkFontMgr> Factory();
|
|
156
|
-
|
|
157
|
-
using INHERITED = SkRefCnt;
|
|
158
149
|
};
|
|
159
150
|
|
|
160
151
|
#endif
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
#define SkFontStyle_DEFINED
|
|
10
10
|
|
|
11
11
|
#include "include/core/SkTypes.h"
|
|
12
|
-
#include "include/private/SkTPin.h"
|
|
12
|
+
#include "include/private/base/SkTPin.h"
|
|
13
|
+
|
|
14
|
+
#include <cstdint>
|
|
13
15
|
|
|
14
16
|
class SK_API SkFontStyle {
|
|
15
17
|
public:
|
|
@@ -75,6 +77,7 @@ public:
|
|
|
75
77
|
}
|
|
76
78
|
|
|
77
79
|
private:
|
|
80
|
+
friend class SkTypefaceProxyPrototype; // To serialize fValue
|
|
78
81
|
int32_t fValue;
|
|
79
82
|
};
|
|
80
83
|
|
|
@@ -10,9 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
#include "include/core/SkRefCnt.h"
|
|
12
12
|
|
|
13
|
+
#include <memory>
|
|
14
|
+
|
|
13
15
|
class SkData;
|
|
14
16
|
class SkImageGenerator;
|
|
15
17
|
class SkOpenTypeSVGDecoder;
|
|
18
|
+
class SkPath;
|
|
16
19
|
class SkTraceMemoryDump;
|
|
17
20
|
|
|
18
21
|
class SK_API SkGraphics {
|
|
@@ -115,16 +118,6 @@ public:
|
|
|
115
118
|
*/
|
|
116
119
|
static void PurgeAllCaches();
|
|
117
120
|
|
|
118
|
-
/**
|
|
119
|
-
* Applications with command line options may pass optional state, such
|
|
120
|
-
* as cache sizes, here, for instance:
|
|
121
|
-
* font-cache-limit=12345678
|
|
122
|
-
*
|
|
123
|
-
* The flags format is name=value[;name=value...] with no spaces.
|
|
124
|
-
* This format is subject to change.
|
|
125
|
-
*/
|
|
126
|
-
static void SetFlags(const char* flags);
|
|
127
|
-
|
|
128
121
|
typedef std::unique_ptr<SkImageGenerator>
|
|
129
122
|
(*ImageGeneratorFromEncodedDataFactory)(sk_sp<SkData>);
|
|
130
123
|
|
|
@@ -151,18 +144,28 @@ public:
|
|
|
151
144
|
static OpenTypeSVGDecoderFactory GetOpenTypeSVGDecoderFactory();
|
|
152
145
|
|
|
153
146
|
/**
|
|
154
|
-
*
|
|
155
|
-
* variable COLRv1 is enabled. Needed for initializing FreeType with a property setting so that
|
|
156
|
-
* variable COLRv1 can be enabled in Chrome Canaries during development.
|
|
147
|
+
* Call early in main() to allow Skia to use a JIT to accelerate CPU-bound operations.
|
|
157
148
|
*/
|
|
158
|
-
|
|
159
|
-
static VariableColrV1EnabledFunc SetVariableColrV1EnabledFunc(VariableColrV1EnabledFunc);
|
|
160
|
-
static bool GetVariableColrV1Enabled();
|
|
149
|
+
static void AllowJIT();
|
|
161
150
|
|
|
162
151
|
/**
|
|
163
|
-
*
|
|
152
|
+
* To override the default AA algorithm choice in the CPU backend, provide a function that
|
|
153
|
+
* returns whether to use analytic (true) or supersampled (false) for a given path.
|
|
154
|
+
*
|
|
155
|
+
* NOTE: This is a temporary API, intended for migration of all clients to one algorithm,
|
|
156
|
+
* and should not be used.
|
|
164
157
|
*/
|
|
165
|
-
|
|
158
|
+
typedef bool (*PathAnalyticAADeciderProc)(const SkPath&);
|
|
159
|
+
static void SetPathAnalyticAADecider(PathAnalyticAADeciderProc);
|
|
160
|
+
|
|
161
|
+
/*
|
|
162
|
+
* Similar to above, but simply forces the CPU backend to always use analytic AA.
|
|
163
|
+
*
|
|
164
|
+
* NOTE: This is a temporary API, intended for migration of all clients to one algorithm.
|
|
165
|
+
* If the PathAnalyticAADeciderProc is *also* set, this setting has no effect.
|
|
166
|
+
* Unlike that API, this function is thread-safe.
|
|
167
|
+
*/
|
|
168
|
+
static void SetForceAnalyticAA(bool);
|
|
166
169
|
};
|
|
167
170
|
|
|
168
171
|
class SkAutoGraphics {
|
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright
|
|
2
|
+
* Copyright 2023 Google LLC
|
|
3
3
|
*
|
|
4
4
|
* Use of this source code is governed by a BSD-style license that can be
|
|
5
5
|
* found in the LICENSE file.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
#
|
|
10
|
-
|
|
11
|
-
#include "include/core/SkData.h"
|
|
12
|
-
|
|
13
|
-
struct skcms_Matrix3x3;
|
|
14
|
-
struct skcms_TransferFunction;
|
|
15
|
-
|
|
16
|
-
SK_API sk_sp<SkData> SkWriteICCProfile(const skcms_TransferFunction&,
|
|
17
|
-
const skcms_Matrix3x3& toXYZD50);
|
|
18
|
-
|
|
19
|
-
#endif//SkICC_DEFINED
|
|
8
|
+
// TODO(kjlubick) remove this shim after clients have been moved to the new location
|
|
9
|
+
#include "include/encode/SkICC.h" // IWYU pragma: export
|