@shopify/react-native-skia 2.6.2 → 2.6.3-next.2

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.
Files changed (346) hide show
  1. package/android/CMakeLists.txt +8 -4
  2. package/android/build.gradle +22 -3
  3. package/android/cpp/rnskia-android/RNSkAndroidPlatformContext.h +62 -0
  4. package/android/src/paper/java/com/facebook/react/viewmanagers/SkiaWebGPUViewManagerDelegate.java +35 -0
  5. package/android/src/paper/java/com/facebook/react/viewmanagers/SkiaWebGPUViewManagerInterface.java +17 -0
  6. package/apple/RNSkApplePlatformContext.h +2 -0
  7. package/apple/RNSkApplePlatformContext.mm +71 -0
  8. package/apple/RNWebGPUAppleNativeBuffer.mm +33 -0
  9. package/cpp/api/JsiNativeBuffer.h +9 -1
  10. package/cpp/api/JsiSkAnimatedImage.h +1 -1
  11. package/cpp/api/JsiSkAnimatedImageFactory.h +1 -1
  12. package/cpp/api/JsiSkApi.h +3 -3
  13. package/cpp/api/JsiSkCanvas.h +34 -1
  14. package/cpp/api/JsiSkColor.h +1 -1
  15. package/cpp/api/JsiSkDataFactory.h +2 -2
  16. package/cpp/api/JsiSkFont.h +1 -1
  17. package/cpp/api/JsiSkFontMgr.h +1 -1
  18. package/cpp/api/JsiSkHostObjects.h +3 -3
  19. package/cpp/api/JsiSkImage.h +15 -7
  20. package/cpp/api/JsiSkImageFactory.h +2 -2
  21. package/cpp/api/JsiSkPath.h +1 -1
  22. package/cpp/api/JsiSkPathFactory.h +1 -1
  23. package/cpp/api/JsiSkSkottie.h +1 -1
  24. package/cpp/api/JsiSkSurface.h +18 -6
  25. package/cpp/api/JsiSkTypeface.h +1 -1
  26. package/cpp/api/JsiSkTypefaceFontProvider.h +1 -1
  27. package/cpp/api/JsiSkiaContext.h +2 -2
  28. package/cpp/api/JsiTextureInfo.h +1 -1
  29. package/cpp/api/JsiVideo.h +2 -2
  30. package/cpp/api/recorder/Convertor.h +1 -1
  31. package/cpp/api/recorder/Drawings.h +1 -1
  32. package/cpp/api/recorder/JsiRecorder.h +4 -4
  33. package/cpp/api/recorder/RNRecorder.h +1 -1
  34. package/cpp/api/third_party/SkottieUtils.cpp +1 -1
  35. package/cpp/api/third_party/base64.cpp +1 -1
  36. package/cpp/jsi/JsiHostObject.cpp +5 -7
  37. package/cpp/jsi/JsiPromises.h +1 -1
  38. package/cpp/jsi/ViewProperty.h +1 -1
  39. package/cpp/rnskia/RNDawnContext.h +13 -0
  40. package/cpp/rnskia/RNDawnUtils.h +11 -1
  41. package/cpp/rnskia/RNSkJsiViewApi.h +2 -2
  42. package/cpp/rnskia/RNSkManager.cpp +88 -2
  43. package/cpp/rnskia/RNSkPictureView.h +4 -4
  44. package/cpp/rnskia/RNSkPlatformContext.h +7 -0
  45. package/cpp/rnskia/RNSkView.h +9 -6
  46. package/cpp/rnwgpu/ArrayBuffer.h +51 -7
  47. package/cpp/rnwgpu/api/AppleNativeBuffer.h +22 -0
  48. package/cpp/rnwgpu/api/Convertors.h +33 -11
  49. package/cpp/rnwgpu/api/GPU.cpp +0 -3
  50. package/cpp/rnwgpu/api/GPUAdapter.cpp +37 -7
  51. package/cpp/rnwgpu/api/GPUBuffer.h +1 -1
  52. package/cpp/rnwgpu/api/GPUDevice.cpp +84 -6
  53. package/cpp/rnwgpu/api/GPUDevice.h +12 -0
  54. package/cpp/rnwgpu/api/GPUExternalTexture.cpp +139 -0
  55. package/cpp/rnwgpu/api/GPUExternalTexture.h +52 -2
  56. package/cpp/rnwgpu/api/GPUQueue.cpp +50 -45
  57. package/cpp/rnwgpu/api/GPUShaderModule.cpp +1 -1
  58. package/cpp/rnwgpu/api/GPUSharedFence.cpp +80 -0
  59. package/cpp/rnwgpu/api/GPUSharedFence.h +53 -0
  60. package/cpp/rnwgpu/api/GPUSharedTextureMemory.cpp +135 -0
  61. package/cpp/rnwgpu/api/GPUSharedTextureMemory.h +75 -0
  62. package/cpp/rnwgpu/api/ImageBitmap.h +62 -0
  63. package/cpp/rnwgpu/api/NativeBufferUtils.h +87 -0
  64. package/cpp/rnwgpu/api/descriptors/GPUBindGroupEntry.h +4 -1
  65. package/cpp/rnwgpu/api/descriptors/GPUCanvasConfiguration.h +1 -1
  66. package/cpp/rnwgpu/api/descriptors/GPUDawnTogglesDescriptor.h +56 -0
  67. package/cpp/rnwgpu/api/descriptors/GPUDeviceDescriptor.h +10 -0
  68. package/cpp/rnwgpu/api/descriptors/GPUExternalTextureDescriptor.h +43 -24
  69. package/cpp/rnwgpu/api/descriptors/GPUImageCopyExternalImage.h +9 -9
  70. package/cpp/rnwgpu/api/descriptors/GPUImageCopyTexture.h +1 -1
  71. package/cpp/rnwgpu/api/descriptors/GPUImageCopyTextureTagged.h +2 -2
  72. package/cpp/rnwgpu/api/descriptors/GPUSharedFenceDescriptor.h +58 -0
  73. package/cpp/rnwgpu/api/descriptors/GPUSharedFenceState.h +51 -0
  74. package/cpp/rnwgpu/api/descriptors/GPUSharedTextureMemoryDescriptor.h +73 -0
  75. package/cpp/rnwgpu/api/descriptors/GPUTextureDescriptor.h +1 -1
  76. package/cpp/rnwgpu/api/descriptors/GPUUncapturedErrorEventInit.h +1 -1
  77. package/cpp/skia/include/android/GrAHardwareBufferUtils.h +1 -1
  78. package/cpp/skia/include/android/SkAndroidFrameworkUtils.h +1 -1
  79. package/cpp/skia/include/android/SkAnimatedImage.h +1 -1
  80. package/cpp/skia/include/codec/SkCodec.h +0 -8
  81. package/cpp/skia/include/codec/SkEncodedOrigin.h +1 -1
  82. package/cpp/skia/include/codec/SkPngRustDecoder.h +1 -1
  83. package/cpp/skia/include/core/SkBitmap.h +2 -8
  84. package/cpp/skia/include/core/SkCPURecorder.h +3 -1
  85. package/cpp/skia/include/core/SkCanvasVirtualEnforcer.h +1 -1
  86. package/cpp/skia/include/core/SkColorType.h +5 -3
  87. package/cpp/skia/include/core/SkContourMeasure.h +1 -1
  88. package/cpp/skia/include/core/SkCoverageMode.h +1 -1
  89. package/cpp/skia/include/core/SkCubicMap.h +1 -1
  90. package/cpp/skia/include/core/SkExecutor.h +1 -1
  91. package/cpp/skia/include/core/SkFont.h +15 -0
  92. package/cpp/skia/include/core/SkFontArguments.h +6 -1
  93. package/cpp/skia/include/core/SkFontMetrics.h +1 -1
  94. package/cpp/skia/include/core/SkFontMgr.h +36 -1
  95. package/cpp/skia/include/core/SkFontParameters.h +1 -1
  96. package/cpp/skia/include/core/SkFontScanner.h +1 -1
  97. package/cpp/skia/include/core/SkFontTypes.h +1 -1
  98. package/cpp/skia/include/core/SkM44.h +1 -1
  99. package/cpp/skia/include/core/SkMilestone.h +1 -1
  100. package/cpp/skia/include/core/SkOpenTypeSVGDecoder.h +1 -1
  101. package/cpp/skia/include/core/SkPathBuilder.h +10 -4
  102. package/cpp/skia/include/core/SkPathIter.h +1 -1
  103. package/cpp/skia/include/core/SkPathTypes.h +1 -1
  104. package/cpp/skia/include/core/SkPixelRef.h +4 -1
  105. package/cpp/skia/include/core/SkRecorder.h +2 -1
  106. package/cpp/skia/include/core/SkRegion.h +17 -6
  107. package/cpp/skia/include/core/SkSamplingOptions.h +1 -1
  108. package/cpp/skia/include/core/SkSerialProcs.h +8 -1
  109. package/cpp/skia/include/core/SkShader.h +3 -5
  110. package/cpp/skia/include/core/SkSpan.h +1 -1
  111. package/cpp/skia/include/core/SkStream.h +1 -1
  112. package/cpp/skia/include/core/SkStrikeRef.h +80 -0
  113. package/cpp/skia/include/core/SkTileMode.h +1 -1
  114. package/cpp/skia/include/core/SkVertices.h +1 -1
  115. package/cpp/skia/include/core/SkYUVAPixmaps.h +3 -5
  116. package/cpp/skia/include/docs/SkPDFDocument.h +1 -1
  117. package/cpp/skia/include/docs/SkXPSDocument.h +1 -1
  118. package/cpp/skia/include/effects/SkGradient.h +1 -1
  119. package/cpp/skia/include/effects/SkHighContrastFilter.h +1 -1
  120. package/cpp/skia/include/effects/SkRuntimeEffect.h +2 -2
  121. package/cpp/skia/include/effects/SkShaderMaskFilter.h +1 -1
  122. package/cpp/skia/include/effects/SkTrimPathEffect.h +1 -1
  123. package/cpp/skia/include/encode/SkEncoder.h +1 -1
  124. package/cpp/skia/include/encode/SkJpegEncoder.h +1 -1
  125. package/cpp/skia/include/encode/SkPngEncoder.h +1 -1
  126. package/cpp/skia/include/encode/SkPngRustEncoder.h +1 -1
  127. package/cpp/skia/include/encode/SkWebpEncoder.h +1 -1
  128. package/cpp/skia/include/gpu/GpuTypes.h +2 -0
  129. package/cpp/skia/include/gpu/MutableTextureState.h +1 -1
  130. package/cpp/skia/include/gpu/ganesh/GrBackendSemaphore.h +1 -1
  131. package/cpp/skia/include/gpu/ganesh/GrBackendSurface.h +6 -62
  132. package/cpp/skia/include/gpu/ganesh/GrContextThreadSafeProxy.h +1 -1
  133. package/cpp/skia/include/gpu/ganesh/GrDirectContext.h +1 -1
  134. package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h +1 -1
  135. package/cpp/skia/include/gpu/ganesh/GrRecordingContext.h +2 -1
  136. package/cpp/skia/include/gpu/ganesh/mock/GrMockBackendSurface.h +59 -0
  137. package/cpp/skia/include/gpu/ganesh/mock/GrMockTypes.h +1 -1
  138. package/cpp/skia/include/gpu/ganesh/mtl/GrMtlBackendContext.h +1 -1
  139. package/cpp/skia/include/gpu/ganesh/mtl/GrMtlTypes.h +1 -1
  140. package/cpp/skia/include/gpu/ganesh/vk/GrBackendDrawableInfo.h +1 -1
  141. package/cpp/skia/include/gpu/graphite/Context.h +12 -5
  142. package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +6 -0
  143. package/cpp/skia/include/gpu/graphite/Image.h +82 -9
  144. package/cpp/skia/include/gpu/graphite/PrecompileContext.h +7 -2
  145. package/cpp/skia/include/gpu/graphite/Recorder.h +6 -4
  146. package/cpp/skia/include/gpu/graphite/precompile/PrecompileColorFilter.h +11 -1
  147. package/cpp/skia/include/gpu/graphite/precompile/PrecompileShader.h +1 -0
  148. package/cpp/skia/include/gpu/graphite/vk/VulkanGraphiteTypes.h +1 -1
  149. package/cpp/skia/include/gpu/mtl/MtlMemoryAllocator.h +1 -1
  150. package/cpp/skia/include/gpu/vk/VulkanExtensions.h +1 -1
  151. package/cpp/skia/include/gpu/vk/VulkanMemoryAllocator.h +1 -1
  152. package/cpp/skia/include/gpu/vk/VulkanTypes.h +1 -1
  153. package/cpp/skia/include/ports/SkCFObject.h +1 -1
  154. package/cpp/skia/include/ports/SkFontMgr_Fontations.h +1 -1
  155. package/cpp/skia/include/ports/SkFontMgr_android_ndk.h +1 -1
  156. package/cpp/skia/include/ports/SkFontMgr_data.h +1 -1
  157. package/cpp/skia/include/ports/SkFontMgr_fuchsia.h +1 -1
  158. package/cpp/skia/include/ports/SkFontMgr_mac_ct.h +1 -1
  159. package/cpp/skia/include/ports/SkFontScanner_Fontations.h +1 -1
  160. package/cpp/skia/include/ports/SkFontScanner_FreeType.h +1 -1
  161. package/cpp/skia/include/ports/SkTypeface_fontations.h +1 -1
  162. package/cpp/skia/include/private/SkExif.h +1 -1
  163. package/cpp/skia/include/private/SkGainmapInfo.h +1 -1
  164. package/cpp/skia/include/private/SkGainmapShader.h +1 -1
  165. package/cpp/skia/include/private/SkHdrMetadata.h +21 -0
  166. package/cpp/skia/include/private/SkJpegGainmapEncoder.h +1 -1
  167. package/cpp/skia/include/private/SkPixelStorage.h +37 -0
  168. package/cpp/skia/include/private/SkXmp.h +1 -1
  169. package/cpp/skia/include/private/base/SkAssert.h +6 -5
  170. package/cpp/skia/include/private/base/SkContainers.h +1 -1
  171. package/cpp/skia/include/private/base/SkFeatures.h +30 -30
  172. package/cpp/skia/include/private/base/SkLog.h +1 -7
  173. package/cpp/skia/include/private/base/SkLogPriority.h +4 -5
  174. package/cpp/skia/include/private/base/SkMacros.h +1 -1
  175. package/cpp/skia/include/private/base/SkMalloc.h +1 -1
  176. package/cpp/skia/include/private/base/SkSafe32.h +1 -1
  177. package/cpp/skia/include/private/base/SkSpan_impl.h +1 -1
  178. package/cpp/skia/include/private/base/SkTDArray.h +13 -1
  179. package/cpp/skia/include/private/base/SkTPin.h +1 -1
  180. package/cpp/skia/include/private/base/SkTo.h +1 -1
  181. package/cpp/skia/include/private/chromium/GrVkSecondaryCBDrawContext.h +1 -1
  182. package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +1 -1
  183. package/cpp/skia/include/private/chromium/SkCodecsICCProfileChromium.h +52 -0
  184. package/cpp/skia/include/private/chromium/SkExifChromium.h +26 -0
  185. package/cpp/skia/include/private/gpu/ganesh/GrContext_Base.h +1 -1
  186. package/cpp/skia/include/private/gpu/ganesh/GrImageContext.h +1 -1
  187. package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +2 -1
  188. package/cpp/skia/include/private/gpu/vk/SkiaVulkan.h +1 -1
  189. package/cpp/skia/include/sksl/SkSLDebugTrace.h +1 -1
  190. package/cpp/skia/include/third_party/vulkan/vulkan/vk_icd.h +41 -51
  191. package/cpp/skia/include/third_party/vulkan/vulkan/vk_layer.h +42 -53
  192. package/cpp/skia/include/third_party/vulkan/vulkan/vk_platform.h +2 -1
  193. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_av1std.h +158 -154
  194. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_av1std_decode.h +68 -65
  195. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_av1std_encode.h +90 -87
  196. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_h264std.h +9 -9
  197. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_h264std_decode.h +2 -2
  198. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_h264std_encode.h +82 -79
  199. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_h265std.h +24 -24
  200. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_h265std_decode.h +2 -2
  201. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_h265std_encode.h +95 -96
  202. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_vp9std.h +151 -0
  203. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codec_vp9std_decode.h +68 -0
  204. package/cpp/skia/include/third_party/vulkan/vulkan/vk_video/vulkan_video_codecs_common.h +1 -1
  205. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan.h +5 -1
  206. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_android.h +7 -1
  207. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_beta.h +291 -158
  208. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_core.h +13174 -10113
  209. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_directfb.h +23 -19
  210. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_fuchsia.h +159 -165
  211. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_ggp.h +22 -19
  212. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_ios.h +3 -1
  213. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_macos.h +3 -1
  214. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_metal.h +94 -88
  215. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_ohos.h +120 -0
  216. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_screen.h +55 -51
  217. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_vi.h +18 -15
  218. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_wayland.h +23 -19
  219. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_win32.h +31 -1
  220. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_xcb.h +5 -1
  221. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_xlib.h +27 -27
  222. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_xlib_xrandr.h +20 -16
  223. package/cpp/skia/include/utils/SkEventTracer.h +6 -1
  224. package/cpp/skia/include/utils/SkOrderedFontMgr.h +1 -1
  225. package/cpp/skia/include/utils/SkShadowUtils.h +1 -1
  226. package/cpp/skia/include/utils/SkTextUtils.h +1 -1
  227. package/cpp/skia/modules/jsonreader/SkJSONReader.cpp +20 -4
  228. package/cpp/skia/modules/skcms/src/Transform_inl.h +11 -15
  229. package/cpp/skia/modules/skcms/src/skcms_public.h +2 -0
  230. package/cpp/skia/modules/skottie/include/ExternalLayer.h +1 -1
  231. package/cpp/skia/modules/skottie/include/Skottie.h +1 -1
  232. package/cpp/skia/modules/skottie/include/SkottieProperty.h +1 -1
  233. package/cpp/skia/modules/skottie/include/SlotManager.h +1 -1
  234. package/cpp/skia/modules/skottie/include/TextShaper.h +1 -1
  235. package/cpp/skia/modules/skottie/src/SkottieValue.h +1 -1
  236. package/cpp/skia/modules/skottie/src/animator/Animator.h +1 -1
  237. package/cpp/skia/modules/skottie/src/text/Font.h +1 -1
  238. package/cpp/skia/modules/skottie/src/text/TextAdapter.h +1 -1
  239. package/cpp/skia/modules/skottie/src/text/TextAnimator.h +3 -2
  240. package/cpp/skia/modules/skottie/src/text/TextValue.h +1 -1
  241. package/cpp/skia/modules/skparagraph/include/DartTypes.h +1 -1
  242. package/cpp/skia/modules/skparagraph/include/FontArguments.h +1 -1
  243. package/cpp/skia/modules/skparagraph/include/FontCollection.h +5 -1
  244. package/cpp/skia/modules/skparagraph/include/Metrics.h +1 -1
  245. package/cpp/skia/modules/skparagraph/include/Paragraph.h +1 -1
  246. package/cpp/skia/modules/skparagraph/include/ParagraphBuilder.h +1 -1
  247. package/cpp/skia/modules/skparagraph/include/ParagraphCache.h +1 -1
  248. package/cpp/skia/modules/skparagraph/include/ParagraphPainter.h +1 -1
  249. package/cpp/skia/modules/skparagraph/include/ParagraphStyle.h +12 -5
  250. package/cpp/skia/modules/skparagraph/include/TextShadow.h +1 -1
  251. package/cpp/skia/modules/skparagraph/include/TextStyle.h +1 -1
  252. package/cpp/skia/modules/skparagraph/include/TypefaceFontProvider.h +1 -1
  253. package/cpp/skia/modules/sksg/include/SkSGClipEffect.h +1 -1
  254. package/cpp/skia/modules/sksg/include/SkSGColorFilter.h +1 -1
  255. package/cpp/skia/modules/sksg/include/SkSGDraw.h +1 -1
  256. package/cpp/skia/modules/sksg/include/SkSGEffectNode.h +1 -1
  257. package/cpp/skia/modules/sksg/include/SkSGGeometryEffect.h +1 -1
  258. package/cpp/skia/modules/sksg/include/SkSGGeometryNode.h +1 -1
  259. package/cpp/skia/modules/sksg/include/SkSGGradient.h +1 -1
  260. package/cpp/skia/modules/sksg/include/SkSGGroup.h +1 -1
  261. package/cpp/skia/modules/sksg/include/SkSGImage.h +1 -1
  262. package/cpp/skia/modules/sksg/include/SkSGInvalidationController.h +1 -1
  263. package/cpp/skia/modules/sksg/include/SkSGMaskEffect.h +1 -1
  264. package/cpp/skia/modules/sksg/include/SkSGMerge.h +1 -1
  265. package/cpp/skia/modules/sksg/include/SkSGNode.h +1 -1
  266. package/cpp/skia/modules/sksg/include/SkSGOpacityEffect.h +1 -1
  267. package/cpp/skia/modules/sksg/include/SkSGPaint.h +1 -1
  268. package/cpp/skia/modules/sksg/include/SkSGPath.h +1 -1
  269. package/cpp/skia/modules/sksg/include/SkSGPlane.h +1 -1
  270. package/cpp/skia/modules/sksg/include/SkSGRect.h +1 -1
  271. package/cpp/skia/modules/sksg/include/SkSGRenderEffect.h +1 -1
  272. package/cpp/skia/modules/sksg/include/SkSGRenderNode.h +1 -1
  273. package/cpp/skia/modules/sksg/include/SkSGScene.h +1 -1
  274. package/cpp/skia/modules/sksg/include/SkSGText.h +1 -1
  275. package/cpp/skia/modules/sksg/include/SkSGTransform.h +1 -1
  276. package/cpp/skia/modules/skshaper/include/SkShaper_coretext.h +8 -1
  277. package/cpp/skia/modules/svg/include/SkSVGFe.h +1 -1
  278. package/cpp/skia/modules/svg/include/SkSVGFeBlend.h +1 -1
  279. package/cpp/skia/modules/svg/include/SkSVGFeColorMatrix.h +1 -1
  280. package/cpp/skia/modules/svg/include/SkSVGFeComponentTransfer.h +1 -1
  281. package/cpp/skia/modules/svg/include/SkSVGFeComposite.h +1 -1
  282. package/cpp/skia/modules/svg/include/SkSVGFeDisplacementMap.h +1 -1
  283. package/cpp/skia/modules/svg/include/SkSVGFeFlood.h +1 -1
  284. package/cpp/skia/modules/svg/include/SkSVGFeGaussianBlur.h +1 -1
  285. package/cpp/skia/modules/svg/include/SkSVGFeImage.h +1 -1
  286. package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +1 -1
  287. package/cpp/skia/modules/svg/include/SkSVGFeLighting.h +1 -1
  288. package/cpp/skia/modules/svg/include/SkSVGFeMerge.h +1 -1
  289. package/cpp/skia/modules/svg/include/SkSVGFeMorphology.h +1 -1
  290. package/cpp/skia/modules/svg/include/SkSVGFeOffset.h +1 -1
  291. package/cpp/skia/modules/svg/include/SkSVGFeTurbulence.h +1 -1
  292. package/cpp/skia/modules/svg/include/SkSVGFilter.h +1 -1
  293. package/cpp/skia/modules/svg/include/SkSVGFilterContext.h +1 -1
  294. package/cpp/skia/modules/svg/include/SkSVGGradient.h +1 -1
  295. package/cpp/skia/modules/svg/include/SkSVGImage.h +1 -1
  296. package/cpp/skia/modules/svg/include/SkSVGMask.h +1 -1
  297. package/cpp/skia/modules/svg/include/SkSVGOpenTypeSVGDecoder.h +1 -1
  298. package/cpp/skia/modules/svg/include/SkSVGPattern.h +1 -1
  299. package/cpp/skia/modules/svg/include/SkSVGRadialGradient.h +1 -1
  300. package/cpp/skia/modules/svg/include/SkSVGText.h +1 -1
  301. package/cpp/skia/modules/svg/include/SkSVGUse.h +1 -1
  302. package/cpp/skia/src/base/SkAutoLocaleSetter.h +94 -0
  303. package/cpp/skia/src/base/SkUTF.h +1 -1
  304. package/lib/commonjs/skia/types/NativeBuffer/NativeBufferFactory.d.ts +10 -1
  305. package/lib/commonjs/skia/types/NativeBuffer/NativeBufferFactory.js.map +1 -1
  306. package/lib/commonjs/skia/types/WebGPU.d.ts +153 -0
  307. package/lib/commonjs/skia/types/WebGPU.js +6 -0
  308. package/lib/commonjs/skia/types/WebGPU.js.map +1 -0
  309. package/lib/commonjs/skia/types/index.d.ts +1 -0
  310. package/lib/commonjs/skia/types/index.js +11 -0
  311. package/lib/commonjs/skia/types/index.js.map +1 -1
  312. package/lib/commonjs/skia/web/JsiSkNativeBufferFactory.d.ts +1 -0
  313. package/lib/commonjs/skia/web/JsiSkNativeBufferFactory.js +19 -0
  314. package/lib/commonjs/skia/web/JsiSkNativeBufferFactory.js.map +1 -1
  315. package/lib/commonjs/skia/web/JsiSkPath.js.map +1 -1
  316. package/lib/module/skia/types/NativeBuffer/NativeBufferFactory.d.ts +10 -1
  317. package/lib/module/skia/types/NativeBuffer/NativeBufferFactory.js.map +1 -1
  318. package/lib/module/skia/types/WebGPU.d.ts +153 -0
  319. package/lib/module/skia/types/WebGPU.js +2 -0
  320. package/lib/module/skia/types/WebGPU.js.map +1 -0
  321. package/lib/module/skia/types/index.d.ts +1 -0
  322. package/lib/module/skia/types/index.js +1 -0
  323. package/lib/module/skia/types/index.js.map +1 -1
  324. package/lib/module/skia/web/JsiSkNativeBufferFactory.d.ts +1 -0
  325. package/lib/module/skia/web/JsiSkNativeBufferFactory.js +19 -0
  326. package/lib/module/skia/web/JsiSkNativeBufferFactory.js.map +1 -1
  327. package/lib/module/skia/web/JsiSkPath.js.map +1 -1
  328. package/lib/module/web/LoadSkiaWeb.js +1 -2
  329. package/lib/module/web/LoadSkiaWeb.js.map +1 -1
  330. package/lib/typescript/lib/commonjs/skia/types/WebGPU.d.ts +1 -0
  331. package/lib/typescript/lib/commonjs/skia/web/JsiSkNativeBufferFactory.d.ts +1 -0
  332. package/lib/typescript/lib/module/skia/types/WebGPU.d.ts +1 -0
  333. package/lib/typescript/lib/module/skia/types/index.d.ts +1 -0
  334. package/lib/typescript/lib/module/skia/web/JsiSkNativeBufferFactory.d.ts +1 -0
  335. package/lib/typescript/src/skia/types/NativeBuffer/NativeBufferFactory.d.ts +10 -1
  336. package/lib/typescript/src/skia/types/WebGPU.d.ts +153 -0
  337. package/lib/typescript/src/skia/types/index.d.ts +1 -0
  338. package/lib/typescript/src/skia/web/JsiSkNativeBufferFactory.d.ts +1 -0
  339. package/package.json +18 -15
  340. package/react-native-skia.podspec +59 -7
  341. package/src/skia/types/NativeBuffer/NativeBufferFactory.ts +10 -1
  342. package/src/skia/types/WebGPU.ts +186 -0
  343. package/src/skia/types/index.ts +1 -0
  344. package/src/skia/web/JsiSkNativeBufferFactory.ts +20 -0
  345. package/src/skia/web/JsiSkPath.ts +8 -2
  346. package/scripts/install-libs.js +0 -133
