@shopify/react-native-skia 2.11.0-next.2 → 2.11.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/cpp/api/recorder/Convertor.h +57 -9
- package/cpp/api/third_party/SkottieUtils.cpp +1 -1
- package/cpp/skia/include/android/SkAndroidFrameworkUtils.h +0 -2
- package/cpp/skia/include/android/vk/AndroidVulkanMemoryAllocator.h +1 -1
- package/cpp/skia/include/codec/SkAndroidCodec.h +1 -1
- package/cpp/skia/include/codec/SkAvifDecoder.h +1 -1
- package/cpp/skia/include/codec/SkBmpDecoder.h +1 -1
- package/cpp/skia/include/codec/SkBmpRustDecoder.h +42 -0
- package/cpp/skia/include/codec/SkCodec.h +3 -2
- package/cpp/skia/include/codec/SkGifDecoder.h +1 -1
- package/cpp/skia/include/codec/SkIcoDecoder.h +1 -1
- package/cpp/skia/include/codec/SkJpegDecoder.h +1 -1
- package/cpp/skia/include/codec/SkJpegxlDecoder.h +1 -1
- package/cpp/skia/include/codec/SkPixmapUtils.h +1 -1
- package/cpp/skia/include/codec/SkPngDecoder.h +1 -1
- package/cpp/skia/include/codec/SkPngRustDecoder.h +1 -1
- package/cpp/skia/include/codec/SkRawDecoder.h +1 -1
- package/cpp/skia/include/codec/SkWbmpDecoder.h +1 -1
- package/cpp/skia/include/codec/SkWebpDecoder.h +1 -1
- package/cpp/skia/include/core/SkBitmap.h +3 -3
- package/cpp/skia/include/core/SkCPUContext.h +1 -1
- package/cpp/skia/include/core/SkCPURecorder.h +2 -3
- package/cpp/skia/include/core/SkCanvas.h +23 -15
- package/cpp/skia/include/core/SkColor.h +2 -2
- package/cpp/skia/include/core/SkColorFilter.h +1 -1
- package/cpp/skia/include/core/SkColorSpace.h +2 -2
- package/cpp/skia/include/core/SkColorTable.h +1 -1
- package/cpp/skia/include/core/SkContourMeasure.h +1 -1
- package/cpp/skia/include/core/SkData.h +1 -1
- package/cpp/skia/include/core/SkDataTable.h +2 -2
- package/cpp/skia/include/core/SkDocument.h +1 -1
- package/cpp/skia/include/core/SkDrawable.h +1 -1
- package/cpp/skia/include/core/SkFont.h +2 -2
- package/cpp/skia/include/core/SkFontMetrics.h +1 -1
- package/cpp/skia/include/core/SkFontMgr.h +1 -1
- package/cpp/skia/include/core/SkFontScanner.h +3 -3
- package/cpp/skia/include/core/SkFontStyle.h +1 -1
- package/cpp/skia/include/core/SkGraphics.h +1 -1
- package/cpp/skia/include/core/SkImage.h +1 -1
- package/cpp/skia/include/core/SkImageFilter.h +1 -1
- package/cpp/skia/include/core/SkImageGenerator.h +1 -1
- package/cpp/skia/include/core/SkImageInfo.h +4 -4
- package/cpp/skia/include/core/SkMatrix.h +3 -3
- package/cpp/skia/include/core/SkMesh.h +2 -2
- package/cpp/skia/include/core/SkMilestone.h +1 -1
- package/cpp/skia/include/core/SkOverdrawCanvas.h +1 -1
- package/cpp/skia/include/core/SkPaint.h +4 -4
- package/cpp/skia/include/core/SkPath.h +5 -23
- package/cpp/skia/include/core/SkPathBuilder.h +4 -2
- package/cpp/skia/include/core/SkPathMeasure.h +1 -1
- package/cpp/skia/include/core/SkPictureRecorder.h +1 -1
- package/cpp/skia/include/core/SkPixelRef.h +3 -5
- package/cpp/skia/include/core/SkPixmap.h +7 -2
- package/cpp/skia/include/core/SkPoint.h +555 -5
- package/cpp/skia/include/core/SkPoint3.h +2 -2
- package/cpp/skia/include/core/SkRRect.h +9 -1
- package/cpp/skia/include/core/SkRSXform.h +1 -1
- package/cpp/skia/include/core/SkRecorder.h +2 -3
- package/cpp/skia/include/core/SkRect.h +3 -3
- package/cpp/skia/include/core/SkRefCnt.h +1 -1
- package/cpp/skia/include/core/SkRegion.h +4 -4
- package/cpp/skia/include/core/SkScalar.h +2 -3
- package/cpp/skia/include/core/SkSerialProcs.h +1 -1
- package/cpp/skia/include/core/SkShader.h +1 -1
- package/cpp/skia/include/core/SkSize.h +1 -1
- package/cpp/skia/include/core/SkSpan.h +165 -4
- package/cpp/skia/include/core/SkStream.h +2 -2
- package/cpp/skia/include/core/SkStrikeRef.h +16 -0
- package/cpp/skia/include/core/SkString.h +2 -2
- package/cpp/skia/include/core/SkStrokeRec.h +1 -1
- package/cpp/skia/include/core/SkSurfaceProps.h +1 -1
- package/cpp/skia/include/core/SkSwizzle.h +1 -1
- package/cpp/skia/include/core/SkTextBlob.h +2 -2
- package/cpp/skia/include/core/SkTiledImageUtils.h +1 -1
- package/cpp/skia/include/core/SkTypeface.h +8 -2
- package/cpp/skia/include/core/SkTypes.h +6 -6
- package/cpp/skia/include/core/SkUnPreMultiply.h +1 -1
- package/cpp/skia/include/core/SkVertices.h +1 -1
- package/cpp/skia/include/core/SkYUVAPixmaps.h +1 -1
- package/cpp/skia/include/docs/SkPDFDocument.h +9 -3
- package/cpp/skia/include/effects/SkGradient.h +1 -1
- package/cpp/skia/include/effects/SkPerlinNoiseShader.h +1 -1
- package/cpp/skia/include/effects/SkRuntimeEffect.h +4 -4
- package/cpp/skia/include/encode/SkEncoder.h +3 -3
- package/cpp/skia/include/encode/SkICC.h +1 -1
- package/cpp/skia/include/encode/SkJpegEncoder.h +1 -1
- package/cpp/skia/include/encode/SkPngEncoder.h +1 -1
- package/cpp/skia/include/encode/SkPngRustEncoder.h +16 -1
- package/cpp/skia/include/encode/SkWebpEncoder.h +1 -1
- package/cpp/skia/include/gpu/GpuTypes.h +1 -1
- package/cpp/skia/include/gpu/MutableTextureState.h +1 -1
- package/cpp/skia/include/gpu/ganesh/GrBackendSemaphore.h +2 -2
- package/cpp/skia/include/gpu/ganesh/GrBackendSurface.h +3 -3
- package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkaroundsAutogen.h +39 -37
- package/cpp/skia/include/gpu/ganesh/GrExternalTextureGenerator.h +1 -1
- package/cpp/skia/include/gpu/ganesh/GrRecordingContext.h +3 -2
- package/cpp/skia/include/gpu/ganesh/GrTypes.h +1 -1
- package/cpp/skia/include/gpu/ganesh/SkImageGanesh.h +1 -1
- package/cpp/skia/include/gpu/ganesh/SkMeshGanesh.h +1 -1
- package/cpp/skia/include/gpu/ganesh/SkSurfaceGanesh.h +1 -1
- package/cpp/skia/include/gpu/ganesh/d3d/GrD3DBackendSemaphore.h +1 -1
- package/cpp/skia/include/gpu/ganesh/d3d/GrD3DBackendSurface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/d3d/GrD3DDirectContext.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/GrGLAssembleInterface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/GrGLBackendSurface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/GrGLConfig.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/GrGLDirectContext.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/GrGLExtensions.h +2 -2
- package/cpp/skia/include/gpu/ganesh/gl/GrGLFunctions.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/GrGLMakeWebGLInterface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/epoxy/GrGLMakeEpoxyEGLInterface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/glx/GrGLMakeGLXInterface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/ios/GrGLMakeIOSInterface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/mac/GrGLMakeMacInterface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/gl/win/GrGLMakeWinInterface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/mock/GrMockBackendSurface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/mock/GrMockTypes.h +1 -1
- package/cpp/skia/include/gpu/ganesh/mtl/GrMtlBackendSemaphore.h +1 -1
- package/cpp/skia/include/gpu/ganesh/mtl/GrMtlBackendSurface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/mtl/GrMtlDirectContext.h +1 -1
- package/cpp/skia/include/gpu/ganesh/vk/GrVkBackendSemaphore.h +1 -1
- package/cpp/skia/include/gpu/ganesh/vk/GrVkBackendSurface.h +1 -1
- package/cpp/skia/include/gpu/ganesh/vk/GrVkDirectContext.h +1 -1
- package/cpp/skia/include/gpu/graphite/BackendSemaphore.h +2 -2
- package/cpp/skia/include/gpu/graphite/BackendTexture.h +2 -2
- package/cpp/skia/include/gpu/graphite/Context.h +3 -3
- package/cpp/skia/include/gpu/graphite/ContextOptions.h +8 -2
- package/cpp/skia/include/gpu/graphite/PersistentPipelineStorage.h +1 -1
- package/cpp/skia/include/gpu/graphite/PrecompileContext.h +16 -2
- package/cpp/skia/include/gpu/graphite/Recorder.h +8 -7
- package/cpp/skia/include/gpu/graphite/Recording.h +6 -4
- package/cpp/skia/include/gpu/graphite/TextureInfo.h +2 -2
- package/cpp/skia/include/gpu/graphite/dawn/DawnGraphiteTypes.h +1 -1
- package/cpp/skia/include/gpu/graphite/mtl/MtlBackendContext.h +1 -1
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +1 -1
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes_cpp.h +1 -1
- package/cpp/skia/include/gpu/graphite/precompile/PaintOptions.h +2 -2
- package/cpp/skia/include/gpu/graphite/precompile/PrecompileImageFilter.h +1 -1
- package/cpp/skia/include/gpu/graphite/vk/VulkanGraphiteContext.h +1 -1
- package/cpp/skia/include/gpu/vk/VulkanBackendContext.h +1 -1
- package/cpp/skia/include/gpu/vk/VulkanExtensions.h +3 -3
- package/cpp/skia/include/gpu/vk/VulkanMutableTextureState.h +1 -1
- package/cpp/skia/include/gpu/vk/VulkanPreferredFeatures.h +1 -1
- package/cpp/skia/include/gpu/vk/VulkanTypes.h +1 -1
- package/cpp/skia/include/pathops/SkPathOps.h +2 -2
- package/cpp/skia/include/ports/SkImageGeneratorCG.h +2 -2
- package/cpp/skia/include/ports/SkImageGeneratorWIC.h +2 -2
- package/cpp/skia/include/private/{base/SingleOwner.h → SingleOwner.h} +5 -5
- package/cpp/skia/include/private/{base/SkAPI.h → SkAPI.h} +1 -1
- package/cpp/skia/include/private/{base/SkAlign.h → SkAlign.h} +1 -1
- package/cpp/skia/include/private/{base/SkAnySubclass.h → SkAnySubclass.h} +1 -1
- package/cpp/skia/include/private/{base/SkAssert.h → SkAssert.h} +4 -4
- package/cpp/skia/include/private/{base/SkAttributes.h → SkAttributes.h} +2 -2
- package/cpp/skia/include/private/{base/SkContainers.h → SkContainers.h} +3 -3
- package/cpp/skia/include/private/{base/SkDebug.h → SkDebug.h} +3 -3
- package/cpp/skia/include/private/{base/SkDeque.h → SkDeque.h} +1 -1
- package/cpp/skia/include/private/SkEncodedInfo.h +2 -2
- package/cpp/skia/include/private/SkEnumBitMask.h +92 -0
- package/cpp/skia/include/private/SkExif.h +1 -1
- package/cpp/skia/include/private/{base/SkFixed.h → SkFixed.h} +4 -4
- package/cpp/skia/include/private/{base/SkFloatingPoint.h → SkFloatingPoint.h} +2 -2
- package/cpp/skia/include/private/SkGainmapShader.h +1 -1
- package/cpp/skia/include/private/SkHdrMetadata.h +1 -1
- package/cpp/skia/include/private/SkIDChangeListener.h +3 -3
- package/cpp/skia/include/private/{base/SkLoadUserConfig.h → SkLoadUserConfig.h} +2 -2
- package/cpp/skia/include/private/{base/SkLog.h → SkLog.h} +4 -4
- package/cpp/skia/include/private/{base/SkMacros.h → SkMacros.h} +1 -1
- package/cpp/skia/include/private/{base/SkMalloc.h → SkMalloc.h} +1 -1
- package/cpp/skia/include/private/{base/SkMath.h → SkMath.h} +2 -2
- package/cpp/skia/include/private/{base/SkMutex.h → SkMutex.h} +5 -5
- package/cpp/skia/include/private/{base/SkNoncopyable.h → SkNoncopyable.h} +1 -1
- package/cpp/skia/include/private/{base/SkOnce.h → SkOnce.h} +1 -1
- package/cpp/skia/include/private/SkPathRef.h +4 -4
- package/cpp/skia/include/private/SkPixelStorage.h +20 -5
- package/cpp/skia/include/private/{base/SkSafe32.h → SkSafe32.h} +2 -2
- package/cpp/skia/include/private/{base/SkSemaphore.h → SkSemaphore.h} +3 -3
- package/cpp/skia/include/private/{base/SkTArray.h → SkTArray.h} +10 -11
- package/cpp/skia/include/private/{base/SkTDArray.h → SkTDArray.h} +4 -4
- package/cpp/skia/include/private/{base/SkTFitsIn.h → SkTFitsIn.h} +0 -2
- package/cpp/skia/include/private/{base/SkTLogic.h → SkTLogic.h} +1 -1
- package/cpp/skia/include/private/{base/SkTemplates.h → SkTemplates.h} +5 -6
- package/cpp/skia/include/private/{base/SkThreadAnnotations.h → SkThreadAnnotations.h} +1 -1
- package/cpp/skia/include/private/{base/SkThreadID.h → SkThreadID.h} +2 -2
- package/cpp/skia/include/private/{base/SkTo.h → SkTo.h} +2 -2
- package/cpp/skia/include/private/{base/SkTypeTraits.h → SkTypeTraits.h} +20 -0
- package/cpp/skia/include/private/SkXmp.h +1 -1
- package/cpp/skia/include/private/chromium/GrDeferredDisplayList.h +1 -1
- package/cpp/skia/include/private/chromium/GrSurfaceCharacterization.h +1 -1
- package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +1 -1
- package/cpp/skia/include/private/chromium/SkCodecsICCProfileChromium.h +1 -1
- package/cpp/skia/include/private/chromium/SkExifChromium.h +1 -1
- package/cpp/skia/include/private/chromium/SkImageChromium.h +1 -1
- package/cpp/skia/include/private/chromium/SkPMColor.h +1 -1
- package/cpp/skia/include/private/chromium/Slug.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrContext_Base.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrImageContext.h +2 -2
- package/cpp/skia/include/private/gpu/ganesh/GrTextureGenerator.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +4 -4
- package/cpp/skia/include/utils/SkCamera.h +1 -1
- package/cpp/skia/include/utils/SkNWayCanvas.h +1 -1
- package/cpp/skia/include/utils/SkPaintFilterCanvas.h +1 -1
- package/cpp/skia/modules/jsonreader/SkJSONReader.cpp +6 -6
- package/cpp/skia/modules/jsonreader/SkJSONReader.h +2 -2
- package/cpp/skia/modules/skottie/include/SkottieProperty.h +1 -1
- package/cpp/skia/modules/skottie/include/SlotManager.h +2 -2
- package/cpp/skia/modules/skottie/include/TextShaper.h +1 -1
- package/cpp/skia/modules/skottie/src/text/Font.h +1 -1
- package/cpp/skia/modules/skparagraph/include/ParagraphCache.h +1 -1
- package/cpp/skia/modules/skparagraph/include/TypefaceFontProvider.h +1 -1
- package/cpp/skia/modules/skresources/include/SkResources.h +1 -1
- package/cpp/skia/modules/sksg/include/SkSGNode.h +1 -1
- package/cpp/skia/modules/sksg/include/SkSGRect.h +1 -1
- package/cpp/skia/modules/sksg/include/SkSGRenderEffect.h +1 -1
- package/cpp/skia/modules/skunicode/include/SkUnicode.h +3 -3
- package/cpp/skia/modules/svg/include/SkSVGAttributeParser.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGCircle.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGClipPath.h +1 -1
- 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/SkSVGEllipse.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFe.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeBlend.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeColorMatrix.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeComponentTransfer.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeComposite.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeDisplacementMap.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeFlood.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeGaussianBlur.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeImage.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGFeLighting.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeMerge.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeOffset.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeTurbulence.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFilter.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGGradient.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGImage.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGLine.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGLinearGradient.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGMask.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGNode.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGPath.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGPattern.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGPoly.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRadialGradient.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRect.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGSVG.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGShape.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGStop.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGText.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGUse.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGValue.h +1 -1
- package/cpp/skia/src/{base → core}/SkArenaAlloc.h +5 -5
- package/cpp/skia/src/{base → core}/SkAutoLocaleSetter.h +1 -1
- package/cpp/skia/src/core/SkChecksum.h +1 -1
- package/cpp/skia/src/core/SkLRUCache.h +1 -1
- package/cpp/skia/src/{base → core}/SkMathPriv.h +3 -3
- package/cpp/skia/src/core/SkTHash.h +1 -1
- package/cpp/skia/src/{base → core}/SkTInternalLList.h +3 -3
- package/cpp/skia/src/{base → core}/SkTLazy.h +1 -1
- package/cpp/skia/src/{base → core}/SkUTF.h +1 -1
- package/lib/commonjs/renderer/processors/Animations/Animations.d.ts +27 -1
- package/lib/commonjs/renderer/processors/Animations/Animations.js +28 -0
- package/lib/commonjs/renderer/processors/Animations/Animations.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/Core.js +8 -1
- package/lib/commonjs/sksg/Recorder/Core.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/ReanimatedRecorder.js +8 -0
- package/lib/commonjs/sksg/Recorder/ReanimatedRecorder.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/Recorder.d.ts +1 -1
- package/lib/commonjs/sksg/Recorder/Recorder.js +4 -0
- package/lib/commonjs/sksg/Recorder/Recorder.js.map +1 -1
- package/lib/commonjs/sksg/utils.d.ts +4 -0
- package/lib/commonjs/sksg/utils.js +14 -1
- package/lib/commonjs/sksg/utils.js.map +1 -1
- package/lib/module/renderer/processors/Animations/Animations.d.ts +27 -1
- package/lib/module/renderer/processors/Animations/Animations.js +21 -0
- package/lib/module/renderer/processors/Animations/Animations.js.map +1 -1
- package/lib/module/sksg/Recorder/Core.js +8 -1
- package/lib/module/sksg/Recorder/Core.js.map +1 -1
- package/lib/module/sksg/Recorder/ReanimatedRecorder.js +9 -1
- package/lib/module/sksg/Recorder/ReanimatedRecorder.js.map +1 -1
- package/lib/module/sksg/Recorder/Recorder.d.ts +1 -1
- package/lib/module/sksg/Recorder/Recorder.js +5 -1
- package/lib/module/sksg/Recorder/Recorder.js.map +1 -1
- package/lib/module/sksg/utils.d.ts +4 -0
- package/lib/module/sksg/utils.js +12 -0
- package/lib/module/sksg/utils.js.map +1 -1
- package/lib/typescript/lib/commonjs/renderer/processors/Animations/Animations.d.ts +22 -0
- package/lib/typescript/lib/commonjs/sksg/utils.d.ts +1 -0
- package/lib/typescript/lib/module/mock/index.d.ts +4 -0
- package/lib/typescript/lib/module/renderer/processors/Animations/Animations.d.ts +4 -0
- package/lib/typescript/lib/module/renderer/processors/Animations/index.d.ts +1 -1
- package/lib/typescript/lib/module/sksg/utils.d.ts +1 -0
- package/lib/typescript/src/renderer/processors/Animations/Animations.d.ts +27 -1
- package/lib/typescript/src/sksg/Recorder/Recorder.d.ts +1 -1
- package/lib/typescript/src/sksg/utils.d.ts +4 -0
- package/package.json +9 -9
- package/src/renderer/processors/Animations/Animations.ts +34 -1
- package/src/sksg/Recorder/Core.ts +11 -1
- package/src/sksg/Recorder/ReanimatedRecorder.ts +10 -1
- package/src/sksg/Recorder/Recorder.ts +7 -3
- package/src/sksg/utils.ts +18 -0
- package/cpp/dawn/include/dawn/dawn_proc.h +0 -53
- package/cpp/dawn/include/dawn/dawn_proc_table.h +0 -330
- package/cpp/dawn/include/dawn/dawn_thread_dispatch_proc.h +0 -47
- package/cpp/dawn/include/dawn/dawn_version.h +0 -41
- package/cpp/dawn/include/dawn/native/D3D11Backend.h +0 -65
- package/cpp/dawn/include/dawn/native/D3D12Backend.h +0 -86
- package/cpp/dawn/include/dawn/native/D3DBackend.h +0 -56
- package/cpp/dawn/include/dawn/native/DawnNative.h +0 -369
- package/cpp/dawn/include/dawn/native/MetalBackend.h +0 -56
- package/cpp/dawn/include/dawn/native/NullBackend.h +0 -39
- package/cpp/dawn/include/dawn/native/OpenGLBackend.h +0 -89
- package/cpp/dawn/include/dawn/native/VulkanBackend.h +0 -183
- package/cpp/dawn/include/dawn/native/WebGPUBackend.h +0 -49
- package/cpp/dawn/include/dawn/native/dawn_native_export.h +0 -49
- package/cpp/dawn/include/dawn/platform/DawnPlatform.h +0 -210
- package/cpp/dawn/include/dawn/platform/dawn_platform_export.h +0 -49
- package/cpp/dawn/include/dawn/replay/Replay.h +0 -99
- package/cpp/dawn/include/dawn/replay/dawn_replay_export.h +0 -49
- package/cpp/dawn/include/dawn/webgpu_cpp_print.h +0 -2844
- package/cpp/dawn/include/tint/tint.h +0 -90
- package/cpp/dawn/include/webgpu/webgpu.h +0 -4987
- package/cpp/dawn/include/webgpu/webgpu_cpp.h +0 -10080
- package/cpp/dawn/include/webgpu/webgpu_cpp_chained_struct.h +0 -57
- package/cpp/dawn/include/webgpu/webgpu_enum_class_bitmasks.h +0 -161
- package/cpp/dawn/include/webgpu/webgpu_glfw.h +0 -88
- package/cpp/skia/include/gpu/graphite/vk/VulkanGraphiteUtils.h +0 -10
- package/cpp/skia/include/private/base/README.md +0 -4
- package/cpp/skia/include/private/base/SkPoint_impl.h +0 -560
- package/cpp/skia/include/private/base/SkSpan_impl.h +0 -158
- package/cpp/skia/src/gpu/graphite/ContextOptionsPriv.h +0 -45
- package/cpp/skia/src/gpu/graphite/ResourceTypes.h +0 -360
- package/cpp/skia/src/gpu/graphite/TextureProxyView.h +0 -105
- package/libs/.graphite +0 -1
- /package/cpp/skia/include/private/{base/SkASAN.h → SkASAN.h} +0 -0
- /package/cpp/skia/include/private/{base/SkAlignedStorage.h → SkAlignedStorage.h} +0 -0
- /package/cpp/skia/include/private/{base/SkCPUTypes.h → SkCPUTypes.h} +0 -0
- /package/cpp/skia/include/private/{base/SkFeatures.h → SkFeatures.h} +0 -0
- /package/cpp/skia/include/private/{base/SkLogPriority.h → SkLogPriority.h} +0 -0
- /package/cpp/skia/include/private/{base/SkTPin.h → SkTPin.h} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from "./Animations";
|
|
@@ -1,6 +1,32 @@
|
|
|
1
|
+
import type { SharedValue } from "react-native-reanimated";
|
|
2
|
+
/**
|
|
3
|
+
* Binds a prop to a single key of a "grouped" shared value: one shared value
|
|
4
|
+
* whose `.value` is an object can drive many props (one key each) instead of
|
|
5
|
+
* requiring a separate shared value per prop.
|
|
6
|
+
*
|
|
7
|
+
* Created via {@link select}. `T` is the type of the selected value; `__type`
|
|
8
|
+
* is a phantom marker carrying that type and is never present at runtime.
|
|
9
|
+
*/
|
|
10
|
+
export type SharedValueSelector<T> = {
|
|
11
|
+
__sv: {
|
|
12
|
+
value: Record<string, unknown>;
|
|
13
|
+
};
|
|
14
|
+
__key: string;
|
|
15
|
+
readonly __type?: T;
|
|
16
|
+
};
|
|
1
17
|
export type AnimatedProp<T> = T | {
|
|
2
18
|
value: T;
|
|
3
|
-
}
|
|
19
|
+
} | SharedValueSelector<T>;
|
|
20
|
+
/**
|
|
21
|
+
* Selects a single key of a shared value so it can drive an animated prop.
|
|
22
|
+
* This lets one shared value (whose value is an object) drive multiple props
|
|
23
|
+
* — one per key — instead of using a separate shared value for each.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* const data = useSharedValue({ x: 0, y: 0, r: 10 });
|
|
27
|
+
* <Circle cx={select(data, "x")} cy={select(data, "y")} r={select(data, "r")} />
|
|
28
|
+
*/
|
|
29
|
+
export declare const select: <T extends object, K extends keyof T & string>(value: SharedValue<T>, key: K) => SharedValueSelector<T[K]>;
|
|
4
30
|
export type AnimatedProps<T, O extends keyof T | never = never> = {
|
|
5
31
|
[K in keyof T]: K extends "children" ? T[K] : K extends O ? T[K] : AnimatedProp<T[K]>;
|
|
6
32
|
};
|
|
@@ -42,7 +42,7 @@ export declare class Recorder implements BaseRecorder {
|
|
|
42
42
|
saveBackdropFilter(): void;
|
|
43
43
|
drawBox(boxProps: AnimatedProps<BoxProps>, shadows: {
|
|
44
44
|
props: BoxShadowProps;
|
|
45
|
-
animatedProps?: Record<string,
|
|
45
|
+
animatedProps?: Record<string, unknown>;
|
|
46
46
|
}[]): void;
|
|
47
47
|
drawImage(props: AnimatedProps<ImageProps>): void;
|
|
48
48
|
drawCircle(props: AnimatedProps<CircleProps>): void;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { SharedValue } from "react-native-reanimated";
|
|
2
2
|
export declare const isSharedValue: <T = unknown>(value: unknown) => value is SharedValue<T>;
|
|
3
|
+
export declare const isSharedValueSelector: (value: unknown) => value is {
|
|
4
|
+
__sv: SharedValue<unknown>;
|
|
5
|
+
__key: string;
|
|
6
|
+
};
|
|
3
7
|
export declare const materialize: <T extends object>(props: T) => T;
|
|
4
8
|
type Composer<T> = (outer: T, inner: T) => T;
|
|
5
9
|
export declare const composeDeclarations: <T>(filters: T[], composer: Composer<T>) => T;
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"setup-skia-web": "scripts/setup-canvaskit.js"
|
|
9
9
|
},
|
|
10
10
|
"title": "React Native Skia",
|
|
11
|
-
"version": "2.11.0
|
|
11
|
+
"version": "2.11.0",
|
|
12
12
|
"description": "High-performance React Native Graphics using Skia",
|
|
13
13
|
"main": "lib/module/index.js",
|
|
14
14
|
"react-native": "src/index.ts",
|
|
@@ -139,15 +139,16 @@
|
|
|
139
139
|
},
|
|
140
140
|
"dependencies": {
|
|
141
141
|
"canvaskit-wasm": "0.41.0",
|
|
142
|
-
"react-native-skia-
|
|
143
|
-
"react-native-skia-
|
|
144
|
-
"react-native-skia-
|
|
142
|
+
"react-native-skia-android": "152.0.0",
|
|
143
|
+
"react-native-skia-apple-ios": "152.0.0",
|
|
144
|
+
"react-native-skia-apple-macos": "152.0.0",
|
|
145
|
+
"react-native-skia-apple-tvos": "152.0.0",
|
|
145
146
|
"react-reconciler": "0.31.0"
|
|
146
147
|
},
|
|
147
148
|
"graphiteDependencies": {
|
|
148
|
-
"react-native-skia-graphite-android": "
|
|
149
|
-
"react-native-skia-graphite-apple-ios": "
|
|
150
|
-
"react-native-skia-graphite-apple-macos": "
|
|
149
|
+
"react-native-skia-graphite-android": "152.0.0",
|
|
150
|
+
"react-native-skia-graphite-apple-ios": "152.0.0",
|
|
151
|
+
"react-native-skia-graphite-apple-macos": "152.0.0"
|
|
151
152
|
},
|
|
152
153
|
"eslintIgnore": [
|
|
153
154
|
"node_modules/",
|
|
@@ -184,6 +185,5 @@
|
|
|
184
185
|
}
|
|
185
186
|
]
|
|
186
187
|
]
|
|
187
|
-
}
|
|
188
|
-
"stableVersion": "0.0.0"
|
|
188
|
+
}
|
|
189
189
|
}
|
|
@@ -1,4 +1,37 @@
|
|
|
1
|
-
|
|
1
|
+
import type { SharedValue } from "react-native-reanimated";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Binds a prop to a single key of a "grouped" shared value: one shared value
|
|
5
|
+
* whose `.value` is an object can drive many props (one key each) instead of
|
|
6
|
+
* requiring a separate shared value per prop.
|
|
7
|
+
*
|
|
8
|
+
* Created via {@link select}. `T` is the type of the selected value; `__type`
|
|
9
|
+
* is a phantom marker carrying that type and is never present at runtime.
|
|
10
|
+
*/
|
|
11
|
+
export type SharedValueSelector<T> = {
|
|
12
|
+
__sv: { value: Record<string, unknown> };
|
|
13
|
+
__key: string;
|
|
14
|
+
readonly __type?: T;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export type AnimatedProp<T> = T | { value: T } | SharedValueSelector<T>;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Selects a single key of a shared value so it can drive an animated prop.
|
|
21
|
+
* This lets one shared value (whose value is an object) drive multiple props
|
|
22
|
+
* — one per key — instead of using a separate shared value for each.
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* const data = useSharedValue({ x: 0, y: 0, r: 10 });
|
|
26
|
+
* <Circle cx={select(data, "x")} cy={select(data, "y")} r={select(data, "r")} />
|
|
27
|
+
*/
|
|
28
|
+
export const select = <T extends object, K extends keyof T & string>(
|
|
29
|
+
value: SharedValue<T>,
|
|
30
|
+
key: K
|
|
31
|
+
): SharedValueSelector<T[K]> => ({
|
|
32
|
+
__sv: value as unknown as { value: Record<string, unknown> },
|
|
33
|
+
__key: key,
|
|
34
|
+
});
|
|
2
35
|
|
|
3
36
|
export type AnimatedProps<T, O extends keyof T | never = never> = {
|
|
4
37
|
[K in keyof T]: K extends "children"
|
|
@@ -23,6 +23,7 @@ import type {
|
|
|
23
23
|
DrawingNodeProps,
|
|
24
24
|
SkottieProps,
|
|
25
25
|
} from "../../dom/types";
|
|
26
|
+
import { isSharedValueSelector } from "../utils";
|
|
26
27
|
|
|
27
28
|
export enum CommandType {
|
|
28
29
|
// Context
|
|
@@ -79,7 +80,16 @@ export const materializeCommand = (command: any) => {
|
|
|
79
80
|
const newProps = { ...command.props };
|
|
80
81
|
if (command.animatedProps) {
|
|
81
82
|
for (const key in command.animatedProps) {
|
|
82
|
-
|
|
83
|
+
const entry = command.animatedProps[key];
|
|
84
|
+
if (isSharedValueSelector(entry)) {
|
|
85
|
+
const group = entry.__sv.value;
|
|
86
|
+
newProps[key] =
|
|
87
|
+
group && typeof group === "object"
|
|
88
|
+
? (group as Record<string, unknown>)[entry.__key]
|
|
89
|
+
: undefined;
|
|
90
|
+
} else {
|
|
91
|
+
newProps[key] = entry.value;
|
|
92
|
+
}
|
|
83
93
|
}
|
|
84
94
|
}
|
|
85
95
|
return { ...command, props: newProps };
|
|
@@ -31,7 +31,7 @@ import type {
|
|
|
31
31
|
DrawingNodeProps,
|
|
32
32
|
} from "../../dom/types";
|
|
33
33
|
import type { AnimatedProps } from "../../renderer";
|
|
34
|
-
import { isSharedValue } from "../utils";
|
|
34
|
+
import { isSharedValue, isSharedValueSelector } from "../utils";
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
37
|
* Currently the recorder only work if the GPU resources (e.g Images) are owned by the main thread.
|
|
@@ -55,6 +55,15 @@ export class ReanimatedRecorder implements BaseRecorder {
|
|
|
55
55
|
return;
|
|
56
56
|
}
|
|
57
57
|
Object.values(props).forEach((value) => {
|
|
58
|
+
if (isSharedValueSelector(value) && !this.values.has(value.__sv)) {
|
|
59
|
+
const sv = value.__sv;
|
|
60
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
61
|
+
// @ts-expect-error
|
|
62
|
+
sv.name = `variable${this.values.size}`;
|
|
63
|
+
this.values.add(sv as SharedValue<unknown>);
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
|
|
58
67
|
if (isSharedValue(value) && !this.values.has(value)) {
|
|
59
68
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
60
69
|
// @ts-expect-error
|
|
@@ -30,7 +30,7 @@ import type {
|
|
|
30
30
|
DrawingNodeProps,
|
|
31
31
|
} from "../../dom/types";
|
|
32
32
|
import type { AnimatedProps } from "../../renderer";
|
|
33
|
-
import { isSharedValue } from "../utils";
|
|
33
|
+
import { isSharedValue, isSharedValueSelector } from "../utils";
|
|
34
34
|
import { isColorFilter, isImageFilter, isPathEffect, isShader } from "../Node";
|
|
35
35
|
import type { SkPaint, SkPicture, BaseRecorder } from "../../skia/types";
|
|
36
36
|
|
|
@@ -78,7 +78,7 @@ export class Recorder implements BaseRecorder {
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
private processProps(props: Record<string, unknown>) {
|
|
81
|
-
const animatedProps: Record<string,
|
|
81
|
+
const animatedProps: Record<string, unknown> = {};
|
|
82
82
|
let hasAnimatedProps = false;
|
|
83
83
|
|
|
84
84
|
for (const key in props) {
|
|
@@ -87,6 +87,10 @@ export class Recorder implements BaseRecorder {
|
|
|
87
87
|
this.animationValues.add(prop);
|
|
88
88
|
animatedProps[key] = prop;
|
|
89
89
|
hasAnimatedProps = true;
|
|
90
|
+
} else if (isSharedValueSelector(prop)) {
|
|
91
|
+
this.animationValues.add(prop.__sv);
|
|
92
|
+
animatedProps[key] = prop;
|
|
93
|
+
hasAnimatedProps = true;
|
|
90
94
|
}
|
|
91
95
|
}
|
|
92
96
|
|
|
@@ -222,7 +226,7 @@ export class Recorder implements BaseRecorder {
|
|
|
222
226
|
boxProps: AnimatedProps<BoxProps>,
|
|
223
227
|
shadows: {
|
|
224
228
|
props: BoxShadowProps;
|
|
225
|
-
animatedProps?: Record<string,
|
|
229
|
+
animatedProps?: Record<string, unknown>;
|
|
226
230
|
}[]
|
|
227
231
|
) {
|
|
228
232
|
shadows.forEach((shadow) => {
|
package/src/sksg/utils.ts
CHANGED
|
@@ -10,6 +10,17 @@ export const isSharedValue = <T = unknown>(
|
|
|
10
10
|
return (value as Record<string, unknown>)?._isReanimatedSharedValue === true;
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
+
export const isSharedValueSelector = (
|
|
14
|
+
value: unknown
|
|
15
|
+
): value is { __sv: SharedValue<unknown>; __key: string } => {
|
|
16
|
+
"worklet";
|
|
17
|
+
if (!value || typeof value !== "object") {
|
|
18
|
+
return false;
|
|
19
|
+
}
|
|
20
|
+
const obj = value as Record<string, unknown>;
|
|
21
|
+
return isSharedValue(obj.__sv) && typeof obj.__key === "string";
|
|
22
|
+
};
|
|
23
|
+
|
|
13
24
|
export const materialize = <T extends object>(props: T) => {
|
|
14
25
|
"worklet";
|
|
15
26
|
const result: T = Object.assign({}, props);
|
|
@@ -17,6 +28,13 @@ export const materialize = <T extends object>(props: T) => {
|
|
|
17
28
|
const value = result[key];
|
|
18
29
|
if (isSharedValue(value)) {
|
|
19
30
|
result[key] = value.value as never;
|
|
31
|
+
} else if (isSharedValueSelector(value)) {
|
|
32
|
+
const group = value.__sv.value;
|
|
33
|
+
result[key] = (
|
|
34
|
+
group && typeof group === "object"
|
|
35
|
+
? (group as Record<string, unknown>)[value.__key]
|
|
36
|
+
: undefined
|
|
37
|
+
) as never;
|
|
20
38
|
}
|
|
21
39
|
});
|
|
22
40
|
return result;
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
// Copyright 2019 The Dawn & Tint Authors
|
|
2
|
-
//
|
|
3
|
-
// Redistribution and use in source and binary forms, with or without
|
|
4
|
-
// modification, are permitted provided that the following conditions are met:
|
|
5
|
-
//
|
|
6
|
-
// 1. Redistributions of source code must retain the above copyright notice, this
|
|
7
|
-
// list of conditions and the following disclaimer.
|
|
8
|
-
//
|
|
9
|
-
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
10
|
-
// this list of conditions and the following disclaimer in the documentation
|
|
11
|
-
// and/or other materials provided with the distribution.
|
|
12
|
-
//
|
|
13
|
-
// 3. Neither the name of the copyright holder nor the names of its
|
|
14
|
-
// contributors may be used to endorse or promote products derived from
|
|
15
|
-
// this software without specific prior written permission.
|
|
16
|
-
//
|
|
17
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
18
|
-
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
19
|
-
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
-
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
-
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
-
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
-
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
-
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
-
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
-
|
|
28
|
-
#ifndef INCLUDE_DAWN_DAWN_PROC_H_
|
|
29
|
-
#define INCLUDE_DAWN_DAWN_PROC_H_
|
|
30
|
-
|
|
31
|
-
#include <webgpu/webgpu.h>
|
|
32
|
-
|
|
33
|
-
#include "dawn/dawn_proc_table.h"
|
|
34
|
-
|
|
35
|
-
#ifdef __cplusplus
|
|
36
|
-
extern "C" {
|
|
37
|
-
#endif
|
|
38
|
-
|
|
39
|
-
// Sets the static proctable used by libdawn_proc to implement the Dawn entrypoints. Passing NULL
|
|
40
|
-
// for `procs` sets up the null proctable that contains only null function pointers. It is the
|
|
41
|
-
// default value of the proctable. Setting the proctable back to null is good practice when you
|
|
42
|
-
// are done using libdawn_proc since further usage will cause a segfault instead of calling an
|
|
43
|
-
// unexpected function.
|
|
44
|
-
WGPU_EXPORT void dawnProcSetProcs(const DawnProcTable* procs);
|
|
45
|
-
|
|
46
|
-
// Returns the static array of uint8_t of size 20 representing the Dawn version.
|
|
47
|
-
WGPU_EXPORT const uint8_t* dawnProcGetVersion();
|
|
48
|
-
|
|
49
|
-
#ifdef __cplusplus
|
|
50
|
-
} // extern "C"
|
|
51
|
-
#endif
|
|
52
|
-
|
|
53
|
-
#endif // INCLUDE_DAWN_DAWN_PROC_H_
|
|
@@ -1,330 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
#ifndef DAWN_DAWN_PROC_TABLE_H_
|
|
3
|
-
#define DAWN_DAWN_PROC_TABLE_H_
|
|
4
|
-
|
|
5
|
-
#include "webgpu/webgpu.h"
|
|
6
|
-
|
|
7
|
-
// Note: Often allocated as a static global. Do not add a complex constructor.
|
|
8
|
-
typedef struct DawnProcTable {
|
|
9
|
-
uint8_t version[20];
|
|
10
|
-
|
|
11
|
-
WGPUProcCreateInstance createInstance;
|
|
12
|
-
WGPUProcGetInstanceFeatures getInstanceFeatures;
|
|
13
|
-
WGPUProcGetInstanceLimits getInstanceLimits;
|
|
14
|
-
WGPUProcHasInstanceFeature hasInstanceFeature;
|
|
15
|
-
WGPUProcGetProcAddress getProcAddress;
|
|
16
|
-
|
|
17
|
-
WGPUProcAdapterCreateDevice adapterCreateDevice;
|
|
18
|
-
WGPUProcAdapterGetFeatures adapterGetFeatures;
|
|
19
|
-
WGPUProcAdapterGetFormatCapabilities adapterGetFormatCapabilities;
|
|
20
|
-
WGPUProcAdapterGetInfo adapterGetInfo;
|
|
21
|
-
WGPUProcAdapterGetInstance adapterGetInstance;
|
|
22
|
-
WGPUProcAdapterGetLimits adapterGetLimits;
|
|
23
|
-
WGPUProcAdapterHasFeature adapterHasFeature;
|
|
24
|
-
WGPUProcAdapterRequestDevice adapterRequestDevice;
|
|
25
|
-
WGPUProcAdapterAddRef adapterAddRef;
|
|
26
|
-
WGPUProcAdapterRelease adapterRelease;
|
|
27
|
-
|
|
28
|
-
WGPUProcAdapterInfoFreeMembers adapterInfoFreeMembers;
|
|
29
|
-
|
|
30
|
-
WGPUProcAdapterPropertiesMemoryHeapsFreeMembers adapterPropertiesMemoryHeapsFreeMembers;
|
|
31
|
-
|
|
32
|
-
WGPUProcAdapterPropertiesSubgroupMatrixConfigsFreeMembers adapterPropertiesSubgroupMatrixConfigsFreeMembers;
|
|
33
|
-
|
|
34
|
-
WGPUProcBindGroupSetLabel bindGroupSetLabel;
|
|
35
|
-
WGPUProcBindGroupAddRef bindGroupAddRef;
|
|
36
|
-
WGPUProcBindGroupRelease bindGroupRelease;
|
|
37
|
-
|
|
38
|
-
WGPUProcBindGroupLayoutSetLabel bindGroupLayoutSetLabel;
|
|
39
|
-
WGPUProcBindGroupLayoutAddRef bindGroupLayoutAddRef;
|
|
40
|
-
WGPUProcBindGroupLayoutRelease bindGroupLayoutRelease;
|
|
41
|
-
|
|
42
|
-
WGPUProcBufferCreateTexelView bufferCreateTexelView;
|
|
43
|
-
WGPUProcBufferDestroy bufferDestroy;
|
|
44
|
-
WGPUProcBufferGetConstMappedRange bufferGetConstMappedRange;
|
|
45
|
-
WGPUProcBufferGetMappedRange bufferGetMappedRange;
|
|
46
|
-
WGPUProcBufferGetMapState bufferGetMapState;
|
|
47
|
-
WGPUProcBufferGetSize bufferGetSize;
|
|
48
|
-
WGPUProcBufferGetUsage bufferGetUsage;
|
|
49
|
-
WGPUProcBufferMapAsync bufferMapAsync;
|
|
50
|
-
WGPUProcBufferReadMappedRange bufferReadMappedRange;
|
|
51
|
-
WGPUProcBufferSetLabel bufferSetLabel;
|
|
52
|
-
WGPUProcBufferUnmap bufferUnmap;
|
|
53
|
-
WGPUProcBufferWriteMappedRange bufferWriteMappedRange;
|
|
54
|
-
WGPUProcBufferAddRef bufferAddRef;
|
|
55
|
-
WGPUProcBufferRelease bufferRelease;
|
|
56
|
-
|
|
57
|
-
WGPUProcCommandBufferSetLabel commandBufferSetLabel;
|
|
58
|
-
WGPUProcCommandBufferAddRef commandBufferAddRef;
|
|
59
|
-
WGPUProcCommandBufferRelease commandBufferRelease;
|
|
60
|
-
|
|
61
|
-
WGPUProcCommandEncoderBeginComputePass commandEncoderBeginComputePass;
|
|
62
|
-
WGPUProcCommandEncoderBeginRenderPass commandEncoderBeginRenderPass;
|
|
63
|
-
WGPUProcCommandEncoderClearBuffer commandEncoderClearBuffer;
|
|
64
|
-
WGPUProcCommandEncoderCopyBufferToBuffer commandEncoderCopyBufferToBuffer;
|
|
65
|
-
WGPUProcCommandEncoderCopyBufferToTexture commandEncoderCopyBufferToTexture;
|
|
66
|
-
WGPUProcCommandEncoderCopyTextureToBuffer commandEncoderCopyTextureToBuffer;
|
|
67
|
-
WGPUProcCommandEncoderCopyTextureToTexture commandEncoderCopyTextureToTexture;
|
|
68
|
-
WGPUProcCommandEncoderFinish commandEncoderFinish;
|
|
69
|
-
WGPUProcCommandEncoderInjectValidationError commandEncoderInjectValidationError;
|
|
70
|
-
WGPUProcCommandEncoderInsertDebugMarker commandEncoderInsertDebugMarker;
|
|
71
|
-
WGPUProcCommandEncoderPopDebugGroup commandEncoderPopDebugGroup;
|
|
72
|
-
WGPUProcCommandEncoderPushDebugGroup commandEncoderPushDebugGroup;
|
|
73
|
-
WGPUProcCommandEncoderResolveQuerySet commandEncoderResolveQuerySet;
|
|
74
|
-
WGPUProcCommandEncoderSetLabel commandEncoderSetLabel;
|
|
75
|
-
WGPUProcCommandEncoderWriteBuffer commandEncoderWriteBuffer;
|
|
76
|
-
WGPUProcCommandEncoderWriteTimestamp commandEncoderWriteTimestamp;
|
|
77
|
-
WGPUProcCommandEncoderAddRef commandEncoderAddRef;
|
|
78
|
-
WGPUProcCommandEncoderRelease commandEncoderRelease;
|
|
79
|
-
|
|
80
|
-
WGPUProcComputePassEncoderDispatchWorkgroups computePassEncoderDispatchWorkgroups;
|
|
81
|
-
WGPUProcComputePassEncoderDispatchWorkgroupsIndirect computePassEncoderDispatchWorkgroupsIndirect;
|
|
82
|
-
WGPUProcComputePassEncoderEnd computePassEncoderEnd;
|
|
83
|
-
WGPUProcComputePassEncoderInsertDebugMarker computePassEncoderInsertDebugMarker;
|
|
84
|
-
WGPUProcComputePassEncoderPopDebugGroup computePassEncoderPopDebugGroup;
|
|
85
|
-
WGPUProcComputePassEncoderPushDebugGroup computePassEncoderPushDebugGroup;
|
|
86
|
-
WGPUProcComputePassEncoderSetBindGroup computePassEncoderSetBindGroup;
|
|
87
|
-
WGPUProcComputePassEncoderSetImmediates computePassEncoderSetImmediates;
|
|
88
|
-
WGPUProcComputePassEncoderSetLabel computePassEncoderSetLabel;
|
|
89
|
-
WGPUProcComputePassEncoderSetPipeline computePassEncoderSetPipeline;
|
|
90
|
-
WGPUProcComputePassEncoderSetResourceTable computePassEncoderSetResourceTable;
|
|
91
|
-
WGPUProcComputePassEncoderWriteTimestamp computePassEncoderWriteTimestamp;
|
|
92
|
-
WGPUProcComputePassEncoderAddRef computePassEncoderAddRef;
|
|
93
|
-
WGPUProcComputePassEncoderRelease computePassEncoderRelease;
|
|
94
|
-
|
|
95
|
-
WGPUProcComputePipelineGetBindGroupLayout computePipelineGetBindGroupLayout;
|
|
96
|
-
WGPUProcComputePipelineSetLabel computePipelineSetLabel;
|
|
97
|
-
WGPUProcComputePipelineAddRef computePipelineAddRef;
|
|
98
|
-
WGPUProcComputePipelineRelease computePipelineRelease;
|
|
99
|
-
|
|
100
|
-
WGPUProcDawnDrmFormatCapabilitiesFreeMembers dawnDrmFormatCapabilitiesFreeMembers;
|
|
101
|
-
|
|
102
|
-
WGPUProcDeviceCreateBindGroup deviceCreateBindGroup;
|
|
103
|
-
WGPUProcDeviceCreateBindGroupLayout deviceCreateBindGroupLayout;
|
|
104
|
-
WGPUProcDeviceCreateBuffer deviceCreateBuffer;
|
|
105
|
-
WGPUProcDeviceCreateCommandEncoder deviceCreateCommandEncoder;
|
|
106
|
-
WGPUProcDeviceCreateComputePipeline deviceCreateComputePipeline;
|
|
107
|
-
WGPUProcDeviceCreateComputePipelineAsync deviceCreateComputePipelineAsync;
|
|
108
|
-
WGPUProcDeviceCreateErrorBuffer deviceCreateErrorBuffer;
|
|
109
|
-
WGPUProcDeviceCreateErrorExternalTexture deviceCreateErrorExternalTexture;
|
|
110
|
-
WGPUProcDeviceCreateErrorShaderModule deviceCreateErrorShaderModule;
|
|
111
|
-
WGPUProcDeviceCreateErrorTexture deviceCreateErrorTexture;
|
|
112
|
-
WGPUProcDeviceCreateExternalTexture deviceCreateExternalTexture;
|
|
113
|
-
WGPUProcDeviceCreatePipelineLayout deviceCreatePipelineLayout;
|
|
114
|
-
WGPUProcDeviceCreateQuerySet deviceCreateQuerySet;
|
|
115
|
-
WGPUProcDeviceCreateRenderBundleEncoder deviceCreateRenderBundleEncoder;
|
|
116
|
-
WGPUProcDeviceCreateRenderPipeline deviceCreateRenderPipeline;
|
|
117
|
-
WGPUProcDeviceCreateRenderPipelineAsync deviceCreateRenderPipelineAsync;
|
|
118
|
-
WGPUProcDeviceCreateResourceTable deviceCreateResourceTable;
|
|
119
|
-
WGPUProcDeviceCreateSampler deviceCreateSampler;
|
|
120
|
-
WGPUProcDeviceCreateShaderModule deviceCreateShaderModule;
|
|
121
|
-
WGPUProcDeviceCreateTexture deviceCreateTexture;
|
|
122
|
-
WGPUProcDeviceDestroy deviceDestroy;
|
|
123
|
-
WGPUProcDeviceForceLoss deviceForceLoss;
|
|
124
|
-
WGPUProcDeviceGetAdapter deviceGetAdapter;
|
|
125
|
-
WGPUProcDeviceGetAdapterInfo deviceGetAdapterInfo;
|
|
126
|
-
WGPUProcDeviceGetAHardwareBufferProperties deviceGetAHardwareBufferProperties;
|
|
127
|
-
WGPUProcDeviceGetFeatures deviceGetFeatures;
|
|
128
|
-
WGPUProcDeviceGetLimits deviceGetLimits;
|
|
129
|
-
WGPUProcDeviceGetLostFuture deviceGetLostFuture;
|
|
130
|
-
WGPUProcDeviceGetQueue deviceGetQueue;
|
|
131
|
-
WGPUProcDeviceHasFeature deviceHasFeature;
|
|
132
|
-
WGPUProcDeviceImportSharedBufferMemory deviceImportSharedBufferMemory;
|
|
133
|
-
WGPUProcDeviceImportSharedFence deviceImportSharedFence;
|
|
134
|
-
WGPUProcDeviceImportSharedTextureMemory deviceImportSharedTextureMemory;
|
|
135
|
-
WGPUProcDeviceInjectError deviceInjectError;
|
|
136
|
-
WGPUProcDevicePopErrorScope devicePopErrorScope;
|
|
137
|
-
WGPUProcDevicePushErrorScope devicePushErrorScope;
|
|
138
|
-
WGPUProcDeviceSetLabel deviceSetLabel;
|
|
139
|
-
WGPUProcDeviceSetLoggingCallback deviceSetLoggingCallback;
|
|
140
|
-
WGPUProcDeviceTick deviceTick;
|
|
141
|
-
WGPUProcDeviceValidateTextureDescriptor deviceValidateTextureDescriptor;
|
|
142
|
-
WGPUProcDeviceAddRef deviceAddRef;
|
|
143
|
-
WGPUProcDeviceRelease deviceRelease;
|
|
144
|
-
|
|
145
|
-
WGPUProcExternalTextureDestroy externalTextureDestroy;
|
|
146
|
-
WGPUProcExternalTextureExpire externalTextureExpire;
|
|
147
|
-
WGPUProcExternalTextureRefresh externalTextureRefresh;
|
|
148
|
-
WGPUProcExternalTextureSetLabel externalTextureSetLabel;
|
|
149
|
-
WGPUProcExternalTextureAddRef externalTextureAddRef;
|
|
150
|
-
WGPUProcExternalTextureRelease externalTextureRelease;
|
|
151
|
-
|
|
152
|
-
WGPUProcInstanceCreateSurface instanceCreateSurface;
|
|
153
|
-
WGPUProcInstanceGetWGSLLanguageFeatures instanceGetWGSLLanguageFeatures;
|
|
154
|
-
WGPUProcInstanceHasWGSLLanguageFeature instanceHasWGSLLanguageFeature;
|
|
155
|
-
WGPUProcInstanceProcessEvents instanceProcessEvents;
|
|
156
|
-
WGPUProcInstanceRequestAdapter instanceRequestAdapter;
|
|
157
|
-
WGPUProcInstanceWaitAny instanceWaitAny;
|
|
158
|
-
WGPUProcInstanceAddRef instanceAddRef;
|
|
159
|
-
WGPUProcInstanceRelease instanceRelease;
|
|
160
|
-
|
|
161
|
-
WGPUProcPipelineLayoutSetLabel pipelineLayoutSetLabel;
|
|
162
|
-
WGPUProcPipelineLayoutAddRef pipelineLayoutAddRef;
|
|
163
|
-
WGPUProcPipelineLayoutRelease pipelineLayoutRelease;
|
|
164
|
-
|
|
165
|
-
WGPUProcQuerySetDestroy querySetDestroy;
|
|
166
|
-
WGPUProcQuerySetGetCount querySetGetCount;
|
|
167
|
-
WGPUProcQuerySetGetType querySetGetType;
|
|
168
|
-
WGPUProcQuerySetSetLabel querySetSetLabel;
|
|
169
|
-
WGPUProcQuerySetAddRef querySetAddRef;
|
|
170
|
-
WGPUProcQuerySetRelease querySetRelease;
|
|
171
|
-
|
|
172
|
-
WGPUProcQueueCopyExternalTextureForBrowser queueCopyExternalTextureForBrowser;
|
|
173
|
-
WGPUProcQueueCopyTextureForBrowser queueCopyTextureForBrowser;
|
|
174
|
-
WGPUProcQueueOnSubmittedWorkDone queueOnSubmittedWorkDone;
|
|
175
|
-
WGPUProcQueueSetLabel queueSetLabel;
|
|
176
|
-
WGPUProcQueueSubmit queueSubmit;
|
|
177
|
-
WGPUProcQueueWriteBuffer queueWriteBuffer;
|
|
178
|
-
WGPUProcQueueWriteTexture queueWriteTexture;
|
|
179
|
-
WGPUProcQueueAddRef queueAddRef;
|
|
180
|
-
WGPUProcQueueRelease queueRelease;
|
|
181
|
-
|
|
182
|
-
WGPUProcRenderBundleSetLabel renderBundleSetLabel;
|
|
183
|
-
WGPUProcRenderBundleAddRef renderBundleAddRef;
|
|
184
|
-
WGPUProcRenderBundleRelease renderBundleRelease;
|
|
185
|
-
|
|
186
|
-
WGPUProcRenderBundleEncoderDraw renderBundleEncoderDraw;
|
|
187
|
-
WGPUProcRenderBundleEncoderDrawIndexed renderBundleEncoderDrawIndexed;
|
|
188
|
-
WGPUProcRenderBundleEncoderDrawIndexedIndirect renderBundleEncoderDrawIndexedIndirect;
|
|
189
|
-
WGPUProcRenderBundleEncoderDrawIndirect renderBundleEncoderDrawIndirect;
|
|
190
|
-
WGPUProcRenderBundleEncoderFinish renderBundleEncoderFinish;
|
|
191
|
-
WGPUProcRenderBundleEncoderInsertDebugMarker renderBundleEncoderInsertDebugMarker;
|
|
192
|
-
WGPUProcRenderBundleEncoderPopDebugGroup renderBundleEncoderPopDebugGroup;
|
|
193
|
-
WGPUProcRenderBundleEncoderPushDebugGroup renderBundleEncoderPushDebugGroup;
|
|
194
|
-
WGPUProcRenderBundleEncoderSetBindGroup renderBundleEncoderSetBindGroup;
|
|
195
|
-
WGPUProcRenderBundleEncoderSetImmediates renderBundleEncoderSetImmediates;
|
|
196
|
-
WGPUProcRenderBundleEncoderSetIndexBuffer renderBundleEncoderSetIndexBuffer;
|
|
197
|
-
WGPUProcRenderBundleEncoderSetLabel renderBundleEncoderSetLabel;
|
|
198
|
-
WGPUProcRenderBundleEncoderSetPipeline renderBundleEncoderSetPipeline;
|
|
199
|
-
WGPUProcRenderBundleEncoderSetResourceTable renderBundleEncoderSetResourceTable;
|
|
200
|
-
WGPUProcRenderBundleEncoderSetVertexBuffer renderBundleEncoderSetVertexBuffer;
|
|
201
|
-
WGPUProcRenderBundleEncoderAddRef renderBundleEncoderAddRef;
|
|
202
|
-
WGPUProcRenderBundleEncoderRelease renderBundleEncoderRelease;
|
|
203
|
-
|
|
204
|
-
WGPUProcRenderPassEncoderBeginOcclusionQuery renderPassEncoderBeginOcclusionQuery;
|
|
205
|
-
WGPUProcRenderPassEncoderDraw renderPassEncoderDraw;
|
|
206
|
-
WGPUProcRenderPassEncoderDrawIndexed renderPassEncoderDrawIndexed;
|
|
207
|
-
WGPUProcRenderPassEncoderDrawIndexedIndirect renderPassEncoderDrawIndexedIndirect;
|
|
208
|
-
WGPUProcRenderPassEncoderDrawIndirect renderPassEncoderDrawIndirect;
|
|
209
|
-
WGPUProcRenderPassEncoderEnd renderPassEncoderEnd;
|
|
210
|
-
WGPUProcRenderPassEncoderEndOcclusionQuery renderPassEncoderEndOcclusionQuery;
|
|
211
|
-
WGPUProcRenderPassEncoderExecuteBundles renderPassEncoderExecuteBundles;
|
|
212
|
-
WGPUProcRenderPassEncoderInsertDebugMarker renderPassEncoderInsertDebugMarker;
|
|
213
|
-
WGPUProcRenderPassEncoderMultiDrawIndexedIndirect renderPassEncoderMultiDrawIndexedIndirect;
|
|
214
|
-
WGPUProcRenderPassEncoderMultiDrawIndirect renderPassEncoderMultiDrawIndirect;
|
|
215
|
-
WGPUProcRenderPassEncoderPixelLocalStorageBarrier renderPassEncoderPixelLocalStorageBarrier;
|
|
216
|
-
WGPUProcRenderPassEncoderPopDebugGroup renderPassEncoderPopDebugGroup;
|
|
217
|
-
WGPUProcRenderPassEncoderPushDebugGroup renderPassEncoderPushDebugGroup;
|
|
218
|
-
WGPUProcRenderPassEncoderSetBindGroup renderPassEncoderSetBindGroup;
|
|
219
|
-
WGPUProcRenderPassEncoderSetBlendConstant renderPassEncoderSetBlendConstant;
|
|
220
|
-
WGPUProcRenderPassEncoderSetImmediates renderPassEncoderSetImmediates;
|
|
221
|
-
WGPUProcRenderPassEncoderSetIndexBuffer renderPassEncoderSetIndexBuffer;
|
|
222
|
-
WGPUProcRenderPassEncoderSetLabel renderPassEncoderSetLabel;
|
|
223
|
-
WGPUProcRenderPassEncoderSetPipeline renderPassEncoderSetPipeline;
|
|
224
|
-
WGPUProcRenderPassEncoderSetResourceTable renderPassEncoderSetResourceTable;
|
|
225
|
-
WGPUProcRenderPassEncoderSetScissorRect renderPassEncoderSetScissorRect;
|
|
226
|
-
WGPUProcRenderPassEncoderSetStencilReference renderPassEncoderSetStencilReference;
|
|
227
|
-
WGPUProcRenderPassEncoderSetVertexBuffer renderPassEncoderSetVertexBuffer;
|
|
228
|
-
WGPUProcRenderPassEncoderSetViewport renderPassEncoderSetViewport;
|
|
229
|
-
WGPUProcRenderPassEncoderWriteTimestamp renderPassEncoderWriteTimestamp;
|
|
230
|
-
WGPUProcRenderPassEncoderAddRef renderPassEncoderAddRef;
|
|
231
|
-
WGPUProcRenderPassEncoderRelease renderPassEncoderRelease;
|
|
232
|
-
|
|
233
|
-
WGPUProcRenderPipelineGetBindGroupLayout renderPipelineGetBindGroupLayout;
|
|
234
|
-
WGPUProcRenderPipelineSetLabel renderPipelineSetLabel;
|
|
235
|
-
WGPUProcRenderPipelineAddRef renderPipelineAddRef;
|
|
236
|
-
WGPUProcRenderPipelineRelease renderPipelineRelease;
|
|
237
|
-
|
|
238
|
-
WGPUProcResourceTableDestroy resourceTableDestroy;
|
|
239
|
-
WGPUProcResourceTableGetSize resourceTableGetSize;
|
|
240
|
-
WGPUProcResourceTableInsertBinding resourceTableInsertBinding;
|
|
241
|
-
WGPUProcResourceTableRemoveBinding resourceTableRemoveBinding;
|
|
242
|
-
WGPUProcResourceTableSetLabel resourceTableSetLabel;
|
|
243
|
-
WGPUProcResourceTableUpdate resourceTableUpdate;
|
|
244
|
-
WGPUProcResourceTableAddRef resourceTableAddRef;
|
|
245
|
-
WGPUProcResourceTableRelease resourceTableRelease;
|
|
246
|
-
|
|
247
|
-
WGPUProcSamplerSetLabel samplerSetLabel;
|
|
248
|
-
WGPUProcSamplerAddRef samplerAddRef;
|
|
249
|
-
WGPUProcSamplerRelease samplerRelease;
|
|
250
|
-
|
|
251
|
-
WGPUProcShaderModuleGetCompilationInfo shaderModuleGetCompilationInfo;
|
|
252
|
-
WGPUProcShaderModuleSetLabel shaderModuleSetLabel;
|
|
253
|
-
WGPUProcShaderModuleAddRef shaderModuleAddRef;
|
|
254
|
-
WGPUProcShaderModuleRelease shaderModuleRelease;
|
|
255
|
-
|
|
256
|
-
WGPUProcSharedBufferMemoryBeginAccess sharedBufferMemoryBeginAccess;
|
|
257
|
-
WGPUProcSharedBufferMemoryCreateBuffer sharedBufferMemoryCreateBuffer;
|
|
258
|
-
WGPUProcSharedBufferMemoryEndAccess sharedBufferMemoryEndAccess;
|
|
259
|
-
WGPUProcSharedBufferMemoryGetProperties sharedBufferMemoryGetProperties;
|
|
260
|
-
WGPUProcSharedBufferMemoryIsDeviceLost sharedBufferMemoryIsDeviceLost;
|
|
261
|
-
WGPUProcSharedBufferMemorySetLabel sharedBufferMemorySetLabel;
|
|
262
|
-
WGPUProcSharedBufferMemoryAddRef sharedBufferMemoryAddRef;
|
|
263
|
-
WGPUProcSharedBufferMemoryRelease sharedBufferMemoryRelease;
|
|
264
|
-
|
|
265
|
-
WGPUProcSharedBufferMemoryEndAccessStateFreeMembers sharedBufferMemoryEndAccessStateFreeMembers;
|
|
266
|
-
|
|
267
|
-
WGPUProcSharedFenceExportInfo sharedFenceExportInfo;
|
|
268
|
-
WGPUProcSharedFenceSetLabel sharedFenceSetLabel;
|
|
269
|
-
WGPUProcSharedFenceAddRef sharedFenceAddRef;
|
|
270
|
-
WGPUProcSharedFenceRelease sharedFenceRelease;
|
|
271
|
-
|
|
272
|
-
WGPUProcSharedTextureMemoryBeginAccess sharedTextureMemoryBeginAccess;
|
|
273
|
-
WGPUProcSharedTextureMemoryCreateTexture sharedTextureMemoryCreateTexture;
|
|
274
|
-
WGPUProcSharedTextureMemoryEndAccess sharedTextureMemoryEndAccess;
|
|
275
|
-
WGPUProcSharedTextureMemoryGetProperties sharedTextureMemoryGetProperties;
|
|
276
|
-
WGPUProcSharedTextureMemoryIsDeviceLost sharedTextureMemoryIsDeviceLost;
|
|
277
|
-
WGPUProcSharedTextureMemorySetLabel sharedTextureMemorySetLabel;
|
|
278
|
-
WGPUProcSharedTextureMemoryAddRef sharedTextureMemoryAddRef;
|
|
279
|
-
WGPUProcSharedTextureMemoryRelease sharedTextureMemoryRelease;
|
|
280
|
-
|
|
281
|
-
WGPUProcSharedTextureMemoryEndAccessStateFreeMembers sharedTextureMemoryEndAccessStateFreeMembers;
|
|
282
|
-
|
|
283
|
-
WGPUProcSupportedFeaturesFreeMembers supportedFeaturesFreeMembers;
|
|
284
|
-
|
|
285
|
-
WGPUProcSupportedInstanceFeaturesFreeMembers supportedInstanceFeaturesFreeMembers;
|
|
286
|
-
|
|
287
|
-
WGPUProcSupportedWGSLLanguageFeaturesFreeMembers supportedWGSLLanguageFeaturesFreeMembers;
|
|
288
|
-
|
|
289
|
-
WGPUProcSurfaceConfigure surfaceConfigure;
|
|
290
|
-
WGPUProcSurfaceGetCapabilities surfaceGetCapabilities;
|
|
291
|
-
WGPUProcSurfaceGetCurrentTexture surfaceGetCurrentTexture;
|
|
292
|
-
WGPUProcSurfacePresent surfacePresent;
|
|
293
|
-
WGPUProcSurfaceSetLabel surfaceSetLabel;
|
|
294
|
-
WGPUProcSurfaceUnconfigure surfaceUnconfigure;
|
|
295
|
-
WGPUProcSurfaceAddRef surfaceAddRef;
|
|
296
|
-
WGPUProcSurfaceRelease surfaceRelease;
|
|
297
|
-
|
|
298
|
-
WGPUProcSurfaceCapabilitiesFreeMembers surfaceCapabilitiesFreeMembers;
|
|
299
|
-
|
|
300
|
-
WGPUProcTexelBufferViewSetLabel texelBufferViewSetLabel;
|
|
301
|
-
WGPUProcTexelBufferViewAddRef texelBufferViewAddRef;
|
|
302
|
-
WGPUProcTexelBufferViewRelease texelBufferViewRelease;
|
|
303
|
-
|
|
304
|
-
WGPUProcTextureCreateErrorView textureCreateErrorView;
|
|
305
|
-
WGPUProcTextureCreateView textureCreateView;
|
|
306
|
-
WGPUProcTextureDestroy textureDestroy;
|
|
307
|
-
WGPUProcTextureGetDepthOrArrayLayers textureGetDepthOrArrayLayers;
|
|
308
|
-
WGPUProcTextureGetDimension textureGetDimension;
|
|
309
|
-
WGPUProcTextureGetFormat textureGetFormat;
|
|
310
|
-
WGPUProcTextureGetHeight textureGetHeight;
|
|
311
|
-
WGPUProcTextureGetMipLevelCount textureGetMipLevelCount;
|
|
312
|
-
WGPUProcTextureGetSampleCount textureGetSampleCount;
|
|
313
|
-
WGPUProcTextureGetTextureBindingViewDimension textureGetTextureBindingViewDimension;
|
|
314
|
-
WGPUProcTextureGetUsage textureGetUsage;
|
|
315
|
-
WGPUProcTextureGetWidth textureGetWidth;
|
|
316
|
-
WGPUProcTexturePin texturePin;
|
|
317
|
-
WGPUProcTextureSetLabel textureSetLabel;
|
|
318
|
-
WGPUProcTextureSetOwnershipForMemoryDump textureSetOwnershipForMemoryDump;
|
|
319
|
-
WGPUProcTextureUnpin textureUnpin;
|
|
320
|
-
WGPUProcTextureAddRef textureAddRef;
|
|
321
|
-
WGPUProcTextureRelease textureRelease;
|
|
322
|
-
|
|
323
|
-
WGPUProcTextureViewSetLabel textureViewSetLabel;
|
|
324
|
-
WGPUProcTextureViewAddRef textureViewAddRef;
|
|
325
|
-
WGPUProcTextureViewRelease textureViewRelease;
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
} DawnProcTable;
|
|
329
|
-
|
|
330
|
-
#endif // DAWN_DAWN_PROC_TABLE_H_
|