@shopify/react-native-skia 1.3.13 → 1.4.0
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
@@ -8,24 +8,28 @@
|
|
8
8
|
#ifndef GrVkBackendSurface_DEFINED
|
9
9
|
#define GrVkBackendSurface_DEFINED
|
10
10
|
|
11
|
-
#include "include/gpu/vk/GrVkTypes.h"
|
12
11
|
#include "include/private/base/SkAPI.h"
|
12
|
+
#include "include/private/gpu/vk/SkiaVulkan.h"
|
13
13
|
|
14
14
|
#include <string_view>
|
15
15
|
|
16
16
|
class GrBackendFormat;
|
17
17
|
class GrBackendTexture;
|
18
18
|
class GrBackendRenderTarget;
|
19
|
+
struct GrVkImageInfo;
|
19
20
|
|
21
|
+
namespace skgpu {
|
22
|
+
struct VulkanYcbcrConversionInfo;
|
23
|
+
}
|
20
24
|
|
21
25
|
namespace GrBackendFormats {
|
22
26
|
|
23
27
|
SK_API GrBackendFormat MakeVk(VkFormat format, bool willUseDRMFormatModifiers = false);
|
24
|
-
SK_API GrBackendFormat MakeVk(const
|
28
|
+
SK_API GrBackendFormat MakeVk(const skgpu::VulkanYcbcrConversionInfo& ycbcrInfo,
|
25
29
|
bool willUseDRMFormatModifiers = false);
|
26
30
|
|
27
31
|
SK_API bool AsVkFormat(const GrBackendFormat&, VkFormat*);
|
28
|
-
SK_API const
|
32
|
+
SK_API const skgpu::VulkanYcbcrConversionInfo* GetVkYcbcrConversionInfo(const GrBackendFormat&);
|
29
33
|
|
30
34
|
} // namespace GrBackendFormats
|
31
35
|
|
@@ -13,7 +13,9 @@
|
|
13
13
|
|
14
14
|
class GrDirectContext;
|
15
15
|
struct GrContextOptions;
|
16
|
-
|
16
|
+
namespace skgpu {
|
17
|
+
struct VulkanBackendContext;
|
18
|
+
}
|
17
19
|
|
18
20
|
namespace GrDirectContexts {
|
19
21
|
/**
|
@@ -23,8 +25,9 @@ namespace GrDirectContexts {
|
|
23
25
|
* refs on the GrDirectContext. Once all these objects and the GrDirectContext are released,
|
24
26
|
* then it is safe to delete the vulkan objects.
|
25
27
|
*/
|
26
|
-
SK_API sk_sp<GrDirectContext> MakeVulkan(const
|
27
|
-
|
28
|
+
SK_API sk_sp<GrDirectContext> MakeVulkan(const skgpu::VulkanBackendContext&,
|
29
|
+
const GrContextOptions&);
|
30
|
+
SK_API sk_sp<GrDirectContext> MakeVulkan(const skgpu::VulkanBackendContext&);
|
28
31
|
}
|
29
32
|
|
30
33
|
#endif
|
@@ -0,0 +1,101 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
* Copyright 2016 Google Inc.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by a BSD-style license that can be
|
6
|
+
* found in the LICENSE file.
|
7
|
+
*/
|
8
|
+
|
9
|
+
#ifndef GrVkTypes_DEFINED
|
10
|
+
#define GrVkTypes_DEFINED
|
11
|
+
|
12
|
+
#include "include/gpu/GpuTypes.h"
|
13
|
+
#include "include/gpu/vk/VulkanTypes.h"
|
14
|
+
|
15
|
+
/*
|
16
|
+
* When wrapping a GrBackendTexture or GrBackendRendenderTarget, the fCurrentQueueFamily should
|
17
|
+
* either be VK_QUEUE_FAMILY_IGNORED, VK_QUEUE_FAMILY_EXTERNAL, or VK_QUEUE_FAMILY_FOREIGN_EXT. If
|
18
|
+
* fSharingMode is VK_SHARING_MODE_EXCLUSIVE then fCurrentQueueFamily can also be the graphics
|
19
|
+
* queue index passed into Skia.
|
20
|
+
*/
|
21
|
+
struct GrVkImageInfo {
|
22
|
+
VkImage fImage = VK_NULL_HANDLE;
|
23
|
+
skgpu::VulkanAlloc fAlloc;
|
24
|
+
VkImageTiling fImageTiling = VK_IMAGE_TILING_OPTIMAL;
|
25
|
+
VkImageLayout fImageLayout = VK_IMAGE_LAYOUT_UNDEFINED;
|
26
|
+
VkFormat fFormat = VK_FORMAT_UNDEFINED;
|
27
|
+
VkImageUsageFlags fImageUsageFlags = 0;
|
28
|
+
uint32_t fSampleCount = 1;
|
29
|
+
uint32_t fLevelCount = 0;
|
30
|
+
uint32_t fCurrentQueueFamily = VK_QUEUE_FAMILY_IGNORED;
|
31
|
+
skgpu::Protected fProtected = skgpu::Protected::kNo;
|
32
|
+
skgpu::VulkanYcbcrConversionInfo fYcbcrConversionInfo;
|
33
|
+
VkSharingMode fSharingMode = VK_SHARING_MODE_EXCLUSIVE;
|
34
|
+
#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
|
35
|
+
bool fPartOfSwapchainOrAndroidWindow = false;
|
36
|
+
#endif
|
37
|
+
|
38
|
+
bool operator==(const GrVkImageInfo& that) const {
|
39
|
+
bool equal = fImage == that.fImage && fAlloc == that.fAlloc &&
|
40
|
+
fImageTiling == that.fImageTiling &&
|
41
|
+
fImageLayout == that.fImageLayout &&
|
42
|
+
fFormat == that.fFormat &&
|
43
|
+
fImageUsageFlags == that.fImageUsageFlags &&
|
44
|
+
fSampleCount == that.fSampleCount &&
|
45
|
+
fLevelCount == that.fLevelCount &&
|
46
|
+
fCurrentQueueFamily == that.fCurrentQueueFamily &&
|
47
|
+
fProtected == that.fProtected &&
|
48
|
+
fYcbcrConversionInfo == that.fYcbcrConversionInfo &&
|
49
|
+
fSharingMode == that.fSharingMode;
|
50
|
+
#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
|
51
|
+
equal = equal && (fPartOfSwapchainOrAndroidWindow == that.fPartOfSwapchainOrAndroidWindow);
|
52
|
+
#endif
|
53
|
+
return equal;
|
54
|
+
}
|
55
|
+
};
|
56
|
+
|
57
|
+
/**
|
58
|
+
* This object is wrapped in a GrBackendDrawableInfo and passed in as an argument to
|
59
|
+
* drawBackendGpu() calls on an SkDrawable. The drawable will use this info to inject direct
|
60
|
+
* Vulkan calls into our stream of GPU draws.
|
61
|
+
*
|
62
|
+
* The SkDrawable is given a secondary VkCommandBuffer in which to record draws. The GPU backend
|
63
|
+
* will then execute that command buffer within a render pass it is using for its own draws. The
|
64
|
+
* drawable is also given the attachment of the color index, a compatible VkRenderPass, and the
|
65
|
+
* VkFormat of the color attachment so that it can make VkPipeline objects for the draws. The
|
66
|
+
* SkDrawable must not alter the state of the VkRenderpass or sub pass.
|
67
|
+
*
|
68
|
+
* Additionally, the SkDrawable may fill in the passed in fDrawBounds with the bounds of the draws
|
69
|
+
* that it submits to the command buffer. This will be used by the GPU backend for setting the
|
70
|
+
* bounds in vkCmdBeginRenderPass. If fDrawBounds is not updated, we will assume that the entire
|
71
|
+
* attachment may have been written to.
|
72
|
+
*
|
73
|
+
* The SkDrawable is always allowed to create its own command buffers and submit them to the queue
|
74
|
+
* to render offscreen textures which will be sampled in draws added to the passed in
|
75
|
+
* VkCommandBuffer. If this is done the SkDrawable is in charge of adding the required memory
|
76
|
+
* barriers to the queue for the sampled images since the Skia backend will not do this.
|
77
|
+
*/
|
78
|
+
struct GrVkDrawableInfo {
|
79
|
+
VkCommandBuffer fSecondaryCommandBuffer;
|
80
|
+
uint32_t fColorAttachmentIndex;
|
81
|
+
VkRenderPass fCompatibleRenderPass;
|
82
|
+
VkFormat fFormat;
|
83
|
+
VkRect2D* fDrawBounds;
|
84
|
+
#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
|
85
|
+
bool fFromSwapchainOrAndroidWindow;
|
86
|
+
#endif
|
87
|
+
};
|
88
|
+
|
89
|
+
struct GrVkSurfaceInfo {
|
90
|
+
uint32_t fSampleCount = 1;
|
91
|
+
uint32_t fLevelCount = 0;
|
92
|
+
skgpu::Protected fProtected = skgpu::Protected::kNo;
|
93
|
+
|
94
|
+
VkImageTiling fImageTiling = VK_IMAGE_TILING_OPTIMAL;
|
95
|
+
VkFormat fFormat = VK_FORMAT_UNDEFINED;
|
96
|
+
VkImageUsageFlags fImageUsageFlags = 0;
|
97
|
+
skgpu::VulkanYcbcrConversionInfo fYcbcrConversionInfo;
|
98
|
+
VkSharingMode fSharingMode = VK_SHARING_MODE_EXCLUSIVE;
|
99
|
+
};
|
100
|
+
|
101
|
+
#endif
|
@@ -4,12 +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
|
-
|
10
|
-
#include "include/gpu/gl/GrGLAssembleInterface.h"
|
11
|
-
|
12
|
-
void GrGetEGLQueryAndDisplay(GrEGLQueryStringFn** queryString, GrEGLDisplay* display,
|
13
|
-
void* ctx, GrGLGetProc get);
|
14
|
-
|
15
|
-
#endif // GrGLAssembleHelpers_DEFINED
|
7
|
+
// TODO(kjlubick, egdaniel) Delete this after migrating clients.
|
8
|
+
#include "include/gpu/ganesh/gl/GrGLAssembleHelpers.h"
|
@@ -4,41 +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
|
-
|
10
|
-
#include "include/gpu/gl/GrGLInterface.h"
|
11
|
-
#include "include/private/base/SkAPI.h"
|
12
|
-
|
13
|
-
typedef GrGLFuncPtr (*GrGLGetProc)(void* ctx, const char name[]);
|
14
|
-
|
15
|
-
/**
|
16
|
-
* Generic function for creating a GrGLInterface for an either OpenGL or GLES. It calls
|
17
|
-
* get() to get each function address. ctx is a generic ptr passed to and interpreted by get().
|
18
|
-
*/
|
19
|
-
SK_API sk_sp<const GrGLInterface> GrGLMakeAssembledInterface(void *ctx, GrGLGetProc get);
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Generic function for creating a GrGLInterface for an OpenGL (but not GLES) context. It calls
|
23
|
-
* get() to get each function address. ctx is a generic ptr passed to and interpreted by get().
|
24
|
-
*/
|
25
|
-
SK_API sk_sp<const GrGLInterface> GrGLMakeAssembledGLInterface(void *ctx, GrGLGetProc get);
|
26
|
-
|
27
|
-
/**
|
28
|
-
* Generic function for creating a GrGLInterface for an OpenGL ES (but not Open GL) context. It
|
29
|
-
* calls get() to get each function address. ctx is a generic ptr passed to and interpreted by
|
30
|
-
* get().
|
31
|
-
*/
|
32
|
-
SK_API sk_sp<const GrGLInterface> GrGLMakeAssembledGLESInterface(void *ctx, GrGLGetProc get);
|
33
|
-
|
34
|
-
/**
|
35
|
-
* Generic function for creating a GrGLInterface for a WebGL (similar to OpenGL ES) context. It
|
36
|
-
* calls get() to get each function address. ctx is a generic ptr passed to and interpreted by
|
37
|
-
* get().
|
38
|
-
*/
|
39
|
-
SK_API sk_sp<const GrGLInterface> GrGLMakeAssembledWebGLInterface(void *ctx, GrGLGetProc get);
|
40
|
-
|
41
|
-
/** Deprecated version of GrGLMakeAssembledInterface() that returns a bare pointer. */
|
42
|
-
SK_API const GrGLInterface* GrGLAssembleInterface(void *ctx, GrGLGetProc get);
|
43
|
-
|
44
|
-
#endif // GrGLAssembleInterface_DEFINED
|
7
|
+
// TODO(kjlubick, egdaniel) Delete this after migrating clients.
|
8
|
+
#include "include/gpu/ganesh/gl/GrGLAssembleInterface.h"
|
@@ -1,79 +1,8 @@
|
|
1
|
-
|
2
1
|
/*
|
3
2
|
* Copyright 2011 Google Inc.
|
4
3
|
*
|
5
4
|
* Use of this source code is governed by a BSD-style license that can be
|
6
5
|
* found in the LICENSE file.
|
7
6
|
*/
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
#ifndef GrGLConfig_DEFINED
|
12
|
-
#define GrGLConfig_DEFINED
|
13
|
-
|
14
|
-
#include "include/gpu/GrTypes.h"
|
15
|
-
|
16
|
-
/**
|
17
|
-
* Optional GL config file.
|
18
|
-
*/
|
19
|
-
#ifdef GR_GL_CUSTOM_SETUP_HEADER
|
20
|
-
#include GR_GL_CUSTOM_SETUP_HEADER
|
21
|
-
#endif
|
22
|
-
|
23
|
-
#if !defined(GR_GL_FUNCTION_TYPE)
|
24
|
-
#if defined(SK_BUILD_FOR_WIN)
|
25
|
-
#define GR_GL_FUNCTION_TYPE __stdcall
|
26
|
-
#else
|
27
|
-
#define GR_GL_FUNCTION_TYPE
|
28
|
-
#endif
|
29
|
-
#endif
|
30
|
-
|
31
|
-
/**
|
32
|
-
* The following are optional defines that can be enabled at the compiler
|
33
|
-
* command line, in a IDE project, in a GrUserConfig.h file, or in a GL custom
|
34
|
-
* file (if one is in use). If a GR_GL_CUSTOM_SETUP_HEADER is used they can
|
35
|
-
* also be placed there.
|
36
|
-
*
|
37
|
-
* GR_GL_LOG_CALLS: if 1 Gr can print every GL call using SkDebugf. Defaults to
|
38
|
-
* 0. Logging can be enabled and disabled at runtime using a debugger via to
|
39
|
-
* global gLogCallsGL. The initial value of gLogCallsGL is controlled by
|
40
|
-
* GR_GL_LOG_CALLS_START.
|
41
|
-
*
|
42
|
-
* GR_GL_LOG_CALLS_START: controls the initial value of gLogCallsGL when
|
43
|
-
* GR_GL_LOG_CALLS is 1. Defaults to 0.
|
44
|
-
*
|
45
|
-
* GR_GL_CHECK_ERROR: if enabled Gr can do a glGetError() after every GL call.
|
46
|
-
* Defaults to 1 if SK_DEBUG is set, otherwise 0. When GR_GL_CHECK_ERROR is 1
|
47
|
-
* this can be toggled in a debugger using the gCheckErrorGL global. The initial
|
48
|
-
* value of gCheckErrorGL is controlled by by GR_GL_CHECK_ERROR_START.
|
49
|
-
*
|
50
|
-
* GR_GL_CHECK_ERROR_START: controls the initial value of gCheckErrorGL
|
51
|
-
* when GR_GL_CHECK_ERROR is 1. Defaults to 1.
|
52
|
-
*
|
53
|
-
*/
|
54
|
-
|
55
|
-
#if !defined(GR_GL_LOG_CALLS)
|
56
|
-
#ifdef SK_DEBUG
|
57
|
-
#define GR_GL_LOG_CALLS 1
|
58
|
-
#else
|
59
|
-
#define GR_GL_LOG_CALLS 0
|
60
|
-
#endif
|
61
|
-
#endif
|
62
|
-
|
63
|
-
#if !defined(GR_GL_LOG_CALLS_START)
|
64
|
-
#define GR_GL_LOG_CALLS_START 0
|
65
|
-
#endif
|
66
|
-
|
67
|
-
#if !defined(GR_GL_CHECK_ERROR)
|
68
|
-
#ifdef SK_DEBUG
|
69
|
-
#define GR_GL_CHECK_ERROR 1
|
70
|
-
#else
|
71
|
-
#define GR_GL_CHECK_ERROR 0
|
72
|
-
#endif
|
73
|
-
#endif
|
74
|
-
|
75
|
-
#if !defined(GR_GL_CHECK_ERROR_START)
|
76
|
-
#define GR_GL_CHECK_ERROR_START 1
|
77
|
-
#endif
|
78
|
-
|
79
|
-
#endif
|
7
|
+
// TODO(kjlubick, egdaniel) Delete this after migrating clients.
|
8
|
+
#include "include/gpu/ganesh/gl/GrGLConfig.h"
|
@@ -4,75 +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 GrGLExtensions_DEFINED
|
10
|
-
|
11
|
-
#include "include/core/SkString.h"
|
12
|
-
#include "include/gpu/gl/GrGLFunctions.h"
|
13
|
-
#include "include/private/base/SkTArray.h"
|
14
|
-
|
15
|
-
#include <utility>
|
16
|
-
|
17
|
-
struct GrGLInterface;
|
18
|
-
class SkJSONWriter;
|
19
|
-
|
20
|
-
/**
|
21
|
-
* This helper queries the current GL context for its extensions, remembers them, and can be
|
22
|
-
* queried. It supports both glGetString- and glGetStringi-style extension string APIs and will
|
23
|
-
* use the latter if it is available. It also will query for EGL extensions if a eglQueryString
|
24
|
-
* implementation is provided.
|
25
|
-
*/
|
26
|
-
class SK_API GrGLExtensions {
|
27
|
-
public:
|
28
|
-
GrGLExtensions() {}
|
29
|
-
|
30
|
-
GrGLExtensions(const GrGLExtensions&);
|
31
|
-
|
32
|
-
GrGLExtensions& operator=(const GrGLExtensions&);
|
33
|
-
|
34
|
-
void swap(GrGLExtensions* that) {
|
35
|
-
using std::swap;
|
36
|
-
swap(fStrings, that->fStrings);
|
37
|
-
swap(fInitialized, that->fInitialized);
|
38
|
-
}
|
39
|
-
|
40
|
-
/**
|
41
|
-
* We sometimes need to use this class without having yet created a GrGLInterface. This version
|
42
|
-
* of init expects that getString is always non-NULL while getIntegerv and getStringi are non-
|
43
|
-
* NULL if on desktop GL with version 3.0 or higher. Otherwise it will fail.
|
44
|
-
*/
|
45
|
-
bool init(GrGLStandard standard,
|
46
|
-
GrGLFunction<GrGLGetStringFn> getString,
|
47
|
-
GrGLFunction<GrGLGetStringiFn> getStringi,
|
48
|
-
GrGLFunction<GrGLGetIntegervFn> getIntegerv,
|
49
|
-
GrGLFunction<GrEGLQueryStringFn> queryString = nullptr,
|
50
|
-
GrEGLDisplay eglDisplay = nullptr);
|
51
|
-
|
52
|
-
bool isInitialized() const { return fInitialized; }
|
53
|
-
|
54
|
-
/**
|
55
|
-
* Queries whether an extension is present. This will fail if init() has not been called.
|
56
|
-
*/
|
57
|
-
bool has(const char[]) const;
|
58
|
-
|
59
|
-
/**
|
60
|
-
* Removes an extension if present. Returns true if the extension was present before the call.
|
61
|
-
*/
|
62
|
-
bool remove(const char[]);
|
63
|
-
|
64
|
-
/**
|
65
|
-
* Adds an extension to list
|
66
|
-
*/
|
67
|
-
void add(const char[]);
|
68
|
-
|
69
|
-
void reset() { fStrings.clear(); }
|
70
|
-
|
71
|
-
void dumpJSON(SkJSONWriter*) const;
|
72
|
-
|
73
|
-
private:
|
74
|
-
bool fInitialized = false;
|
75
|
-
skia_private::TArray<SkString> fStrings;
|
76
|
-
};
|
77
|
-
|
78
|
-
#endif
|
7
|
+
// TODO(kjlubick, egdaniel) Delete this after migrating clients.
|
8
|
+
#include "include/gpu/ganesh/gl/GrGLExtensions.h"
|