@@ -2,7 +2,7 @@
2
2
  #define VULKAN_VIDEO_CODEC_H265STD_ENCODE_H_ 1
3
3
 
4
4
  /*
5
- ** Copyright 2015-2025 The Khronos Group Inc.
5
+ ** Copyright 2015-2026 The Khronos Group Inc.
6
6
  **
7
7
  ** SPDX-License-Identifier: Apache-2.0
8
8
  */
@@ -12,145 +12,144 @@
12
12
  **
13
13
  */
14
14
 
15
+
15
16
  #ifdef __cplusplus
16
17
  extern "C" {
17
18
  #endif
18
19
 
20
+
21
+
19
22
  // vulkan_video_codec_h265std_encode is a preprocessor guard. Do not pass it to API calls.
20
23
  #define vulkan_video_codec_h265std_encode 1
21
24
  #include "vulkan_video_codec_h265std.h"
22
25
 
23
26
  #define VK_STD_VULKAN_VIDEO_CODEC_H265_ENCODE_API_VERSION_1_0_0 VK_MAKE_VIDEO_STD_VERSION(1, 0, 0)
24
27
 
25
- #define VK_STD_VULKAN_VIDEO_CODEC_H265_ENCODE_SPEC_VERSION \
26
- VK_STD_VULKAN_VIDEO_CODEC_H265_ENCODE_API_VERSION_1_0_0
28
+ #define VK_STD_VULKAN_VIDEO_CODEC_H265_ENCODE_SPEC_VERSION VK_STD_VULKAN_VIDEO_CODEC_H265_ENCODE_API_VERSION_1_0_0
27
29
  #define VK_STD_VULKAN_VIDEO_CODEC_H265_ENCODE_EXTENSION_NAME "VK_STD_vulkan_video_codec_h265_encode"
28
30
  typedef struct StdVideoEncodeH265WeightTableFlags {
29
- uint16_t luma_weight_l0_flag;
30
- uint16_t chroma_weight_l0_flag;
31
- uint16_t luma_weight_l1_flag;
32
- uint16_t chroma_weight_l1_flag;
31
+ uint16_t luma_weight_l0_flag;
32
+ uint16_t chroma_weight_l0_flag;
33
+ uint16_t luma_weight_l1_flag;
34
+ uint16_t chroma_weight_l1_flag;
33
35
  } StdVideoEncodeH265WeightTableFlags;
34
36
 
35
37
  typedef struct StdVideoEncodeH265WeightTable {
36
- StdVideoEncodeH265WeightTableFlags flags;
37
- uint8_t luma_log2_weight_denom;
38
- int8_t delta_chroma_log2_weight_denom;
39
- int8_t delta_luma_weight_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF];
40
- int8_t luma_offset_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF];
41
- int8_t delta_chroma_weight_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF]
42
- [STD_VIDEO_H265_MAX_CHROMA_PLANES];
43
- int8_t delta_chroma_offset_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF]
44
- [STD_VIDEO_H265_MAX_CHROMA_PLANES];
45
- int8_t delta_luma_weight_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF];
46
- int8_t luma_offset_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF];
47
- int8_t delta_chroma_weight_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF]
48
- [STD_VIDEO_H265_MAX_CHROMA_PLANES];
49
- int8_t delta_chroma_offset_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF]
50
- [STD_VIDEO_H265_MAX_CHROMA_PLANES];
38
+ StdVideoEncodeH265WeightTableFlags flags;
39
+ uint8_t luma_log2_weight_denom;
40
+ int8_t delta_chroma_log2_weight_denom;
41
+ int8_t delta_luma_weight_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF];
42
+ int8_t luma_offset_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF];
43
+ int8_t delta_chroma_weight_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF][STD_VIDEO_H265_MAX_CHROMA_PLANES];
44
+ int8_t delta_chroma_offset_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF][STD_VIDEO_H265_MAX_CHROMA_PLANES];
45
+ int8_t delta_luma_weight_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF];
46
+ int8_t luma_offset_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF];
47
+ int8_t delta_chroma_weight_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF][STD_VIDEO_H265_MAX_CHROMA_PLANES];
48
+ int8_t delta_chroma_offset_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF][STD_VIDEO_H265_MAX_CHROMA_PLANES];
51
49
  } StdVideoEncodeH265WeightTable;
