@shopify/react-native-skia 1.3.13 → 1.4.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 +9 -4
- package/android/cpp/rnskia-android/RNSkAndroidPlatformContext.h +6 -0
- package/android/cpp/rnskia-android/SkiaOpenGLSurfaceFactory.cpp +81 -0
- package/android/cpp/rnskia-android/SkiaOpenGLSurfaceFactory.h +40 -0
- package/cpp/api/JsiSkApi.h +2 -0
- package/cpp/api/JsiSkPath.h +29 -19
- package/cpp/api/JsiSkRuntimeEffect.h +7 -0
- package/cpp/api/JsiSkiaContext.h +79 -0
- package/cpp/rnskia/RNSkPlatformContext.h +4 -0
- package/cpp/rnskia/SkiaContext.h +22 -0
- package/cpp/skia/include/android/GrAHardwareBufferUtils.h +2 -2
- package/cpp/skia/include/android/SkImageAndroid.h +1 -1
- package/cpp/skia/include/android/SkSurfaceAndroid.h +1 -1
- package/cpp/skia/include/codec/SkAndroidCodec.h +13 -9
- package/cpp/skia/include/codec/SkCodec.h +28 -5
- package/cpp/skia/include/core/SkArc.h +69 -0
- package/cpp/skia/include/core/SkBitmap.h +10 -0
- package/cpp/skia/include/core/SkBlender.h +2 -3
- package/cpp/skia/include/core/SkCanvas.h +86 -16
- package/cpp/skia/include/core/SkCapabilities.h +0 -4
- package/cpp/skia/include/core/SkColorFilter.h +4 -4
- package/cpp/skia/include/core/SkColorPriv.h +5 -7
- package/cpp/skia/include/core/SkColorType.h +2 -0
- package/cpp/skia/include/core/SkFlattenable.h +1 -1
- package/cpp/skia/include/core/SkFontArguments.h +3 -1
- package/cpp/skia/include/core/SkFontParameters.h +3 -2
- package/cpp/skia/include/core/SkFourByteTag.h +19 -0
- package/cpp/skia/include/core/SkImage.h +41 -1
- package/cpp/skia/include/core/SkImageGenerator.h +0 -5
- package/cpp/skia/include/core/SkImageInfo.h +20 -0
- package/cpp/skia/include/core/SkM44.h +1 -1
- package/cpp/skia/include/core/SkMatrix.h +2 -1
- package/cpp/skia/include/core/SkMilestone.h +1 -1
- package/cpp/skia/include/core/SkPaint.h +1 -1
- package/cpp/skia/include/core/SkPath.h +20 -6
- package/cpp/skia/include/core/SkPathMeasure.h +1 -0
- package/cpp/skia/include/core/SkPicture.h +5 -5
- package/cpp/skia/include/core/SkPoint3.h +2 -12
- package/cpp/skia/include/core/SkRRect.h +5 -0
- package/cpp/skia/include/core/SkRect.h +5 -16
- package/cpp/skia/include/core/SkRefCnt.h +2 -0
- package/cpp/skia/include/core/SkScalar.h +20 -32
- package/cpp/skia/include/core/SkShader.h +17 -0
- package/cpp/skia/include/core/SkSize.h +2 -1
- package/cpp/skia/include/core/SkStream.h +2 -3
- package/cpp/skia/include/core/SkStrokeRec.h +6 -1
- package/cpp/skia/include/core/SkSurface.h +13 -4
- package/cpp/skia/include/core/SkSurfaceProps.h +5 -0
- package/cpp/skia/include/core/SkSwizzle.h +3 -1
- package/cpp/skia/include/core/SkTypeface.h +1 -0
- package/cpp/skia/include/core/SkTypes.h +1 -19
- package/cpp/skia/include/core/SkUnPreMultiply.h +4 -5
- package/cpp/skia/include/core/SkVertices.h +4 -2
- package/cpp/skia/include/docs/SkPDFDocument.h +11 -14
- package/cpp/skia/include/effects/SkHighContrastFilter.h +6 -6
- package/cpp/skia/include/effects/SkImageFilters.h +49 -23
- package/cpp/skia/include/effects/SkRuntimeEffect.h +51 -70
- package/cpp/skia/include/effects/SkShaderMaskFilter.h +2 -0
- package/cpp/skia/include/effects/SkTableMaskFilter.h +2 -0
- package/cpp/skia/include/gpu/GrBackendSemaphore.h +2 -120
- package/cpp/skia/include/gpu/GrBackendSurface.h +2 -466
- package/cpp/skia/include/gpu/GrContextOptions.h +2 -368
- package/cpp/skia/include/gpu/GrContextThreadSafeProxy.h +2 -179
- package/cpp/skia/include/gpu/GrDirectContext.h +2 -1011
- package/cpp/skia/include/gpu/GrDriverBugWorkarounds.h +2 -47
- package/cpp/skia/include/gpu/GrDriverBugWorkaroundsAutogen.h +2 -41
- package/cpp/skia/include/gpu/GrRecordingContext.h +2 -279
- package/cpp/skia/include/gpu/GrTypes.h +2 -238
- package/cpp/skia/include/gpu/GrYUVABackendTextures.h +2 -118
- package/cpp/skia/include/gpu/d3d/GrD3DBackendContext.h +2 -29
- package/cpp/skia/include/gpu/d3d/GrD3DTypes.h +2 -242
- package/cpp/skia/include/gpu/ganesh/GrBackendSemaphore.h +80 -0
- package/cpp/skia/include/gpu/ganesh/GrBackendSurface.h +412 -0
- package/cpp/skia/include/gpu/ganesh/GrContextOptions.h +386 -0
- package/cpp/skia/include/gpu/ganesh/GrContextThreadSafeProxy.h +175 -0
- package/cpp/skia/include/gpu/ganesh/GrDirectContext.h +993 -0
- package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h +53 -0
- package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkaroundsAutogen.h +45 -0
- package/cpp/skia/include/gpu/ganesh/GrExternalTextureGenerator.h +1 -1
- package/cpp/skia/include/gpu/ganesh/GrRecordingContext.h +285 -0
- package/cpp/skia/include/gpu/ganesh/GrTypes.h +177 -0
- package/cpp/skia/include/gpu/ganesh/GrYUVABackendTextures.h +130 -0
- package/cpp/skia/include/gpu/ganesh/SkImageGanesh.h +1 -1
- package/cpp/skia/include/gpu/ganesh/SkSurfaceGanesh.h +1 -1
- package/cpp/skia/include/gpu/ganesh/d3d/GrD3DBackendContext.h +35 -0
- package/cpp/skia/include/gpu/ganesh/d3d/GrD3DTypes.h +248 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLAssembleHelpers.h +17 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLAssembleInterface.h +45 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLBackendSurface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/GrGLConfig.h +69 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLExtensions.h +79 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLFunctions.h +306 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLInterface.h +338 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLMakeWebGLInterface.h +19 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLTypes.h +219 -0
- package/cpp/skia/include/gpu/{gl → ganesh/gl}/egl/GrGLMakeEGLInterface.h +2 -2
- package/cpp/skia/include/gpu/ganesh/gl/epoxy/GrGLMakeEpoxyEGLInterface.h +20 -0
- package/cpp/skia/include/gpu/ganesh/gl/ios/GrGLMakeIOSInterface.h +20 -0
- package/cpp/skia/include/gpu/ganesh/gl/mac/GrGLMakeMacInterface.h +20 -0
- package/cpp/skia/include/gpu/ganesh/gl/win/GrGLMakeWinInterface.h +20 -0
- package/cpp/skia/include/gpu/ganesh/mock/GrMockTypes.h +166 -0
- package/cpp/skia/include/gpu/{mtl → ganesh/mtl}/GrMtlBackendContext.h +2 -2
- package/cpp/skia/include/gpu/ganesh/mtl/GrMtlBackendSemaphore.h +23 -0
- package/cpp/skia/include/gpu/ganesh/mtl/GrMtlBackendSurface.h +44 -0
- package/cpp/skia/include/gpu/ganesh/mtl/GrMtlDirectContext.h +30 -0
- package/cpp/skia/include/gpu/{mtl → ganesh/mtl}/GrMtlTypes.h +1 -3
- package/cpp/skia/include/gpu/ganesh/mtl/SkSurfaceMetal.h +2 -2
- package/cpp/skia/include/gpu/ganesh/vk/GrBackendDrawableInfo.h +2 -2
- package/cpp/skia/include/gpu/ganesh/vk/GrVkBackendSemaphore.h +1 -1
- package/cpp/skia/include/gpu/ganesh/vk/GrVkBackendSurface.h +7 -3
- package/cpp/skia/include/gpu/ganesh/vk/GrVkDirectContext.h +6 -3
- package/cpp/skia/include/gpu/ganesh/vk/GrVkTypes.h +101 -0
- package/cpp/skia/include/gpu/gl/GrGLAssembleHelpers.h +2 -9
- package/cpp/skia/include/gpu/gl/GrGLAssembleInterface.h +2 -38
- package/cpp/skia/include/gpu/gl/GrGLConfig.h +2 -73
- package/cpp/skia/include/gpu/gl/GrGLExtensions.h +2 -72
- package/cpp/skia/include/gpu/gl/GrGLFunctions.h +2 -301
- package/cpp/skia/include/gpu/gl/GrGLInterface.h +2 -332
- package/cpp/skia/include/gpu/gl/GrGLTypes.h +2 -213
- package/cpp/skia/include/gpu/graphite/BackendSemaphore.h +20 -41
- package/cpp/skia/include/gpu/graphite/BackendTexture.h +18 -118
- package/cpp/skia/include/gpu/graphite/Context.h +122 -44
- package/cpp/skia/include/gpu/graphite/ContextOptions.h +30 -3
- package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +45 -17
- package/cpp/skia/include/gpu/graphite/Image.h +56 -54
- package/cpp/skia/include/gpu/graphite/Recorder.h +68 -14
- package/cpp/skia/include/gpu/graphite/Recording.h +3 -3
- package/cpp/skia/include/gpu/graphite/Surface.h +6 -2
- package/cpp/skia/include/gpu/graphite/TextureInfo.h +36 -117
- package/cpp/skia/include/gpu/graphite/dawn/DawnTypes.h +108 -6
- package/cpp/skia/include/gpu/graphite/mtl/MtlBackendContext.h +4 -1
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +41 -25
- package/cpp/skia/include/gpu/graphite/precompile/PaintOptions.h +197 -0
- package/cpp/skia/include/gpu/graphite/precompile/Precompile.h +48 -0
- package/cpp/skia/include/gpu/graphite/precompile/PrecompileBase.h +84 -0
- package/cpp/skia/include/gpu/graphite/precompile/PrecompileBlender.h +56 -0
- package/cpp/skia/include/gpu/graphite/precompile/PrecompileColorFilter.h +85 -0
- package/cpp/skia/include/gpu/graphite/precompile/PrecompileImageFilter.h +119 -0
- package/cpp/skia/include/gpu/graphite/precompile/PrecompileMaskFilter.h +51 -0
- package/cpp/skia/include/gpu/graphite/precompile/PrecompileRuntimeEffect.h +47 -0
- package/cpp/skia/include/gpu/graphite/precompile/PrecompileShader.h +170 -0
- package/cpp/skia/include/gpu/graphite/vk/VulkanGraphiteTypes.h +24 -2
- package/cpp/skia/include/gpu/mock/GrMockTypes.h +2 -157
- package/cpp/skia/include/gpu/mtl/MtlMemoryAllocator.h +2 -0
- package/cpp/skia/include/gpu/vk/GrVkTypes.h +2 -101
- package/cpp/skia/include/gpu/vk/VulkanBackendContext.h +13 -8
- package/cpp/skia/include/gpu/vk/VulkanExtensions.h +9 -3
- package/cpp/skia/include/gpu/vk/VulkanMemoryAllocator.h +4 -1
- package/cpp/skia/include/gpu/vk/VulkanTypes.h +25 -8
- package/cpp/skia/include/ports/SkFontMgr_Fontations.h +20 -0
- package/cpp/skia/include/ports/SkFontMgr_android.h +7 -0
- package/cpp/skia/include/ports/SkImageGeneratorCG.h +3 -1
- package/cpp/skia/include/ports/SkTypeface_win.h +0 -17
- package/cpp/skia/include/private/SkEncodedInfo.h +8 -2
- package/cpp/skia/include/private/SkExif.h +28 -75
- package/cpp/skia/include/private/SkGainmapInfo.h +47 -7
- package/cpp/skia/include/private/SkJpegMetadataDecoder.h +12 -0
- package/cpp/skia/include/private/SkPathRef.h +52 -44
- package/cpp/skia/include/private/SkXmp.h +13 -4
- package/cpp/skia/include/private/base/SkASAN.h +56 -0
- package/cpp/skia/include/private/base/SkAlign.h +5 -0
- package/cpp/skia/include/private/base/SkContainers.h +10 -2
- package/cpp/skia/include/private/base/SkFeatures.h +22 -1
- package/cpp/skia/include/private/base/SkFloatingPoint.h +51 -65
- package/cpp/skia/include/private/base/SkMacros.h +67 -0
- package/cpp/skia/include/private/base/SkMalloc.h +8 -0
- package/cpp/skia/include/private/base/SkPoint_impl.h +2 -11
- package/cpp/skia/include/private/base/SkTArray.h +108 -23
- package/cpp/skia/include/private/base/SkTFitsIn.h +1 -12
- package/cpp/skia/include/private/chromium/GrDeferredDisplayList.h +1 -1
- package/cpp/skia/include/private/chromium/GrDeferredDisplayListRecorder.h +0 -39
- package/cpp/skia/include/private/chromium/GrPromiseImageTexture.h +1 -1
- package/cpp/skia/include/private/chromium/GrSurfaceCharacterization.h +3 -3
- package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +1 -4
- package/cpp/skia/include/private/chromium/Slug.h +5 -11
- package/cpp/skia/include/private/gpu/ganesh/GrContext_Base.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrD3DTypesMinimal.h +2 -2
- package/cpp/skia/include/private/gpu/ganesh/GrTextureGenerator.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +21 -93
- package/cpp/skia/include/private/gpu/vk/SkiaVulkan.h +2 -2
- package/cpp/skia/include/utils/SkCustomTypeface.h +1 -0
- package/cpp/skia/include/utils/SkNWayCanvas.h +1 -1
- package/cpp/skia/include/utils/SkParse.h +0 -1
- package/cpp/skia/modules/skcms/src/Transform_inl.h +59 -56
- package/cpp/skia/modules/skcms/src/skcms_Transform.h +3 -0
- package/cpp/skia/modules/skcms/src/skcms_internals.h +2 -0
- package/cpp/skia/modules/skcms/src/skcms_public.h +46 -14
- package/cpp/skia/modules/skparagraph/include/ParagraphBuilder.h +15 -1
- package/cpp/skia/modules/skparagraph/include/TextStyle.h +2 -2
- package/cpp/skia/modules/skparagraph/include/TypefaceFontProvider.h +2 -4
- package/cpp/skia/modules/skresources/include/SkResources.h +1 -1
- package/cpp/skia/modules/skshaper/include/SkShaper.h +316 -0
- package/cpp/skia/modules/skshaper/include/SkShaper_coretext.h +19 -0
- package/cpp/skia/modules/skshaper/include/SkShaper_factory.h +41 -0
- package/cpp/skia/modules/skshaper/include/SkShaper_harfbuzz.h +39 -0
- package/cpp/skia/modules/skshaper/include/SkShaper_skunicode.h +28 -0
- package/cpp/skia/modules/skunicode/include/SkUnicode.h +6 -23
- package/cpp/skia/modules/svg/include/SkSVGAttribute.h +0 -3
- package/cpp/skia/modules/svg/include/SkSVGAttributeParser.h +12 -2
- package/cpp/skia/modules/svg/include/SkSVGCircle.h +13 -0
- package/cpp/skia/modules/svg/include/SkSVGClipPath.h +6 -0
- package/cpp/skia/modules/svg/include/SkSVGContainer.h +17 -1
- package/cpp/skia/modules/svg/include/SkSVGDOM.h +25 -15
- package/cpp/skia/modules/svg/include/SkSVGEllipse.h +13 -2
- package/cpp/skia/modules/svg/include/SkSVGFe.h +11 -2
- package/cpp/skia/modules/svg/include/SkSVGFeBlend.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGFeColorMatrix.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGFeComponentTransfer.h +82 -0
- package/cpp/skia/modules/svg/include/SkSVGFeComposite.h +10 -1
- package/cpp/skia/modules/svg/include/SkSVGFeDisplacementMap.h +10 -0
- package/cpp/skia/modules/svg/include/SkSVGFeFlood.h +10 -0
- package/cpp/skia/modules/svg/include/SkSVGFeGaussianBlur.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGFeImage.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +5 -0
- package/cpp/skia/modules/svg/include/SkSVGFeLighting.h +11 -0
- package/cpp/skia/modules/svg/include/SkSVGFeMerge.h +63 -0
- package/cpp/skia/modules/svg/include/SkSVGFeMorphology.h +8 -0
- package/cpp/skia/modules/svg/include/SkSVGFeOffset.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGFeTurbulence.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGFilter.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGFilterContext.h +3 -3
- package/cpp/skia/modules/svg/include/SkSVGGradient.h +10 -2
- package/cpp/skia/modules/svg/include/SkSVGImage.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGLine.h +11 -0
- package/cpp/skia/modules/svg/include/SkSVGLinearGradient.h +10 -0
- package/cpp/skia/modules/svg/include/SkSVGMask.h +6 -0
- package/cpp/skia/modules/svg/include/SkSVGNode.h +13 -2
- package/cpp/skia/modules/svg/include/SkSVGOpenTypeSVGDecoder.h +5 -0
- package/cpp/skia/modules/svg/include/SkSVGPath.h +10 -0
- package/cpp/skia/modules/svg/include/SkSVGPattern.h +5 -0
- package/cpp/skia/modules/svg/include/SkSVGPoly.h +11 -0
- package/cpp/skia/modules/svg/include/SkSVGRadialGradient.h +11 -0
- package/cpp/skia/modules/svg/include/SkSVGRect.h +11 -0
- package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +43 -7
- package/cpp/skia/modules/svg/include/SkSVGSVG.h +7 -0
- package/cpp/skia/modules/svg/include/SkSVGShape.h +8 -2
- package/cpp/skia/modules/svg/include/SkSVGStop.h +5 -3
- package/cpp/skia/modules/svg/include/SkSVGText.h +8 -2
- package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +8 -0
- package/cpp/skia/modules/svg/include/SkSVGTypes.h +9 -0
- package/cpp/skia/modules/svg/include/SkSVGUse.h +7 -0
- package/cpp/skia/src/base/SkMathPriv.h +337 -0
- package/cpp/skia/src/base/SkTLazy.h +208 -0
- package/cpp/skia/src/core/SkTHash.h +58 -7
- package/cpp/skia/src/gpu/ganesh/gl/GrGLDefines.h +3 -0
- package/ios/RNSkia-iOS/RNSkiOSPlatformContext.h +3 -0
- package/ios/RNSkia-iOS/RNSkiOSPlatformContext.mm +7 -0
- package/ios/RNSkia-iOS/SkiaCVPixelBufferUtils.mm +7 -2
- package/ios/RNSkia-iOS/SkiaMetalSurfaceFactory.h +78 -0
- package/ios/RNSkia-iOS/SkiaMetalSurfaceFactory.mm +20 -4
- package/lib/commonjs/renderer/HostConfig.js.map +1 -1
- package/lib/commonjs/skia/types/Paragraph/TextStyle.d.ts +2 -2
- package/lib/commonjs/skia/types/Paragraph/TextStyle.js.map +1 -1
- package/lib/commonjs/skia/types/Skia.d.ts +6 -1
- package/lib/commonjs/skia/types/Skia.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkia.js +4 -1
- package/lib/commonjs/skia/web/JsiSkia.js.map +1 -1
- package/lib/commonjs/web/WithSkiaWeb.d.ts +11 -4
- package/lib/commonjs/web/WithSkiaWeb.js +3 -2
- package/lib/commonjs/web/WithSkiaWeb.js.map +1 -1
- package/lib/module/renderer/HostConfig.js.map +1 -1
- package/lib/module/skia/types/Paragraph/TextStyle.d.ts +2 -2
- package/lib/module/skia/types/Paragraph/TextStyle.js.map +1 -1
- package/lib/module/skia/types/Skia.d.ts +6 -1
- package/lib/module/skia/types/Skia.js.map +1 -1
- package/lib/module/skia/web/JsiSkia.js +4 -1
- package/lib/module/skia/web/JsiSkia.js.map +1 -1
- package/lib/module/web/WithSkiaWeb.d.ts +11 -4
- package/lib/module/web/WithSkiaWeb.js +3 -2
- package/lib/module/web/WithSkiaWeb.js.map +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkia.d.ts +1 -0
- package/lib/typescript/lib/commonjs/web/WithSkiaWeb.d.ts +2 -1
- package/lib/typescript/lib/module/skia/Skia.web.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkia.d.ts +1 -0
- package/lib/typescript/lib/module/web/WithSkiaWeb.d.ts +2 -1
- package/lib/typescript/src/skia/types/Paragraph/TextStyle.d.ts +2 -2
- package/lib/typescript/src/skia/types/Skia.d.ts +6 -1
- package/lib/typescript/src/web/WithSkiaWeb.d.ts +11 -4
- 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_core.a +0 -0
- package/libs/android/arm64-v8a/libskunicode_icu.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_core.a +0 -0
- package/libs/android/armeabi-v7a/libskunicode_icu.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_core.a +0 -0
- package/libs/android/x86/libskunicode_icu.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_core.a +0 -0
- package/libs/android/x86_64/libskunicode_icu.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/Info.plist +5 -5
- 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/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/libsvg.xcframework/Info.plist +5 -5
- 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 +3 -5
- package/react-native-skia.podspec +2 -1
- package/src/renderer/HostConfig.ts +5 -1
- package/src/renderer/__tests__/e2e/ImageFilters.spec.tsx +5 -2
- package/src/renderer/__tests__/e2e/Paths.spec.tsx +12 -5
- package/src/renderer/__tests__/e2e/SDF.spec.tsx +1 -1
- package/src/renderer/__tests__/e2e/Snapshot.spec.tsx +1 -1
- package/src/skia/types/Paragraph/TextStyle.ts +2 -2
- package/src/skia/types/Skia.ts +7 -1
- package/src/skia/web/JsiSkia.ts +3 -0
- package/src/web/WithSkiaWeb.tsx +17 -6
- package/cpp/skia/include/core/SkDrawLooper.h +0 -135
- package/cpp/skia/include/effects/SkBlurDrawLooper.h +0 -26
- package/cpp/skia/include/effects/SkLayerDrawLooper.h +0 -161
- package/cpp/skia/include/gpu/gl/GrGLConfig_chrome.h +0 -14
- package/cpp/skia/include/gpu/vk/GrVkBackendContext.h +0 -84
- package/cpp/skia/include/gpu/vk/GrVkExtensions.h +0 -15
- package/cpp/skia/include/gpu/vk/GrVkMemoryAllocator.h +0 -15
- package/cpp/skia/include/ports/SkFontMgr_indirect.h +0 -102
- package/cpp/skia/include/ports/SkRemotableFontMgr.h +0 -139
- package/cpp/skia/include/private/base/SkFloatBits.h +0 -90
- package/cpp/skia/include/private/gpu/graphite/ContextOptionsPriv.h +0 -69
- package/cpp/skia/include/private/gpu/graphite/DawnTypesPriv.h +0 -54
- package/cpp/skia/include/private/gpu/graphite/MtlGraphiteTypesPriv.h +0 -95
- package/cpp/skia/include/private/gpu/graphite/VulkanGraphiteTypesPriv.h +0 -83
- package/cpp/skia/src/core/SkPathEnums.h +0 -25
- package/cpp/skia/src/core/SkPathPriv.h +0 -540
- package/libs/android/arm64-v8a/libskunicode.a +0 -0
- package/libs/android/armeabi-v7a/libskunicode.a +0 -0
- package/libs/android/x86/libskunicode.a +0 -0
- package/libs/android/x86_64/libskunicode.a +0 -0
- package/libs/ios/libskunicode.xcframework/Info.plist +0 -46
- 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/cpp/skia/include/gpu/{gl → ganesh/gl}/glx/GrGLMakeGLXInterface.h +0 -0
|
@@ -4,469 +4,5 @@
|
|
|
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
|
-
|
|
8
|
-
#
|
|
9
|
-
#define GrBackendSurface_DEFINED
|
|
10
|
-
|
|
11
|
-
#include "include/core/SkRefCnt.h"
|
|
12
|
-
#include "include/core/SkSize.h"
|
|
13
|
-
#include "include/gpu/GpuTypes.h"
|
|
14
|
-
#include "include/gpu/GrTypes.h"
|
|
15
|
-
#include "include/private/base/SkAPI.h"
|
|
16
|
-
#include "include/private/base/SkAnySubclass.h"
|
|
17
|
-
#include "include/private/gpu/ganesh/GrTypesPriv.h"
|
|
18
|
-
|
|
19
|
-
#include "include/gpu/mock/GrMockTypes.h"
|
|
20
|
-
|
|
21
|
-
enum class SkTextureCompressionType;
|
|
22
|
-
class GrBackendFormatData;
|
|
23
|
-
class GrBackendTextureData;
|
|
24
|
-
class GrBackendRenderTargetData;
|
|
25
|
-
|
|
26
|
-
namespace skgpu {
|
|
27
|
-
class MutableTextureState;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
#ifdef SK_METAL
|
|
31
|
-
#include "include/gpu/mtl/GrMtlTypes.h"
|
|
32
|
-
#endif
|
|
33
|
-
|
|
34
|
-
#ifdef SK_DIRECT3D
|
|
35
|
-
#include "include/private/gpu/ganesh/GrD3DTypesMinimal.h"
|
|
36
|
-
class GrD3DResourceState;
|
|
37
|
-
#endif
|
|
38
|
-
|
|
39
|
-
#if defined(SK_DEBUG) || defined(GR_TEST_UTILS)
|
|
40
|
-
class SkString;
|
|
41
|
-
#endif
|
|
42
|
-
|
|
43
|
-
#include <cstddef>
|
|
44
|
-
#include <cstdint>
|
|
45
|
-
#include <string>
|
|
46
|
-
#include <string_view>
|
|
47
|
-
|
|
48
|
-
class SK_API GrBackendFormat {
|
|
49
|
-
public:
|
|
50
|
-
// Creates an invalid backend format.
|
|
51
|
-
GrBackendFormat();
|
|
52
|
-
GrBackendFormat(const GrBackendFormat&);
|
|
53
|
-
GrBackendFormat& operator=(const GrBackendFormat&);
|
|
54
|
-
~GrBackendFormat();
|
|
55
|
-
|
|
56
|
-
#ifdef SK_METAL
|
|
57
|
-
static GrBackendFormat MakeMtl(GrMTLPixelFormat format) {
|
|
58
|
-
return GrBackendFormat(format);
|
|
59
|
-
}
|
|
60
|
-
#endif
|
|
61
|
-
|
|
62
|
-
#ifdef SK_DIRECT3D
|
|
63
|
-
static GrBackendFormat MakeDxgi(DXGI_FORMAT format) {
|
|
64
|
-
return GrBackendFormat(format);
|
|
65
|
-
}
|
|
66
|
-
#endif
|
|
67
|
-
|
|
68
|
-
static GrBackendFormat MakeMock(GrColorType colorType,
|
|
69
|
-
SkTextureCompressionType compression,
|
|
70
|
-
bool isStencilFormat = false);
|
|
71
|
-
|
|
72
|
-
bool operator==(const GrBackendFormat& that) const;
|
|
73
|
-
bool operator!=(const GrBackendFormat& that) const { return !(*this == that); }
|
|
74
|
-
|
|
75
|
-
GrBackendApi backend() const { return fBackend; }
|
|
76
|
-
GrTextureType textureType() const { return fTextureType; }
|
|
77
|
-
|
|
78
|
-
/**
|
|
79
|
-
* Gets the channels present in the format as a bitfield of SkColorChannelFlag values.
|
|
80
|
-
* Luminance channels are reported as kGray_SkColorChannelFlag.
|
|
81
|
-
*/
|
|
82
|
-
uint32_t channelMask() const;
|
|
83
|
-
|
|
84
|
-
GrColorFormatDesc desc() const;
|
|
85
|
-
|
|
86
|
-
#ifdef SK_METAL
|
|
87
|
-
/**
|
|
88
|
-
* If the backend API is Metal this gets the format as a GrMtlPixelFormat. Otherwise,
|
|
89
|
-
* Otherwise, returns MTLPixelFormatInvalid.
|
|
90
|
-
*/
|
|
91
|
-
GrMTLPixelFormat asMtlFormat() const;
|
|
92
|
-
#endif
|
|
93
|
-
|
|
94
|
-
#ifdef SK_DIRECT3D
|
|
95
|
-
/**
|
|
96
|
-
* If the backend API is Direct3D this gets the format as a DXGI_FORMAT and returns true.
|
|
97
|
-
* Otherwise, returns false.
|
|
98
|
-
*/
|
|
99
|
-
bool asDxgiFormat(DXGI_FORMAT*) const;
|
|
100
|
-
#endif
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* If the backend API is not Mock these three calls will return kUnknown, kNone or false,
|
|
104
|
-
* respectively. Otherwise, only one of the following can be true. The GrColorType is not
|
|
105
|
-
* kUnknown, the compression type is not kNone, or this is a mock stencil format.
|
|
106
|
-
*/
|
|
107
|
-
GrColorType asMockColorType() const;
|
|
108
|
-
SkTextureCompressionType asMockCompressionType() const;
|
|
109
|
-
bool isMockStencilFormat() const;
|
|
110
|
-
|
|
111
|
-
// If possible, copies the GrBackendFormat and forces the texture type to be Texture2D. If the
|
|
112
|
-
// GrBackendFormat was for Vulkan and it originally had a GrVkYcbcrConversionInfo, we will
|
|
113
|
-
// remove the conversion and set the format to be VK_FORMAT_R8G8B8A8_UNORM.
|
|
114
|
-
GrBackendFormat makeTexture2D() const;
|
|
115
|
-
|
|
116
|
-
// Returns true if the backend format has been initialized.
|
|
117
|
-
bool isValid() const { return fValid; }
|
|
118
|
-
|
|
119
|
-
#if defined(SK_DEBUG) || defined(GR_TEST_UTILS)
|
|
120
|
-
SkString toStr() const;
|
|
121
|
-
#endif
|
|
122
|
-
|
|
123
|
-
private:
|
|
124
|
-
// Size determined by looking at the GrBackendFormatData subclasses, then guessing-and-checking.
|
|
125
|
-
// Compiler will complain if this is too small - in that case, just increase the number.
|
|
126
|
-
inline constexpr static size_t kMaxSubclassSize = 64;
|
|
127
|
-
using AnyFormatData = SkAnySubclass<GrBackendFormatData, kMaxSubclassSize>;
|
|
128
|
-
|
|
129
|
-
friend class GrBackendSurfacePriv;
|
|
130
|
-
friend class GrBackendFormatData;
|
|
131
|
-
|
|
132
|
-
// Used by internal factories. Should not be used externally. Use factories like
|
|
133
|
-
// GrBackendFormats::MakeGL instead.
|
|
134
|
-
template <typename FormatData>
|
|
135
|
-
GrBackendFormat(GrTextureType textureType, GrBackendApi api, const FormatData& formatData)
|
|
136
|
-
: fBackend(api), fValid(true), fTextureType(textureType) {
|
|
137
|
-
fFormatData.emplace<FormatData>(formatData);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
#ifdef SK_METAL
|
|
141
|
-
GrBackendFormat(const GrMTLPixelFormat mtlFormat);
|
|
142
|
-
#endif
|
|
143
|
-
|
|
144
|
-
#ifdef SK_DIRECT3D
|
|
145
|
-
GrBackendFormat(DXGI_FORMAT dxgiFormat);
|
|
146
|
-
#endif
|
|
147
|
-
|
|
148
|
-
GrBackendFormat(GrColorType, SkTextureCompressionType, bool isStencilFormat);
|
|
149
|
-
|
|
150
|
-
#ifdef SK_DEBUG
|
|
151
|
-
bool validateMock() const;
|
|
152
|
-
#endif
|
|
153
|
-
|
|
154
|
-
GrBackendApi fBackend = GrBackendApi::kMock;
|
|
155
|
-
bool fValid = false;
|
|
156
|
-
AnyFormatData fFormatData;
|
|
157
|
-
|
|
158
|
-
union {
|
|
159
|
-
#ifdef SK_METAL
|
|
160
|
-
GrMTLPixelFormat fMtlFormat;
|
|
161
|
-
#endif
|
|
162
|
-
|
|
163
|
-
#ifdef SK_DIRECT3D
|
|
164
|
-
DXGI_FORMAT fDxgiFormat;
|
|
165
|
-
#endif
|
|
166
|
-
struct {
|
|
167
|
-
GrColorType fColorType;
|
|
168
|
-
SkTextureCompressionType fCompressionType;
|
|
169
|
-
bool fIsStencilFormat;
|
|
170
|
-
} fMock;
|
|
171
|
-
};
|
|
172
|
-
GrTextureType fTextureType = GrTextureType::kNone;
|
|
173
|
-
};
|
|
174
|
-
|
|
175
|
-
class SK_API GrBackendTexture {
|
|
176
|
-
public:
|
|
177
|
-
// Creates an invalid backend texture.
|
|
178
|
-
GrBackendTexture();
|
|
179
|
-
|
|
180
|
-
#ifdef SK_METAL
|
|
181
|
-
GrBackendTexture(int width,
|
|
182
|
-
int height,
|
|
183
|
-
skgpu::Mipmapped,
|
|
184
|
-
const GrMtlTextureInfo& mtlInfo,
|
|
185
|
-
std::string_view label = {});
|
|
186
|
-
#endif
|
|
187
|
-
|
|
188
|
-
#ifdef SK_DIRECT3D
|
|
189
|
-
GrBackendTexture(int width,
|
|
190
|
-
int height,
|
|
191
|
-
const GrD3DTextureResourceInfo& d3dInfo,
|
|
192
|
-
std::string_view label = {});
|
|
193
|
-
#endif
|
|
194
|
-
|
|
195
|
-
GrBackendTexture(int width,
|
|
196
|
-
int height,
|
|
197
|
-
skgpu::Mipmapped,
|
|
198
|
-
const GrMockTextureInfo& mockInfo,
|
|
199
|
-
std::string_view label = {});
|
|
200
|
-
|
|
201
|
-
GrBackendTexture(const GrBackendTexture& that);
|
|
202
|
-
|
|
203
|
-
~GrBackendTexture();
|
|
204
|
-
|
|
205
|
-
GrBackendTexture& operator=(const GrBackendTexture& that);
|
|
206
|
-
|
|
207
|
-
SkISize dimensions() const { return {fWidth, fHeight}; }
|
|
208
|
-
int width() const { return fWidth; }
|
|
209
|
-
int height() const { return fHeight; }
|
|
210
|
-
std::string_view getLabel() const { return fLabel; }
|
|
211
|
-
skgpu::Mipmapped mipmapped() const { return fMipmapped; }
|
|
212
|
-
bool hasMipmaps() const { return fMipmapped == skgpu::Mipmapped::kYes; }
|
|
213
|
-
/** deprecated alias of hasMipmaps(). */
|
|
214
|
-
bool hasMipMaps() const { return this->hasMipmaps(); }
|
|
215
|
-
GrBackendApi backend() const {return fBackend; }
|
|
216
|
-
GrTextureType textureType() const { return fTextureType; }
|
|
217
|
-
|
|
218
|
-
#ifdef SK_METAL
|
|
219
|
-
// If the backend API is Metal, copies a snapshot of the GrMtlTextureInfo struct into the passed
|
|
220
|
-
// in pointer and returns true. Otherwise returns false if the backend API is not Metal.
|
|
221
|
-
bool getMtlTextureInfo(GrMtlTextureInfo*) const;
|
|
222
|
-
#endif
|
|
223
|
-
|
|
224
|
-
#ifdef SK_DIRECT3D
|
|
225
|
-
// If the backend API is Direct3D, copies a snapshot of the GrD3DTextureResourceInfo struct into
|
|
226
|
-
// the passed in pointer and returns true. This snapshot will set the fResourceState to the
|
|
227
|
-
// current resource state. Otherwise returns false if the backend API is not D3D.
|
|
228
|
-
bool getD3DTextureResourceInfo(GrD3DTextureResourceInfo*) const;
|
|
229
|
-
|
|
230
|
-
// Anytime the client changes the D3D12_RESOURCE_STATES of the D3D12_RESOURCE captured by this
|
|
231
|
-
// GrBackendTexture, they must call this function to notify Skia of the changed layout.
|
|
232
|
-
void setD3DResourceState(GrD3DResourceStateEnum);
|
|
233
|
-
#endif
|
|
234
|
-
|
|
235
|
-
// Get the GrBackendFormat for this texture (or an invalid format if this is not valid).
|
|
236
|
-
GrBackendFormat getBackendFormat() const;
|
|
237
|
-
|
|
238
|
-
// If the backend API is Mock, copies a snapshot of the GrMockTextureInfo struct into the passed
|
|
239
|
-
// in pointer and returns true. Otherwise returns false if the backend API is not Mock.
|
|
240
|
-
bool getMockTextureInfo(GrMockTextureInfo*) const;
|
|
241
|
-
|
|
242
|
-
// If the client changes any of the mutable backend of the GrBackendTexture they should call
|
|
243
|
-
// this function to inform Skia that those values have changed. The backend API specific state
|
|
244
|
-
// that can be set from this function are:
|
|
245
|
-
//
|
|
246
|
-
// Vulkan: VkImageLayout and QueueFamilyIndex
|
|
247
|
-
void setMutableState(const skgpu::MutableTextureState&);
|
|
248
|
-
|
|
249
|
-
// Returns true if we are working with protected content.
|
|
250
|
-
bool isProtected() const;
|
|
251
|
-
|
|
252
|
-
// Returns true if the backend texture has been initialized.
|
|
253
|
-
bool isValid() const { return fIsValid; }
|
|
254
|
-
|
|
255
|
-
// Returns true if both textures are valid and refer to the same API texture.
|
|
256
|
-
bool isSameTexture(const GrBackendTexture&);
|
|
257
|
-
|
|
258
|
-
#if defined(GR_TEST_UTILS)
|
|
259
|
-
static bool TestingOnly_Equals(const GrBackendTexture&, const GrBackendTexture&);
|
|
260
|
-
#endif
|
|
261
|
-
|
|
262
|
-
private:
|
|
263
|
-
// Size determined by looking at the GrBackendTextureData subclasses, then guessing-and-checking.
|
|
264
|
-
// Compiler will complain if this is too small - in that case, just increase the number.
|
|
265
|
-
inline constexpr static size_t kMaxSubclassSize = 160;
|
|
266
|
-
using AnyTextureData = SkAnySubclass<GrBackendTextureData, kMaxSubclassSize>;
|
|
267
|
-
|
|
268
|
-
friend class GrBackendSurfacePriv;
|
|
269
|
-
friend class GrBackendTextureData;
|
|
270
|
-
|
|
271
|
-
// Used by internal factories. Should not be used externally. Use factories like
|
|
272
|
-
// GrBackendTextures::MakeGL instead.
|
|
273
|
-
template <typename TextureData>
|
|
274
|
-
GrBackendTexture(int width,
|
|
275
|
-
int height,
|
|
276
|
-
std::string_view label,
|
|
277
|
-
skgpu::Mipmapped mipped,
|
|
278
|
-
GrBackendApi backend,
|
|
279
|
-
GrTextureType texture,
|
|
280
|
-
const TextureData& textureData)
|
|
281
|
-
: fIsValid(true)
|
|
282
|
-
, fWidth(width)
|
|
283
|
-
, fHeight(height)
|
|
284
|
-
, fLabel(label)
|
|
285
|
-
, fMipmapped(mipped)
|
|
286
|
-
, fBackend(backend)
|
|
287
|
-
, fTextureType(texture) {
|
|
288
|
-
fTextureData.emplace<TextureData>(textureData);
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
friend class GrVkGpu; // for getMutableState
|
|
292
|
-
sk_sp<skgpu::MutableTextureState> getMutableState() const;
|
|
293
|
-
|
|
294
|
-
#ifdef SK_DIRECT3D
|
|
295
|
-
friend class GrD3DTexture;
|
|
296
|
-
friend class GrD3DGpu; // for getGrD3DResourceState
|
|
297
|
-
GrBackendTexture(int width,
|
|
298
|
-
int height,
|
|
299
|
-
const GrD3DTextureResourceInfo& vkInfo,
|
|
300
|
-
sk_sp<GrD3DResourceState> state,
|
|
301
|
-
std::string_view label = {});
|
|
302
|
-
sk_sp<GrD3DResourceState> getGrD3DResourceState() const;
|
|
303
|
-
#endif
|
|
304
|
-
|
|
305
|
-
// Free and release and resources being held by the GrBackendTexture.
|
|
306
|
-
void cleanup();
|
|
307
|
-
|
|
308
|
-
bool fIsValid;
|
|
309
|
-
int fWidth; //<! width in pixels
|
|
310
|
-
int fHeight; //<! height in pixels
|
|
311
|
-
const std::string fLabel;
|
|
312
|
-
skgpu::Mipmapped fMipmapped;
|
|
313
|
-
GrBackendApi fBackend;
|
|
314
|
-
GrTextureType fTextureType;
|
|
315
|
-
AnyTextureData fTextureData;
|
|
316
|
-
|
|
317
|
-
union {
|
|
318
|
-
GrMockTextureInfo fMockInfo;
|
|
319
|
-
#ifdef SK_DIRECT3D
|
|
320
|
-
GrD3DBackendSurfaceInfo fD3DInfo;
|
|
321
|
-
#endif
|
|
322
|
-
};
|
|
323
|
-
#ifdef SK_METAL
|
|
324
|
-
GrMtlTextureInfo fMtlInfo;
|
|
325
|
-
#endif
|
|
326
|
-
};
|
|
327
|
-
|
|
328
|
-
class SK_API GrBackendRenderTarget {
|
|
329
|
-
public:
|
|
330
|
-
// Creates an invalid backend texture.
|
|
331
|
-
GrBackendRenderTarget();
|
|
332
|
-
|
|
333
|
-
#ifdef SK_METAL
|
|
334
|
-
GrBackendRenderTarget(int width,
|
|
335
|
-
int height,
|
|
336
|
-
const GrMtlTextureInfo& mtlInfo);
|
|
337
|
-
#endif
|
|
338
|
-
|
|
339
|
-
#ifdef SK_DIRECT3D
|
|
340
|
-
GrBackendRenderTarget(int width,
|
|
341
|
-
int height,
|
|
342
|
-
const GrD3DTextureResourceInfo& d3dInfo);
|
|
343
|
-
#endif
|
|
344
|
-
|
|
345
|
-
GrBackendRenderTarget(int width,
|
|
346
|
-
int height,
|
|
347
|
-
int sampleCnt,
|
|
348
|
-
int stencilBits,
|
|
349
|
-
const GrMockRenderTargetInfo& mockInfo);
|
|
350
|
-
|
|
351
|
-
~GrBackendRenderTarget();
|
|
352
|
-
|
|
353
|
-
GrBackendRenderTarget(const GrBackendRenderTarget& that);
|
|
354
|
-
GrBackendRenderTarget& operator=(const GrBackendRenderTarget&);
|
|
355
|
-
|
|
356
|
-
SkISize dimensions() const { return {fWidth, fHeight}; }
|
|
357
|
-
int width() const { return fWidth; }
|
|
358
|
-
int height() const { return fHeight; }
|
|
359
|
-
int sampleCnt() const { return fSampleCnt; }
|
|
360
|
-
int stencilBits() const { return fStencilBits; }
|
|
361
|
-
GrBackendApi backend() const {return fBackend; }
|
|
362
|
-
bool isFramebufferOnly() const { return fFramebufferOnly; }
|
|
363
|
-
|
|
364
|
-
#ifdef SK_METAL
|
|
365
|
-
// If the backend API is Metal, copies a snapshot of the GrMtlTextureInfo struct into the passed
|
|
366
|
-
// in pointer and returns true. Otherwise returns false if the backend API is not Metal.
|
|
367
|
-
bool getMtlTextureInfo(GrMtlTextureInfo*) const;
|
|
368
|
-
#endif
|
|
369
|
-
|
|
370
|
-
#ifdef SK_DIRECT3D
|
|
371
|
-
// If the backend API is Direct3D, copies a snapshot of the GrMtlTextureInfo struct into the
|
|
372
|
-
// passed in pointer and returns true. Otherwise returns false if the backend API is not D3D.
|
|
373
|
-
bool getD3DTextureResourceInfo(GrD3DTextureResourceInfo*) const;
|
|
374
|
-
|
|
375
|
-
// Anytime the client changes the D3D12_RESOURCE_STATES of the D3D12_RESOURCE captured by this
|
|
376
|
-
// GrBackendTexture, they must call this function to notify Skia of the changed layout.
|
|
377
|
-
void setD3DResourceState(GrD3DResourceStateEnum);
|
|
378
|
-
#endif
|
|
379
|
-
|
|
380
|
-
// Get the GrBackendFormat for this render target (or an invalid format if this is not valid).
|
|
381
|
-
GrBackendFormat getBackendFormat() const;
|
|
382
|
-
|
|
383
|
-
// If the backend API is Mock, copies a snapshot of the GrMockTextureInfo struct into the passed
|
|
384
|
-
// in pointer and returns true. Otherwise returns false if the backend API is not Mock.
|
|
385
|
-
bool getMockRenderTargetInfo(GrMockRenderTargetInfo*) const;
|
|
386
|
-
|
|
387
|
-
// If the client changes any of the mutable backend of the GrBackendTexture they should call
|
|
388
|
-
// this function to inform Skia that those values have changed. The backend API specific state
|
|
389
|
-
// that can be set from this function are:
|
|
390
|
-
//
|
|
391
|
-
// Vulkan: VkImageLayout and QueueFamilyIndex
|
|
392
|
-
void setMutableState(const skgpu::MutableTextureState&);
|
|
393
|
-
|
|
394
|
-
// Returns true if we are working with protected content.
|
|
395
|
-
bool isProtected() const;
|
|
396
|
-
|
|
397
|
-
// Returns true if the backend texture has been initialized.
|
|
398
|
-
bool isValid() const { return fIsValid; }
|
|
399
|
-
|
|
400
|
-
#if defined(GR_TEST_UTILS)
|
|
401
|
-
static bool TestingOnly_Equals(const GrBackendRenderTarget&, const GrBackendRenderTarget&);
|
|
402
|
-
#endif
|
|
403
|
-
|
|
404
|
-
private:
|
|
405
|
-
// Size determined by looking at the GrBackendRenderTargetData subclasses, then
|
|
406
|
-
// guessing-and-checking. Compiler will complain if this is too small - in that case, just
|
|
407
|
-
// increase the number.
|
|
408
|
-
inline constexpr static size_t kMaxSubclassSize = 160;
|
|
409
|
-
using AnyRenderTargetData = SkAnySubclass<GrBackendRenderTargetData, kMaxSubclassSize>;
|
|
410
|
-
|
|
411
|
-
friend class GrBackendSurfacePriv;
|
|
412
|
-
friend class GrBackendRenderTargetData;
|
|
413
|
-
|
|
414
|
-
// Used by internal factories. Should not be used externally. Use factories like
|
|
415
|
-
// GrBackendRenderTargets::MakeGL instead.
|
|
416
|
-
template <typename RenderTargetData>
|
|
417
|
-
GrBackendRenderTarget(int width,
|
|
418
|
-
int height,
|
|
419
|
-
int sampleCnt,
|
|
420
|
-
int stencilBits,
|
|
421
|
-
GrBackendApi backend,
|
|
422
|
-
bool framebufferOnly,
|
|
423
|
-
const RenderTargetData& rtData)
|
|
424
|
-
: fIsValid(true)
|
|
425
|
-
, fFramebufferOnly(framebufferOnly)
|
|
426
|
-
, fWidth(width)
|
|
427
|
-
, fHeight(height)
|
|
428
|
-
, fSampleCnt(sampleCnt)
|
|
429
|
-
, fStencilBits(stencilBits)
|
|
430
|
-
, fBackend(backend) {
|
|
431
|
-
fRTData.emplace<RenderTargetData>(rtData);
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
friend class GrVkGpu; // for getMutableState
|
|
435
|
-
sk_sp<skgpu::MutableTextureState> getMutableState() const;
|
|
436
|
-
|
|
437
|
-
#ifdef SK_DIRECT3D
|
|
438
|
-
friend class GrD3DGpu;
|
|
439
|
-
friend class GrD3DRenderTarget;
|
|
440
|
-
GrBackendRenderTarget(int width,
|
|
441
|
-
int height,
|
|
442
|
-
const GrD3DTextureResourceInfo& d3dInfo,
|
|
443
|
-
sk_sp<GrD3DResourceState> state);
|
|
444
|
-
sk_sp<GrD3DResourceState> getGrD3DResourceState() const;
|
|
445
|
-
#endif
|
|
446
|
-
|
|
447
|
-
// Free and release and resources being held by the GrBackendTexture.
|
|
448
|
-
void cleanup();
|
|
449
|
-
|
|
450
|
-
bool fIsValid;
|
|
451
|
-
bool fFramebufferOnly = false;
|
|
452
|
-
int fWidth; //<! width in pixels
|
|
453
|
-
int fHeight; //<! height in pixels
|
|
454
|
-
|
|
455
|
-
int fSampleCnt;
|
|
456
|
-
int fStencilBits;
|
|
457
|
-
|
|
458
|
-
GrBackendApi fBackend;
|
|
459
|
-
AnyRenderTargetData fRTData;
|
|
460
|
-
|
|
461
|
-
union {
|
|
462
|
-
GrMockRenderTargetInfo fMockInfo;
|
|
463
|
-
#ifdef SK_DIRECT3D
|
|
464
|
-
GrD3DBackendSurfaceInfo fD3DInfo;
|
|
465
|
-
#endif
|
|
466
|
-
};
|
|
467
|
-
#ifdef SK_METAL
|
|
468
|
-
GrMtlTextureInfo fMtlInfo;
|
|
469
|
-
#endif
|
|
470
|
-
};
|
|
471
|
-
|
|
472
|
-
#endif
|
|
7
|
+
// TODO(kjlubick, egdaniel) Delete this after migrating clients.
|
|
8
|
+
#include "include/gpu/ganesh/GrBackendSurface.h"
|