52
50
 
53
51
  typedef struct StdVideoEncodeH265SliceSegmentHeaderFlags {
54
- uint32_t first_slice_segment_in_pic_flag : 1;
55
- uint32_t dependent_slice_segment_flag : 1;
56
- uint32_t slice_sao_luma_flag : 1;
57
- uint32_t slice_sao_chroma_flag : 1;
58
- uint32_t num_ref_idx_active_override_flag : 1;
59
- uint32_t mvd_l1_zero_flag : 1;
60
- uint32_t cabac_init_flag : 1;
61
- uint32_t cu_chroma_qp_offset_enabled_flag : 1;
62
- uint32_t deblocking_filter_override_flag : 1;
63
- uint32_t slice_deblocking_filter_disabled_flag : 1;
64
- uint32_t collocated_from_l0_flag : 1;
65
- uint32_t slice_loop_filter_across_slices_enabled_flag : 1;
66
- uint32_t reserved : 20;
52
+ uint32_t first_slice_segment_in_pic_flag : 1;
53
+ uint32_t dependent_slice_segment_flag : 1;
54
+ uint32_t slice_sao_luma_flag : 1;
55
+ uint32_t slice_sao_chroma_flag : 1;
56
+ uint32_t num_ref_idx_active_override_flag : 1;
57
+ uint32_t mvd_l1_zero_flag : 1;
58
+ uint32_t cabac_init_flag : 1;
59
+ uint32_t cu_chroma_qp_offset_enabled_flag : 1;
60
+ uint32_t deblocking_filter_override_flag : 1;
61
+ uint32_t slice_deblocking_filter_disabled_flag : 1;
62
+ uint32_t collocated_from_l0_flag : 1;
63
+ uint32_t slice_loop_filter_across_slices_enabled_flag : 1;
64
+ uint32_t reserved : 20;
67
65
  } StdVideoEncodeH265SliceSegmentHeaderFlags;
68
66
 
69
67
  typedef struct StdVideoEncodeH265SliceSegmentHeader {
70
- StdVideoEncodeH265SliceSegmentHeaderFlags flags;
71
- StdVideoH265SliceType slice_type;
72
- uint32_t slice_segment_address;
73
- uint8_t collocated_ref_idx;
74
- uint8_t MaxNumMergeCand;
75
- int8_t slice_cb_qp_offset;
76
- int8_t slice_cr_qp_offset;
77
- int8_t slice_beta_offset_div2;
78
- int8_t slice_tc_offset_div2;
79
- int8_t slice_act_y_qp_offset;
80
- int8_t slice_act_cb_qp_offset;
81
- int8_t slice_act_cr_qp_offset;
82
- int8_t slice_qp_delta;
83
- uint16_t reserved1;
84
- const StdVideoEncodeH265WeightTable* pWeightTable;
68
+ StdVideoEncodeH265SliceSegmentHeaderFlags flags;
69
+ StdVideoH265SliceType slice_type;
70
+ uint32_t slice_segment_address;
71
+ uint8_t collocated_ref_idx;
72
+ uint8_t MaxNumMergeCand;
73
+ int8_t slice_cb_qp_offset;
74
+ int8_t slice_cr_qp_offset;
75
+ int8_t slice_beta_offset_div2;
76
+ int8_t slice_tc_offset_div2;
77
+ int8_t slice_act_y_qp_offset;
78
+ int8_t slice_act_cb_qp_offset;
79
+ int8_t slice_act_cr_qp_offset;
80
+ int8_t slice_qp_delta;
81
+ uint16_t reserved1;
82
+ const StdVideoEncodeH265WeightTable* pWeightTable;
85
83
  } StdVideoEncodeH265SliceSegmentHeader;
86
84
 
87
85
  typedef struct StdVideoEncodeH265ReferenceListsInfoFlags {
88
- uint32_t ref_pic_list_modification_flag_l0 : 1;
89
- uint32_t ref_pic_list_modification_flag_l1 : 1;
90
- uint32_t reserved : 30;
86
+ uint32_t ref_pic_list_modification_flag_l0 : 1;
87
+ uint32_t ref_pic_list_modification_flag_l1 : 1;
88
+ uint32_t reserved : 30;
91
89
  } StdVideoEncodeH265ReferenceListsInfoFlags;
92
90
 
93
91
  typedef struct StdVideoEncodeH265ReferenceListsInfo {
94
- StdVideoEncodeH265ReferenceListsInfoFlags flags;
95
- uint8_t num_ref_idx_l0_active_minus1;
96
- uint8_t num_ref_idx_l1_active_minus1;
97
- uint8_t RefPicList0[STD_VIDEO_H265_MAX_NUM_LIST_REF];
98
- uint8_t RefPicList1[STD_VIDEO_H265_MAX_NUM_LIST_REF];
99
- uint8_t list_entry_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF];
100
- uint8_t list_entry_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF];
92
+ StdVideoEncodeH265ReferenceListsInfoFlags flags;
93
+ uint8_t num_ref_idx_l0_active_minus1;
94
+ uint8_t num_ref_idx_l1_active_minus1;
95
+ uint8_t RefPicList0[STD_VIDEO_H265_MAX_NUM_LIST_REF];
96
+ uint8_t RefPicList1[STD_VIDEO_H265_MAX_NUM_LIST_REF];
97
+ uint8_t list_entry_l0[STD_VIDEO_H265_MAX_NUM_LIST_REF];
98
+ uint8_t list_entry_l1[STD_VIDEO_H265_MAX_NUM_LIST_REF];
101
99
  } StdVideoEncodeH265ReferenceListsInfo;
102
100
 
103
101
  typedef struct StdVideoEncodeH265PictureInfoFlags {
104
- uint32_t is_reference : 1;
105
- uint32_t IrapPicFlag : 1;
106
- uint32_t used_for_long_term_reference : 1;
107
- uint32_t discardable_flag : 1;
108
- uint32_t cross_layer_bla_flag : 1;
109
- uint32_t pic_output_flag : 1;
110
- uint32_t no_output_of_prior_pics_flag : 1;
111
- uint32_t short_term_ref_pic_set_sps_flag : 1;
112
- uint32_t slice_temporal_mvp_enabled_flag : 1;
113
- uint32_t reserved : 23;
102
+ uint32_t is_reference : 1;
103
+ uint32_t IrapPicFlag : 1;
104
+ uint32_t used_for_long_term_reference : 1;
105
+ uint32_t discardable_flag : 1;
106
+ uint32_t cross_layer_bla_flag : 1;
107
+ uint32_t pic_output_flag : 1;
108
+ uint32_t no_output_of_prior_pics_flag : 1;
109
+ uint32_t short_term_ref_pic_set_sps_flag : 1;
110
+ uint32_t slice_temporal_mvp_enabled_flag : 1;
111
+ uint32_t reserved : 23;
114
112
  } StdVideoEncodeH265PictureInfoFlags;
115
113
 
116
114
  typedef struct StdVideoEncodeH265LongTermRefPics {
117
- uint8_t num_long_term_sps;
118
- uint8_t num_long_term_pics;
119
- uint8_t lt_idx_sps[STD_VIDEO_H265_MAX_LONG_TERM_REF_PICS_SPS];
120
- uint8_t poc_lsb_lt[STD_VIDEO_H265_MAX_LONG_TERM_PICS];
121
- uint16_t used_by_curr_pic_lt_flag;
122
- uint8_t delta_poc_msb_present_flag[STD_VIDEO_H265_MAX_DELTA_POC];
123
- uint8_t delta_poc_msb_cycle_lt[STD_VIDEO_H265_MAX_DELTA_POC];
115
+ uint8_t num_long_term_sps;
116
+ uint8_t num_long_term_pics;
117
+ uint8_t lt_idx_sps[STD_VIDEO_H265_MAX_LONG_TERM_REF_PICS_SPS];
118
+ uint8_t poc_lsb_lt[STD_VIDEO_H265_MAX_LONG_TERM_PICS];
119
+ uint16_t used_by_curr_pic_lt_flag;
120
+ uint8_t delta_poc_msb_present_flag[STD_VIDEO_H265_MAX_DELTA_POC];
121
+ uint8_t delta_poc_msb_cycle_lt[STD_VIDEO_H265_MAX_DELTA_POC];
124
122
  } StdVideoEncodeH265LongTermRefPics;
125
123
 
126
124
  typedef struct StdVideoEncodeH265PictureInfo {
127
- StdVideoEncodeH265PictureInfoFlags flags;
128
- StdVideoH265PictureType pic_type;
129
- uint8_t sps_video_parameter_set_id;
130
- uint8_t pps_seq_parameter_set_id;
131
- uint8_t pps_pic_parameter_set_id;
132
- uint8_t short_term_ref_pic_set_idx;
133
- int32_t PicOrderCntVal;
134
- uint8_t TemporalId;
135
- uint8_t reserved1[7];
136
- const StdVideoEncodeH265ReferenceListsInfo* pRefLists;
137
- const StdVideoH265ShortTermRefPicSet* pShortTermRefPicSet;
138
- const StdVideoEncodeH265LongTermRefPics* pLongTermRefPics;
125
+ StdVideoEncodeH265PictureInfoFlags flags;
126
+ StdVideoH265PictureType pic_type;
127
+ uint8_t sps_video_parameter_set_id;
128
+ uint8_t pps_seq_parameter_set_id;
129
+ uint8_t pps_pic_parameter_set_id;
130
+ uint8_t short_term_ref_pic_set_idx;
131
+ int32_t PicOrderCntVal;
132
+ uint8_t TemporalId;
133
+ uint8_t reserved1[7];
134
+ const StdVideoEncodeH265ReferenceListsInfo* pRefLists;
135
+ const StdVideoH265ShortTermRefPicSet* pShortTermRefPicSet;
136
+ const StdVideoEncodeH265LongTermRefPics* pLongTermRefPics;
139
137
  } StdVideoEncodeH265PictureInfo;
140
138
 
141
139
  typedef struct StdVideoEncodeH265ReferenceInfoFlags {
142
- uint32_t used_for_long_term_reference : 1;
143
- uint32_t unused_for_reference : 1;
144
- uint32_t reserved : 30;
140
+ uint32_t used_for_long_term_reference : 1;
141
+ uint32_t unused_for_reference : 1;
142
+ uint32_t reserved : 30;
145
143
  } StdVideoEncodeH265ReferenceInfoFlags;
146
144
 
147
145
  typedef struct StdVideoEncodeH265ReferenceInfo {
148
- StdVideoEncodeH265ReferenceInfoFlags flags;
149
- StdVideoH265PictureType pic_type;
150
- int32_t PicOrderCntVal;
151
- uint8_t TemporalId;
146
+ StdVideoEncodeH265ReferenceInfoFlags flags;
147
+ StdVideoH265PictureType pic_type;
148
+ int32_t PicOrderCntVal;
149
+ uint8_t TemporalId;
152
150
  } StdVideoEncodeH265ReferenceInfo;
153
151
 
152
+
154
153
  #ifdef __cplusplus
155
154
  }
156
155
  #endif
@@ -0,0 +1,151 @@
1
+ #ifndef VULKAN_VIDEO_CODEC_VP9STD_H_
2
+ #define VULKAN_VIDEO_CODEC_VP9STD_H_ 1
3
+
4
+ /*
5
+ ** Copyright 2015-2026 The Khronos Group Inc.
6
+ **
7
+ ** SPDX-License-Identifier: Apache-2.0
8
+ */
9
+
10
+ /*
11
+ ** This header is generated from the Khronos Vulkan XML API Registry.
12
+ **
13
+ */
14
+
15
+
16
+ #ifdef __cplusplus
17
+ extern "C" {
18
+ #endif
19
+
20
+
21
+
22
+ // vulkan_video_codec_vp9std is a preprocessor guard. Do not pass it to API calls.
23
+ #define vulkan_video_codec_vp9std 1
24
+ #include "vulkan_video_codecs_common.h"
25
+ #define STD_VIDEO_VP9_NUM_REF_FRAMES 8U
26
+ #define STD_VIDEO_VP9_REFS_PER_FRAME 3U
27
+ #define STD_VIDEO_VP9_MAX_REF_FRAMES 4U
28
+ #define STD_VIDEO_VP9_LOOP_FILTER_ADJUSTMENTS 2U
29
+ #define STD_VIDEO_VP9_MAX_SEGMENTS 8U
30
+ #define STD_VIDEO_VP9_SEG_LVL_MAX 4U
31
+ #define STD_VIDEO_VP9_MAX_SEGMENTATION_TREE_PROBS 7U
32
+ #define STD_VIDEO_VP9_MAX_SEGMENTATION_PRED_PROB 3U
33
+
34
+ typedef enum StdVideoVP9Profile {
35
+ STD_VIDEO_VP9_PROFILE_0 = 0,
36
+ STD_VIDEO_VP9_PROFILE_1 = 1,
37
+ STD_VIDEO_VP9_PROFILE_2 = 2,
38
+ STD_VIDEO_VP9_PROFILE_3 = 3,
39
+ STD_VIDEO_VP9_PROFILE_INVALID = 0x7FFFFFFF,
40
+ STD_VIDEO_VP9_PROFILE_MAX_ENUM = 0x7FFFFFFF
41
+ } StdVideoVP9Profile;
42
+
43
+ typedef enum StdVideoVP9Level {
44
+ STD_VIDEO_VP9_LEVEL_1_0 = 0,
45
+ STD_VIDEO_VP9_LEVEL_1_1 = 1,
46
+ STD_VIDEO_VP9_LEVEL_2_0 = 2,
47
+ STD_VIDEO_VP9_LEVEL_2_1 = 3,
48
+ STD_VIDEO_VP9_LEVEL_3_0 = 4,
49
+ STD_VIDEO_VP9_LEVEL_3_1 = 5,
50
+ STD_VIDEO_VP9_LEVEL_4_0 = 6,
51
+ STD_VIDEO_VP9_LEVEL_4_1 = 7,
52
+ STD_VIDEO_VP9_LEVEL_5_0 = 8,
53
+ STD_VIDEO_VP9_LEVEL_5_1 = 9,
54
+ STD_VIDEO_VP9_LEVEL_5_2 = 10,
55
+ STD_VIDEO_VP9_LEVEL_6_0 = 11,
56
+ STD_VIDEO_VP9_LEVEL_6_1 = 12,
57
+ STD_VIDEO_VP9_LEVEL_6_2 = 13,
58
+ STD_VIDEO_VP9_LEVEL_INVALID = 0x7FFFFFFF,
59
+ STD_VIDEO_VP9_LEVEL_MAX_ENUM = 0x7FFFFFFF
60
+ } StdVideoVP9Level;
61
+
62
+ typedef enum StdVideoVP9FrameType {
63
+ STD_VIDEO_VP9_FRAME_TYPE_KEY = 0,
64
+ STD_VIDEO_VP9_FRAME_TYPE_NON_KEY = 1,
65
+ STD_VIDEO_VP9_FRAME_TYPE_INVALID = 0x7FFFFFFF,
66
+ STD_VIDEO_VP9_FRAME_TYPE_MAX_ENUM = 0x7FFFFFFF
67
+ } StdVideoVP9FrameType;
68
+
69
+ typedef enum StdVideoVP9ReferenceName {
70
+ STD_VIDEO_VP9_REFERENCE_NAME_INTRA_FRAME = 0,
71
+ STD_VIDEO_VP9_REFERENCE_NAME_LAST_FRAME = 1,
72
+ STD_VIDEO_VP9_REFERENCE_NAME_GOLDEN_FRAME = 2,
73
+ STD_VIDEO_VP9_REFERENCE_NAME_ALTREF_FRAME = 3,
74
+ STD_VIDEO_VP9_REFERENCE_NAME_INVALID = 0x7FFFFFFF,
75
+ STD_VIDEO_VP9_REFERENCE_NAME_MAX_ENUM = 0x7FFFFFFF
76
+ } StdVideoVP9ReferenceName;
77
+
78
+ typedef enum StdVideoVP9InterpolationFilter {
79
+ STD_VIDEO_VP9_INTERPOLATION_FILTER_EIGHTTAP = 0,
80
+ STD_VIDEO_VP9_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH = 1,
81
+ STD_VIDEO_VP9_INTERPOLATION_FILTER_EIGHTTAP_SHARP = 2,
82
+ STD_VIDEO_VP9_INTERPOLATION_FILTER_BILINEAR = 3,
83
+ STD_VIDEO_VP9_INTERPOLATION_FILTER_SWITCHABLE = 4,
84
+ STD_VIDEO_VP9_INTERPOLATION_FILTER_INVALID = 0x7FFFFFFF,
85
+ STD_VIDEO_VP9_INTERPOLATION_FILTER_MAX_ENUM = 0x7FFFFFFF
86
+ } StdVideoVP9InterpolationFilter;
87
+
88
+ typedef enum StdVideoVP9ColorSpace {
89
+ STD_VIDEO_VP9_COLOR_SPACE_UNKNOWN = 0,
90
+ STD_VIDEO_VP9_COLOR_SPACE_BT_601 = 1,
91
+ STD_VIDEO_VP9_COLOR_SPACE_BT_709 = 2,
92
+ STD_VIDEO_VP9_COLOR_SPACE_SMPTE_170 = 3,
93
+ STD_VIDEO_VP9_COLOR_SPACE_SMPTE_240 = 4,
94
+ STD_VIDEO_VP9_COLOR_SPACE_BT_2020 = 5,
95
+ STD_VIDEO_VP9_COLOR_SPACE_RESERVED = 6,
96
+ STD_VIDEO_VP9_COLOR_SPACE_RGB = 7,
97
+ STD_VIDEO_VP9_COLOR_SPACE_INVALID = 0x7FFFFFFF,
98
+ STD_VIDEO_VP9_COLOR_SPACE_MAX_ENUM = 0x7FFFFFFF
99
+ } StdVideoVP9ColorSpace;
100
+ typedef struct StdVideoVP9ColorConfigFlags {
101
+ uint32_t color_range : 1;
102
+ uint32_t reserved : 31;
103
+ } StdVideoVP9ColorConfigFlags;
104
+
105
+ typedef struct StdVideoVP9ColorConfig {
106
+ StdVideoVP9ColorConfigFlags flags;
107
+ uint8_t BitDepth;
108
+ uint8_t subsampling_x;
109
+ uint8_t subsampling_y;
110
+ uint8_t reserved1;
111
+ StdVideoVP9ColorSpace color_space;
112
+ } StdVideoVP9ColorConfig;
113
+
114
+ typedef struct StdVideoVP9LoopFilterFlags {
115
+ uint32_t loop_filter_delta_enabled : 1;
116
+ uint32_t loop_filter_delta_update : 1;
117
+ uint32_t reserved : 30;
118
+ } StdVideoVP9LoopFilterFlags;
119
+
120
+ typedef struct StdVideoVP9LoopFilter {
121
+ StdVideoVP9LoopFilterFlags flags;
122
+ uint8_t loop_filter_level;
123
+ uint8_t loop_filter_sharpness;
124
+ uint8_t update_ref_delta;
125
+ int8_t loop_filter_ref_deltas[STD_VIDEO_VP9_MAX_REF_FRAMES];
126
+ uint8_t update_mode_delta;
127
+ int8_t loop_filter_mode_deltas[STD_VIDEO_VP9_LOOP_FILTER_ADJUSTMENTS];
128
+ } StdVideoVP9LoopFilter;
129
+
130
+ typedef struct StdVideoVP9SegmentationFlags {
131
+ uint32_t segmentation_update_map : 1;
132
+ uint32_t segmentation_temporal_update : 1;
133
+ uint32_t segmentation_update_data : 1;
134
+ uint32_t segmentation_abs_or_delta_update : 1;
135
+ uint32_t reserved : 28;
136
+ } StdVideoVP9SegmentationFlags;
137
+
138
+ typedef struct StdVideoVP9Segmentation {
139
+ StdVideoVP9SegmentationFlags flags;
140
+ uint8_t segmentation_tree_probs[STD_VIDEO_VP9_MAX_SEGMENTATION_TREE_PROBS];
141
+ uint8_t segmentation_pred_prob[STD_VIDEO_VP9_MAX_SEGMENTATION_PRED_PROB];
142
+ uint8_t FeatureEnabled[STD_VIDEO_VP9_MAX_SEGMENTS];
143
+ int16_t FeatureData[STD_VIDEO_VP9_MAX_SEGMENTS][STD_VIDEO_VP9_SEG_LVL_MAX];
144
+ } StdVideoVP9Segmentation;
145
+
146
+
147
+ #ifdef __cplusplus
148
+ }
149
+ #endif
150
+
151
+ #endif
@@ -0,0 +1,68 @@
1
+ #ifndef VULKAN_VIDEO_CODEC_VP9STD_DECODE_H_
2
+ #define VULKAN_VIDEO_CODEC_VP9STD_DECODE_H_ 1
3
+
4
+ /*
5
+ ** Copyright 2015-2026 The Khronos Group Inc.
6
+ **
7
+ ** SPDX-License-Identifier: Apache-2.0
8
+ */
9
+
10
+ /*
11
+ ** This header is generated from the Khronos Vulkan XML API Registry.
12
+ **
13
+ */
14
+
15
+
16
+ #ifdef __cplusplus
17
+ extern "C" {
18
+ #endif
19
+
20
+
21
+
22
+ // vulkan_video_codec_vp9std_decode is a preprocessor guard. Do not pass it to API calls.
23
+ #define vulkan_video_codec_vp9std_decode 1
24
+ #include "vulkan_video_codec_vp9std.h"
25
+
26
+ #define VK_STD_VULKAN_VIDEO_CODEC_VP9_DECODE_API_VERSION_1_0_0 VK_MAKE_VIDEO_STD_VERSION(1, 0, 0)
27
+
28
+ #define VK_STD_VULKAN_VIDEO_CODEC_VP9_DECODE_SPEC_VERSION VK_STD_VULKAN_VIDEO_CODEC_VP9_DECODE_API_VERSION_1_0_0
29
+ #define VK_STD_VULKAN_VIDEO_CODEC_VP9_DECODE_EXTENSION_NAME "VK_STD_vulkan_video_codec_vp9_decode"
30
+ typedef struct StdVideoDecodeVP9PictureInfoFlags {
31
+ uint32_t error_resilient_mode : 1;
32
+ uint32_t intra_only : 1;
33
+ uint32_t allow_high_precision_mv : 1;
34
+ uint32_t refresh_frame_context : 1;
35
+ uint32_t frame_parallel_decoding_mode : 1;
36
+ uint32_t segmentation_enabled : 1;
37
+ uint32_t show_frame : 1;
38
+ uint32_t UsePrevFrameMvs : 1;
39
+ uint32_t reserved : 24;
40
+ } StdVideoDecodeVP9PictureInfoFlags;
41
+
42
+ typedef struct StdVideoDecodeVP9PictureInfo {
43
+ StdVideoDecodeVP9PictureInfoFlags flags;
44
+ StdVideoVP9Profile profile;
45
+ StdVideoVP9FrameType frame_type;
46
+ uint8_t frame_context_idx;
47
+ uint8_t reset_frame_context;
48
+ uint8_t refresh_frame_flags;
49
+ uint8_t ref_frame_sign_bias_mask;
50
+ StdVideoVP9InterpolationFilter interpolation_filter;
51
+ uint8_t base_q_idx;
52
+ int8_t delta_q_y_dc;
53
+ int8_t delta_q_uv_dc;
54
+ int8_t delta_q_uv_ac;
55
+ uint8_t tile_cols_log2;
56
+ uint8_t tile_rows_log2;
57
+ uint16_t reserved1[3];
58
+ const StdVideoVP9ColorConfig* pColorConfig;
59
+ const StdVideoVP9LoopFilter* pLoopFilter;
60
+ const StdVideoVP9Segmentation* pSegmentation;
61
+ } StdVideoDecodeVP9PictureInfo;
62
+
63
+
64
+ #ifdef __cplusplus
65
+ }
66
+ #endif
67
+
68
+ #endif
@@ -2,7 +2,7 @@
2
2
  #define VULKAN_VIDEO_CODECS_COMMON_H_ 1
3
3
 
4
4
  /*
5
- ** Copyright 2015-2025 The Khronos Group Inc.
5
+ ** Copyright 2015-2026 The Khronos Group Inc.
6
6
  **
7
7
  ** SPDX-License-Identifier: Apache-2.0
8
8
  */
@@ -2,7 +2,7 @@
2
2
  #define VULKAN_H_ 1
3
3
 
4
4
  /*
5
- ** Copyright 2015-2025 The Khronos Group Inc.
5
+ ** Copyright 2015-2026 The Khronos Group Inc.
6
6
  **
7
7
  ** SPDX-License-Identifier: Apache-2.0
8
8
  */
@@ -96,4 +96,8 @@
96
96
  #include "vulkan_beta.h"
97
97
  #endif
98
98
 
99
+ #ifdef VK_USE_PLATFORM_OHOS
100
+ #include "vulkan_ohos.h"
101
+ #endif
102
+
99
103
  #endif // VULKAN_H_
@@ -2,7 +2,7 @@
2
2
  #define VULKAN_ANDROID_H_ 1
3
3
 
4
4
  /*
5
- ** Copyright 2015-2025 The Khronos Group Inc.
5
+ ** Copyright 2015-2026 The Khronos Group Inc.
6
6
  **
7
7
  ** SPDX-License-Identifier: Apache-2.0
8
8
  */
@@ -35,12 +35,14 @@ typedef struct VkAndroidSurfaceCreateInfoKHR {
35
35
  typedef VkResult (VKAPI_PTR *PFN_vkCreateAndroidSurfaceKHR)(VkInstance instance, const VkAndroidSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
36
36
 
37
37
  #ifndef VK_NO_PROTOTYPES
38
+ #ifndef VK_ONLY_EXPORTED_PROTOTYPES
38
39
  VKAPI_ATTR VkResult VKAPI_CALL vkCreateAndroidSurfaceKHR(
39
40
  VkInstance instance,
40
41
  const VkAndroidSurfaceCreateInfoKHR* pCreateInfo,
41
42
  const VkAllocationCallbacks* pAllocator,
42
43
  VkSurfaceKHR* pSurface);
43
44
  #endif
45
+ #endif
44
46
 
45
47
 
46
48
  // VK_ANDROID_external_memory_android_hardware_buffer is a preprocessor guard. Do not pass it to API calls.
@@ -109,16 +111,20 @@ typedef VkResult (VKAPI_PTR *PFN_vkGetAndroidHardwareBufferPropertiesANDROID)(Vk
109
111
  typedef VkResult (VKAPI_PTR *PFN_vkGetMemoryAndroidHardwareBufferANDROID)(VkDevice device, const VkMemoryGetAndroidHardwareBufferInfoANDROID* pInfo, struct AHardwareBuffer** pBuffer);
110
112
 
111
113
  #ifndef VK_NO_PROTOTYPES
114
+ #ifndef VK_ONLY_EXPORTED_PROTOTYPES
112
115
  VKAPI_ATTR VkResult VKAPI_CALL vkGetAndroidHardwareBufferPropertiesANDROID(
113
116
  VkDevice device,
114
117
  const struct AHardwareBuffer* buffer,
115
118
  VkAndroidHardwareBufferPropertiesANDROID* pProperties);
119
+ #endif
116
120
 
121
+ #ifndef VK_ONLY_EXPORTED_PROTOTYPES
117
122
  VKAPI_ATTR VkResult VKAPI_CALL vkGetMemoryAndroidHardwareBufferANDROID(
118
123
  VkDevice device,
119
124
  const VkMemoryGetAndroidHardwareBufferInfoANDROID* pInfo,
120
125
  struct AHardwareBuffer** pBuffer);
121
126
  #endif
127
+ #endif
122
128
 
123
129
 
124
130
  // VK_ANDROID_external_format_resolve is a preprocessor guard. Do not pass it to API calls.