@shopify/react-native-skia 0.0.135

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 (2190) hide show
  1. package/LICENSE.md +7 -0
  2. package/README.md +52 -0
  3. package/android/CMakeLists.txt +151 -0
  4. package/android/README.md +14 -0
  5. package/android/build.gradle +258 -0
  6. package/android/cpp/jni/JniLoad.cpp +13 -0
  7. package/android/cpp/jni/JniPlatformContext.cpp +142 -0
  8. package/android/cpp/jni/JniSkiaDrawView.cpp +113 -0
  9. package/android/cpp/jni/JniSkiaManager.cpp +57 -0
  10. package/android/cpp/jni/include/JniPlatformContext.h +75 -0
  11. package/android/cpp/jni/include/JniSkiaDrawView.h +78 -0
  12. package/android/cpp/jni/include/JniSkiaManager.h +81 -0
  13. package/android/cpp/rnskia-android/RNSkDrawViewImpl.cpp +73 -0
  14. package/android/cpp/rnskia-android/RNSkDrawViewImpl.h +48 -0
  15. package/android/cpp/rnskia-android/RNSkPlatformContextImpl.h +54 -0
  16. package/android/cpp/rnskia-android/SkiaOpenGLRenderer.cpp +325 -0
  17. package/android/cpp/rnskia-android/SkiaOpenGLRenderer.h +131 -0
  18. package/android/src/main/AndroidManifest.xml +6 -0
  19. package/android/src/main/java/com/shopify/reactnative/skia/PlatformContext.java +181 -0
  20. package/android/src/main/java/com/shopify/reactnative/skia/RNSkiaModule.java +88 -0
  21. package/android/src/main/java/com/shopify/reactnative/skia/RNSkiaPackage.java +24 -0
  22. package/android/src/main/java/com/shopify/reactnative/skia/RNSkiaViewManager.java +72 -0
  23. package/android/src/main/java/com/shopify/reactnative/skia/SkiaDrawView.java +131 -0
  24. package/android/src/main/java/com/shopify/reactnative/skia/SkiaManager.java +66 -0
  25. package/cpp/api/JsiSkApi.h +105 -0
  26. package/cpp/api/JsiSkCanvas.h +540 -0
  27. package/cpp/api/JsiSkColor.h +83 -0
  28. package/cpp/api/JsiSkColorFilter.h +43 -0
  29. package/cpp/api/JsiSkColorFilterFactory.h +99 -0
  30. package/cpp/api/JsiSkContourMeasure.h +102 -0
  31. package/cpp/api/JsiSkContourMeasureIter.h +90 -0
  32. package/cpp/api/JsiSkData.h +46 -0
  33. package/cpp/api/JsiSkDataFactory.h +92 -0
  34. package/cpp/api/JsiSkFont.h +354 -0
  35. package/cpp/api/JsiSkFontMgr.h +84 -0
  36. package/cpp/api/JsiSkFontMgrFactory.h +48 -0
  37. package/cpp/api/JsiSkHostObjects.h +83 -0
  38. package/cpp/api/JsiSkImage.h +124 -0
  39. package/cpp/api/JsiSkImageFactory.h +50 -0
  40. package/cpp/api/JsiSkImageFilter.h +45 -0
  41. package/cpp/api/JsiSkImageFilterFactory.h +237 -0
  42. package/cpp/api/JsiSkImageInfo.h +57 -0
  43. package/cpp/api/JsiSkMaskFilter.h +45 -0
  44. package/cpp/api/JsiSkMaskFilterFactory.h +42 -0
  45. package/cpp/api/JsiSkMatrix.h +119 -0
  46. package/cpp/api/JsiSkPaint.h +199 -0
  47. package/cpp/api/JsiSkPath.h +592 -0
  48. package/cpp/api/JsiSkPathEffect.h +45 -0
  49. package/cpp/api/JsiSkPathEffectFactory.h +123 -0
  50. package/cpp/api/JsiSkPathFactory.h +172 -0
  51. package/cpp/api/JsiSkPicture.h +71 -0
  52. package/cpp/api/JsiSkPictureFactory.h +50 -0
  53. package/cpp/api/JsiSkPictureRecorder.h +53 -0
  54. package/cpp/api/JsiSkPoint.h +81 -0
  55. package/cpp/api/JsiSkRRect.h +93 -0
  56. package/cpp/api/JsiSkRSXform.h +105 -0
  57. package/cpp/api/JsiSkRect.h +119 -0
  58. package/cpp/api/JsiSkRuntimeEffect.h +222 -0
  59. package/cpp/api/JsiSkRuntimeEffectFactory.h +42 -0
  60. package/cpp/api/JsiSkRuntimeShaderBuilder.h +88 -0
  61. package/cpp/api/JsiSkSVG.h +43 -0
  62. package/cpp/api/JsiSkSVGFactory.h +48 -0
  63. package/cpp/api/JsiSkShader.h +45 -0
  64. package/cpp/api/JsiSkShaderFactory.h +214 -0
  65. package/cpp/api/JsiSkSurface.h +67 -0
  66. package/cpp/api/JsiSkSurfaceFactory.h +44 -0
  67. package/cpp/api/JsiSkTextBlob.h +50 -0
  68. package/cpp/api/JsiSkTextBlobFactory.h +109 -0
  69. package/cpp/api/JsiSkTypeface.h +85 -0
  70. package/cpp/api/JsiSkTypefaceFactory.h +34 -0
  71. package/cpp/api/JsiSkVertices.h +145 -0
  72. package/cpp/api/third_party/CSSColorParser.cpp +194 -0
  73. package/cpp/api/third_party/CSSColorParser.h +134 -0
  74. package/cpp/jsi/JsiHostObject.cpp +154 -0
  75. package/cpp/jsi/JsiHostObject.h +241 -0
  76. package/cpp/jsi/JsiSimpleValueWrapper.h +108 -0
  77. package/cpp/rnskia/RNSkAnimation.h +68 -0
  78. package/cpp/rnskia/RNSkDispatchQueue.cpp +84 -0
  79. package/cpp/rnskia/RNSkDispatchQueue.h +47 -0
  80. package/cpp/rnskia/RNSkDrawView.cpp +291 -0
  81. package/cpp/rnskia/RNSkDrawView.h +212 -0
  82. package/cpp/rnskia/RNSkInfoParameter.h +102 -0
  83. package/cpp/rnskia/RNSkJsiViewApi.h +308 -0
  84. package/cpp/rnskia/RNSkManager.cpp +81 -0
  85. package/cpp/rnskia/RNSkManager.h +81 -0
  86. package/cpp/rnskia/RNSkPlatformContext.h +196 -0
  87. package/cpp/rnskia/RNSkValueApi.h +73 -0
  88. package/cpp/rnskia/values/RNSkClockValue.h +141 -0
  89. package/cpp/rnskia/values/RNSkComputedValue.h +99 -0
  90. package/cpp/rnskia/values/RNSkReadonlyValue.h +142 -0
  91. package/cpp/rnskia/values/RNSkValue.h +117 -0
  92. package/cpp/skia/include/android/SkAndroidFrameworkUtils.h +61 -0
  93. package/cpp/skia/include/android/SkAnimatedImage.h +179 -0
  94. package/cpp/skia/include/c/sk_canvas.h +159 -0
  95. package/cpp/skia/include/c/sk_colorspace.h +25 -0
  96. package/cpp/skia/include/c/sk_data.h +65 -0
  97. package/cpp/skia/include/c/sk_image.h +71 -0
  98. package/cpp/skia/include/c/sk_imageinfo.h +62 -0
  99. package/cpp/skia/include/c/sk_maskfilter.h +47 -0
  100. package/cpp/skia/include/c/sk_matrix.h +49 -0
  101. package/cpp/skia/include/c/sk_paint.h +145 -0
  102. package/cpp/skia/include/c/sk_path.h +102 -0
  103. package/cpp/skia/include/c/sk_picture.h +70 -0
  104. package/cpp/skia/include/c/sk_shader.h +143 -0
  105. package/cpp/skia/include/c/sk_surface.h +73 -0
  106. package/cpp/skia/include/c/sk_types.h +278 -0
  107. package/cpp/skia/include/codec/SkAndroidCodec.h +263 -0
  108. package/cpp/skia/include/codec/SkCodec.h +998 -0
  109. package/cpp/skia/include/codec/SkCodecAnimation.h +61 -0
  110. package/cpp/skia/include/codec/SkEncodedOrigin.h +54 -0
  111. package/cpp/skia/include/config/SkUserConfig.h +89 -0
  112. package/cpp/skia/include/core/SkAlphaType.h +45 -0
  113. package/cpp/skia/include/core/SkAnnotation.h +50 -0
  114. package/cpp/skia/include/core/SkBBHFactory.h +63 -0
  115. package/cpp/skia/include/core/SkBitmap.h +1214 -0
  116. package/cpp/skia/include/core/SkBlendMode.h +110 -0
  117. package/cpp/skia/include/core/SkBlender.h +33 -0
  118. package/cpp/skia/include/core/SkBlurTypes.h +22 -0
  119. package/cpp/skia/include/core/SkCanvas.h +2594 -0
  120. package/cpp/skia/include/core/SkCanvasVirtualEnforcer.h +61 -0
  121. package/cpp/skia/include/core/SkClipOp.h +19 -0
  122. package/cpp/skia/include/core/SkColor.h +438 -0
  123. package/cpp/skia/include/core/SkColorFilter.h +91 -0
  124. package/cpp/skia/include/core/SkColorPriv.h +152 -0
  125. package/cpp/skia/include/core/SkColorSpace.h +245 -0
  126. package/cpp/skia/include/core/SkColorType.h +66 -0
  127. package/cpp/skia/include/core/SkContourMeasure.h +131 -0
  128. package/cpp/skia/include/core/SkCoverageMode.h +30 -0
  129. package/cpp/skia/include/core/SkCubicMap.h +45 -0
  130. package/cpp/skia/include/core/SkData.h +188 -0
  131. package/cpp/skia/include/core/SkDataTable.h +118 -0
  132. package/cpp/skia/include/core/SkDeferredDisplayList.h +110 -0
  133. package/cpp/skia/include/core/SkDeferredDisplayListRecorder.h +97 -0
  134. package/cpp/skia/include/core/SkDocument.h +91 -0
  135. package/cpp/skia/include/core/SkDrawLooper.h +135 -0
  136. package/cpp/skia/include/core/SkDrawable.h +167 -0
  137. package/cpp/skia/include/core/SkEncodedImageFormat.h +36 -0
  138. package/cpp/skia/include/core/SkExecutor.h +41 -0
  139. package/cpp/skia/include/core/SkFlattenable.h +113 -0
  140. package/cpp/skia/include/core/SkFont.h +535 -0
  141. package/cpp/skia/include/core/SkFontArguments.h +94 -0
  142. package/cpp/skia/include/core/SkFontMetrics.h +138 -0
  143. package/cpp/skia/include/core/SkFontMgr.h +157 -0
  144. package/cpp/skia/include/core/SkFontParameters.h +42 -0
  145. package/cpp/skia/include/core/SkFontStyle.h +81 -0
  146. package/cpp/skia/include/core/SkFontTypes.h +25 -0
  147. package/cpp/skia/include/core/SkGraphics.h +166 -0
  148. package/cpp/skia/include/core/SkICC.h +19 -0
  149. package/cpp/skia/include/core/SkImage.h +1347 -0
  150. package/cpp/skia/include/core/SkImageEncoder.h +69 -0
  151. package/cpp/skia/include/core/SkImageFilter.h +114 -0
  152. package/cpp/skia/include/core/SkImageGenerator.h +216 -0
  153. package/cpp/skia/include/core/SkImageInfo.h +614 -0
  154. package/cpp/skia/include/core/SkM44.h +426 -0
  155. package/cpp/skia/include/core/SkMallocPixelRef.h +42 -0
  156. package/cpp/skia/include/core/SkMaskFilter.h +50 -0
  157. package/cpp/skia/include/core/SkMath.h +54 -0
  158. package/cpp/skia/include/core/SkMatrix.h +1986 -0
  159. package/cpp/skia/include/core/SkMesh.h +303 -0
  160. package/cpp/skia/include/core/SkMilestone.h +9 -0
  161. package/cpp/skia/include/core/SkOpenTypeSVGDecoder.h +30 -0
  162. package/cpp/skia/include/core/SkOverdrawCanvas.h +68 -0
  163. package/cpp/skia/include/core/SkPaint.h +705 -0
  164. package/cpp/skia/include/core/SkPath.h +1878 -0
  165. package/cpp/skia/include/core/SkPathBuilder.h +263 -0
  166. package/cpp/skia/include/core/SkPathEffect.h +106 -0
  167. package/cpp/skia/include/core/SkPathMeasure.h +88 -0
  168. package/cpp/skia/include/core/SkPathTypes.h +59 -0
  169. package/cpp/skia/include/core/SkPicture.h +280 -0
  170. package/cpp/skia/include/core/SkPictureRecorder.h +115 -0
  171. package/cpp/skia/include/core/SkPixelRef.h +123 -0
  172. package/cpp/skia/include/core/SkPixmap.h +721 -0
  173. package/cpp/skia/include/core/SkPngChunkReader.h +45 -0
  174. package/cpp/skia/include/core/SkPoint.h +566 -0
  175. package/cpp/skia/include/core/SkPoint3.h +157 -0
  176. package/cpp/skia/include/core/SkPromiseImageTexture.h +46 -0
  177. package/cpp/skia/include/core/SkRRect.h +512 -0
  178. package/cpp/skia/include/core/SkRSXform.h +69 -0
  179. package/cpp/skia/include/core/SkRasterHandleAllocator.h +92 -0
  180. package/cpp/skia/include/core/SkRect.h +1378 -0
  181. package/cpp/skia/include/core/SkRefCnt.h +382 -0
  182. package/cpp/skia/include/core/SkRegion.h +672 -0
  183. package/cpp/skia/include/core/SkSamplingOptions.h +103 -0
  184. package/cpp/skia/include/core/SkScalar.h +194 -0
  185. package/cpp/skia/include/core/SkSerialProcs.h +73 -0
  186. package/cpp/skia/include/core/SkShader.h +148 -0
  187. package/cpp/skia/include/core/SkSize.h +90 -0
  188. package/cpp/skia/include/core/SkSpan.h +89 -0
  189. package/cpp/skia/include/core/SkStream.h +524 -0
  190. package/cpp/skia/include/core/SkString.h +299 -0
  191. package/cpp/skia/include/core/SkStrokeRec.h +154 -0
  192. package/cpp/skia/include/core/SkSurface.h +1100 -0
  193. package/cpp/skia/include/core/SkSurfaceCharacterization.h +263 -0
  194. package/cpp/skia/include/core/SkSurfaceProps.h +92 -0
  195. package/cpp/skia/include/core/SkSwizzle.h +19 -0
  196. package/cpp/skia/include/core/SkTextBlob.h +503 -0
  197. package/cpp/skia/include/core/SkTileMode.h +41 -0
  198. package/cpp/skia/include/core/SkTime.h +63 -0
  199. package/cpp/skia/include/core/SkTraceMemoryDump.h +99 -0
  200. package/cpp/skia/include/core/SkTypeface.h +470 -0
  201. package/cpp/skia/include/core/SkTypes.h +625 -0
  202. package/cpp/skia/include/core/SkUnPreMultiply.h +56 -0
  203. package/cpp/skia/include/core/SkVertices.h +132 -0
  204. package/cpp/skia/include/core/SkYUVAInfo.h +304 -0
  205. package/cpp/skia/include/core/SkYUVAPixmaps.h +336 -0
  206. package/cpp/skia/include/docs/SkPDFDocument.h +196 -0
  207. package/cpp/skia/include/docs/SkXPSDocument.h +27 -0
  208. package/cpp/skia/include/effects/Sk1DPathEffect.h +35 -0
  209. package/cpp/skia/include/effects/Sk2DPathEffect.h +30 -0
  210. package/cpp/skia/include/effects/SkBlenders.h +27 -0
  211. package/cpp/skia/include/effects/SkBlurDrawLooper.h +26 -0
  212. package/cpp/skia/include/effects/SkBlurMaskFilter.h +35 -0
  213. package/cpp/skia/include/effects/SkColorMatrix.h +55 -0
  214. package/cpp/skia/include/effects/SkColorMatrixFilter.h +25 -0
  215. package/cpp/skia/include/effects/SkCornerPathEffect.h +28 -0
  216. package/cpp/skia/include/effects/SkDashPathEffect.h +39 -0
  217. package/cpp/skia/include/effects/SkDiscretePathEffect.h +37 -0
  218. package/cpp/skia/include/effects/SkGradientShader.h +255 -0
  219. package/cpp/skia/include/effects/SkHighContrastFilter.h +80 -0
  220. package/cpp/skia/include/effects/SkImageFilters.h +551 -0
  221. package/cpp/skia/include/effects/SkLayerDrawLooper.h +161 -0
  222. package/cpp/skia/include/effects/SkLumaColorFilter.h +34 -0
  223. package/cpp/skia/include/effects/SkOpPathEffect.h +39 -0
  224. package/cpp/skia/include/effects/SkOverdrawColorFilter.h +29 -0
  225. package/cpp/skia/include/effects/SkPerlinNoiseShader.h +54 -0
  226. package/cpp/skia/include/effects/SkRuntimeEffect.h +522 -0
  227. package/cpp/skia/include/effects/SkShaderMaskFilter.h +24 -0
  228. package/cpp/skia/include/effects/SkStrokeAndFillPathEffect.h +28 -0
  229. package/cpp/skia/include/effects/SkTableColorFilter.h +42 -0
  230. package/cpp/skia/include/effects/SkTableMaskFilter.h +37 -0
  231. package/cpp/skia/include/effects/SkTrimPathEffect.h +41 -0
  232. package/cpp/skia/include/encode/SkEncoder.h +42 -0
  233. package/cpp/skia/include/encode/SkJpegEncoder.h +97 -0
  234. package/cpp/skia/include/encode/SkPngEncoder.h +99 -0
  235. package/cpp/skia/include/encode/SkWebpEncoder.h +48 -0
  236. package/cpp/skia/include/gpu/GpuTypes.h +32 -0
  237. package/cpp/skia/include/gpu/GrBackendDrawableInfo.h +44 -0
  238. package/cpp/skia/include/gpu/GrBackendSemaphore.h +140 -0
  239. package/cpp/skia/include/gpu/GrBackendSurface.h +644 -0
  240. package/cpp/skia/include/gpu/GrBackendSurfaceMutableState.h +91 -0
  241. package/cpp/skia/include/gpu/GrConfig.h +53 -0
  242. package/cpp/skia/include/gpu/GrContextOptions.h +355 -0
  243. package/cpp/skia/include/gpu/GrContextThreadSafeProxy.h +166 -0
  244. package/cpp/skia/include/gpu/GrDirectContext.h +885 -0
  245. package/cpp/skia/include/gpu/GrDriverBugWorkarounds.h +52 -0
  246. package/cpp/skia/include/gpu/GrDriverBugWorkaroundsAutogen.h +43 -0
  247. package/cpp/skia/include/gpu/GrRecordingContext.h +282 -0
  248. package/cpp/skia/include/gpu/GrSurfaceInfo.h +166 -0
  249. package/cpp/skia/include/gpu/GrTypes.h +244 -0
  250. package/cpp/skia/include/gpu/GrYUVABackendTextures.h +124 -0
  251. package/cpp/skia/include/gpu/ShaderErrorHandler.h +36 -0
  252. package/cpp/skia/include/gpu/d3d/GrD3DBackendContext.h +35 -0
  253. package/cpp/skia/include/gpu/d3d/GrD3DTypes.h +248 -0
  254. package/cpp/skia/include/gpu/dawn/GrDawnTypes.h +95 -0
  255. package/cpp/skia/include/gpu/gl/GrGLAssembleHelpers.h +11 -0
  256. package/cpp/skia/include/gpu/gl/GrGLAssembleInterface.h +39 -0
  257. package/cpp/skia/include/gpu/gl/GrGLConfig.h +79 -0
  258. package/cpp/skia/include/gpu/gl/GrGLConfig_chrome.h +14 -0
  259. package/cpp/skia/include/gpu/gl/GrGLExtensions.h +78 -0
  260. package/cpp/skia/include/gpu/gl/GrGLFunctions.h +306 -0
  261. package/cpp/skia/include/gpu/gl/GrGLInterface.h +342 -0
  262. package/cpp/skia/include/gpu/gl/GrGLTypes.h +207 -0
  263. package/cpp/skia/include/gpu/gl/egl/GrGLMakeEGLInterface.h +14 -0
  264. package/cpp/skia/include/gpu/gl/glx/GrGLMakeGLXInterface.h +14 -0
  265. package/cpp/skia/include/gpu/graphite/BackendTexture.h +64 -0
  266. package/cpp/skia/include/gpu/graphite/Context.h +124 -0
  267. package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +71 -0
  268. package/cpp/skia/include/gpu/graphite/Recorder.h +104 -0
  269. package/cpp/skia/include/gpu/graphite/Recording.h +39 -0
  270. package/cpp/skia/include/gpu/graphite/SkStuff.h +47 -0
  271. package/cpp/skia/include/gpu/graphite/TextureInfo.h +91 -0
  272. package/cpp/skia/include/gpu/graphite/mtl/MtlBackendContext.h +24 -0
  273. package/cpp/skia/include/gpu/graphite/mtl/MtlTypes.h +68 -0
  274. package/cpp/skia/include/gpu/mock/GrMockTypes.h +143 -0
  275. package/cpp/skia/include/gpu/mtl/GrMtlBackendContext.h +21 -0
  276. package/cpp/skia/include/gpu/mtl/GrMtlTypes.h +63 -0
  277. package/cpp/skia/include/gpu/vk/GrVkBackendContext.h +76 -0
  278. package/cpp/skia/include/gpu/vk/GrVkExtensions.h +63 -0
  279. package/cpp/skia/include/gpu/vk/GrVkMemoryAllocator.h +140 -0
  280. package/cpp/skia/include/gpu/vk/GrVkTypes.h +187 -0
  281. package/cpp/skia/include/gpu/vk/GrVkVulkan.h +32 -0
  282. package/cpp/skia/include/pathops/SkPathOps.h +113 -0
  283. package/cpp/skia/include/ports/SkCFObject.h +180 -0
  284. package/cpp/skia/include/ports/SkFontConfigInterface.h +115 -0
  285. package/cpp/skia/include/ports/SkFontMgr_FontConfigInterface.h +20 -0
  286. package/cpp/skia/include/ports/SkFontMgr_android.h +45 -0
  287. package/cpp/skia/include/ports/SkFontMgr_directory.h +21 -0
  288. package/cpp/skia/include/ports/SkFontMgr_empty.h +21 -0
  289. package/cpp/skia/include/ports/SkFontMgr_fontconfig.h +22 -0
  290. package/cpp/skia/include/ports/SkFontMgr_fuchsia.h +19 -0
  291. package/cpp/skia/include/ports/SkFontMgr_indirect.h +102 -0
  292. package/cpp/skia/include/ports/SkFontMgr_mac_ct.h +27 -0
  293. package/cpp/skia/include/ports/SkImageGeneratorCG.h +20 -0
  294. package/cpp/skia/include/ports/SkImageGeneratorNDK.h +40 -0
  295. package/cpp/skia/include/ports/SkImageGeneratorWIC.h +35 -0
  296. package/cpp/skia/include/ports/SkRemotableFontMgr.h +139 -0
  297. package/cpp/skia/include/ports/SkTypeface_mac.h +44 -0
  298. package/cpp/skia/include/ports/SkTypeface_win.h +79 -0
  299. package/cpp/skia/include/private/SingleOwner.h +72 -0
  300. package/cpp/skia/include/private/SkBitmaskEnum.h +59 -0
  301. package/cpp/skia/include/private/SkChecksum.h +77 -0
  302. package/cpp/skia/include/private/SkColorData.h +441 -0
  303. package/cpp/skia/include/private/SkDeque.h +141 -0
  304. package/cpp/skia/include/private/SkEncodedInfo.h +266 -0
  305. package/cpp/skia/include/private/SkFixed.h +141 -0
  306. package/cpp/skia/include/private/SkFloatBits.h +91 -0
  307. package/cpp/skia/include/private/SkFloatingPoint.h +219 -0
  308. package/cpp/skia/include/private/SkHalf.h +85 -0
  309. package/cpp/skia/include/private/SkIDChangeListener.h +75 -0
  310. package/cpp/skia/include/private/SkImageInfoPriv.h +199 -0
  311. package/cpp/skia/include/private/SkMacros.h +79 -0
  312. package/cpp/skia/include/private/SkMalloc.h +143 -0
  313. package/cpp/skia/include/private/SkMutex.h +64 -0
  314. package/cpp/skia/include/private/SkNoncopyable.h +30 -0
  315. package/cpp/skia/include/private/SkNx.h +430 -0
  316. package/cpp/skia/include/private/SkNx_neon.h +713 -0
  317. package/cpp/skia/include/private/SkNx_sse.h +823 -0
  318. package/cpp/skia/include/private/SkOnce.h +53 -0
  319. package/cpp/skia/include/private/SkOpts_spi.h +21 -0
  320. package/cpp/skia/include/private/SkPathRef.h +522 -0
  321. package/cpp/skia/include/private/SkSLDefines.h +64 -0
  322. package/cpp/skia/include/private/SkSLIRNode.h +64 -0
  323. package/cpp/skia/include/private/SkSLLayout.h +144 -0
  324. package/cpp/skia/include/private/SkSLModifiers.h +142 -0
  325. package/cpp/skia/include/private/SkSLProgramElement.h +77 -0
  326. package/cpp/skia/include/private/SkSLProgramKind.h +34 -0
  327. package/cpp/skia/include/private/SkSLSampleUsage.h +89 -0
  328. package/cpp/skia/include/private/SkSLStatement.h +86 -0
  329. package/cpp/skia/include/private/SkSLString.h +41 -0
  330. package/cpp/skia/include/private/SkSLSymbol.h +90 -0
  331. package/cpp/skia/include/private/SkSafe32.h +34 -0
  332. package/cpp/skia/include/private/SkSafe_math.h +52 -0
  333. package/cpp/skia/include/private/SkSemaphore.h +83 -0
  334. package/cpp/skia/include/private/SkShadowFlags.h +27 -0
  335. package/cpp/skia/include/private/SkSpinlock.h +57 -0
  336. package/cpp/skia/include/private/SkStringView.h +47 -0
  337. package/cpp/skia/include/private/SkTArray.h +641 -0
  338. package/cpp/skia/include/private/SkTDArray.h +385 -0
  339. package/cpp/skia/include/private/SkTFitsIn.h +99 -0
  340. package/cpp/skia/include/private/SkTHash.h +590 -0
  341. package/cpp/skia/include/private/SkTLogic.h +56 -0
  342. package/cpp/skia/include/private/SkTPin.h +23 -0
  343. package/cpp/skia/include/private/SkTemplates.h +453 -0
  344. package/cpp/skia/include/private/SkThreadAnnotations.h +91 -0
  345. package/cpp/skia/include/private/SkThreadID.h +20 -0
  346. package/cpp/skia/include/private/SkTo.h +28 -0
  347. package/cpp/skia/include/private/SkUniquePaintParamsID.h +35 -0
  348. package/cpp/skia/include/private/SkVx.h +943 -0
  349. package/cpp/skia/include/private/SkWeakRefCnt.h +170 -0
  350. package/cpp/skia/include/private/chromium/GrSlug.h +78 -0
  351. package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +149 -0
  352. package/cpp/skia/include/private/gpu/ganesh/GrContext_Base.h +99 -0
  353. package/cpp/skia/include/private/gpu/ganesh/GrD3DTypesMinimal.h +74 -0
  354. package/cpp/skia/include/private/gpu/ganesh/GrDawnTypesPriv.h +26 -0
  355. package/cpp/skia/include/private/gpu/ganesh/GrGLTypesPriv.h +108 -0
  356. package/cpp/skia/include/private/gpu/ganesh/GrImageContext.h +55 -0
  357. package/cpp/skia/include/private/gpu/ganesh/GrMockTypesPriv.h +31 -0
  358. package/cpp/skia/include/private/gpu/ganesh/GrMtlTypesPriv.h +75 -0
  359. package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +1012 -0
  360. package/cpp/skia/include/private/gpu/ganesh/GrVkTypesPriv.h +107 -0
  361. package/cpp/skia/include/private/gpu/graphite/MtlTypesPriv.h +74 -0
  362. package/cpp/skia/include/sksl/DSL.h +38 -0
  363. package/cpp/skia/include/sksl/DSLBlock.h +72 -0
  364. package/cpp/skia/include/sksl/DSLCase.h +68 -0
  365. package/cpp/skia/include/sksl/DSLCore.h +499 -0
  366. package/cpp/skia/include/sksl/DSLExpression.h +332 -0
  367. package/cpp/skia/include/sksl/DSLFunction.h +121 -0
  368. package/cpp/skia/include/sksl/DSLLayout.h +92 -0
  369. package/cpp/skia/include/sksl/DSLModifiers.h +66 -0
  370. package/cpp/skia/include/sksl/DSLRuntimeEffects.h +32 -0
  371. package/cpp/skia/include/sksl/DSLStatement.h +117 -0
  372. package/cpp/skia/include/sksl/DSLSymbols.h +71 -0
  373. package/cpp/skia/include/sksl/DSLType.h +263 -0
  374. package/cpp/skia/include/sksl/DSLVar.h +321 -0
  375. package/cpp/skia/include/sksl/DSLWrapper.h +77 -0
  376. package/cpp/skia/include/sksl/SkSLDebugTrace.h +28 -0
  377. package/cpp/skia/include/sksl/SkSLErrorReporter.h +78 -0
  378. package/cpp/skia/include/sksl/SkSLOperator.h +151 -0
  379. package/cpp/skia/include/sksl/SkSLPosition.h +102 -0
  380. package/cpp/skia/include/svg/SkSVGCanvas.h +41 -0
  381. package/cpp/skia/include/third_party/skcms/LICENSE +29 -0
  382. package/cpp/skia/include/third_party/skcms/skcms.h +394 -0
  383. package/cpp/skia/include/third_party/vulkan/LICENSE +29 -0
  384. package/cpp/skia/include/third_party/vulkan/vulkan/vk_platform.h +84 -0
  385. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan.h +93 -0
  386. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_android.h +112 -0
  387. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_core.h +12620 -0
  388. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_ios.h +47 -0
  389. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_macos.h +47 -0
  390. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_win32.h +315 -0
  391. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_xcb.h +55 -0
  392. package/cpp/skia/include/utils/SkAnimCodecPlayer.h +67 -0
  393. package/cpp/skia/include/utils/SkBase64.h +51 -0
  394. package/cpp/skia/include/utils/SkCamera.h +109 -0
  395. package/cpp/skia/include/utils/SkCanvasStateUtils.h +81 -0
  396. package/cpp/skia/include/utils/SkCustomTypeface.h +50 -0
  397. package/cpp/skia/include/utils/SkEventTracer.h +79 -0
  398. package/cpp/skia/include/utils/SkNWayCanvas.h +126 -0
  399. package/cpp/skia/include/utils/SkNoDrawCanvas.h +80 -0
  400. package/cpp/skia/include/utils/SkNullCanvas.h +22 -0
  401. package/cpp/skia/include/utils/SkOrderedFontMgr.h +65 -0
  402. package/cpp/skia/include/utils/SkPaintFilterCanvas.h +136 -0
  403. package/cpp/skia/include/utils/SkParse.h +34 -0
  404. package/cpp/skia/include/utils/SkParsePath.h +25 -0
  405. package/cpp/skia/include/utils/SkRandom.h +169 -0
  406. package/cpp/skia/include/utils/SkShadowUtils.h +86 -0
  407. package/cpp/skia/include/utils/SkTextUtils.h +42 -0
  408. package/cpp/skia/include/utils/SkTraceEventPhase.h +19 -0
  409. package/cpp/skia/include/utils/mac/SkCGUtils.h +78 -0
  410. package/cpp/skia/modules/skresources/include/SkResources.h +254 -0
  411. package/cpp/skia/modules/svg/include/SkSVGAttribute.h +113 -0
  412. package/cpp/skia/modules/svg/include/SkSVGAttributeParser.h +160 -0
  413. package/cpp/skia/modules/svg/include/SkSVGCircle.h +43 -0
  414. package/cpp/skia/modules/svg/include/SkSVGClipPath.h +35 -0
  415. package/cpp/skia/modules/svg/include/SkSVGContainer.h +36 -0
  416. package/cpp/skia/modules/svg/include/SkSVGDOM.h +100 -0
  417. package/cpp/skia/modules/svg/include/SkSVGDefs.h +23 -0
  418. package/cpp/skia/modules/svg/include/SkSVGEllipse.h +41 -0
  419. package/cpp/skia/modules/svg/include/SkSVGFe.h +85 -0
  420. package/cpp/skia/modules/svg/include/SkSVGFeBlend.h +45 -0
  421. package/cpp/skia/modules/svg/include/SkSVGFeColorMatrix.h +46 -0
  422. package/cpp/skia/modules/svg/include/SkSVGFeComposite.h +46 -0
  423. package/cpp/skia/modules/svg/include/SkSVGFeDisplacementMap.h +46 -0
  424. package/cpp/skia/modules/svg/include/SkSVGFeFlood.h +32 -0
  425. package/cpp/skia/modules/svg/include/SkSVGFeGaussianBlur.h +41 -0
  426. package/cpp/skia/modules/svg/include/SkSVGFeImage.h +35 -0
  427. package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +89 -0
  428. package/cpp/skia/modules/svg/include/SkSVGFeLighting.h +121 -0
  429. package/cpp/skia/modules/svg/include/SkSVGFeMorphology.h +47 -0
  430. package/cpp/skia/modules/svg/include/SkSVGFeOffset.h +35 -0
  431. package/cpp/skia/modules/svg/include/SkSVGFeTurbulence.h +40 -0
  432. package/cpp/skia/modules/svg/include/SkSVGFilter.h +39 -0
  433. package/cpp/skia/modules/svg/include/SkSVGFilterContext.h +69 -0
  434. package/cpp/skia/modules/svg/include/SkSVGG.h +23 -0
  435. package/cpp/skia/modules/svg/include/SkSVGGradient.h +48 -0
  436. package/cpp/skia/modules/svg/include/SkSVGHiddenContainer.h +23 -0
  437. package/cpp/skia/modules/svg/include/SkSVGIDMapper.h +19 -0
  438. package/cpp/skia/modules/svg/include/SkSVGImage.h +58 -0
  439. package/cpp/skia/modules/svg/include/SkSVGLine.h +42 -0
  440. package/cpp/skia/modules/svg/include/SkSVGLinearGradient.h +37 -0
  441. package/cpp/skia/modules/svg/include/SkSVGMask.h +43 -0
  442. package/cpp/skia/modules/svg/include/SkSVGNode.h +223 -0
  443. package/cpp/skia/modules/svg/include/SkSVGOpenTypeSVGDecoder.h +32 -0
  444. package/cpp/skia/modules/svg/include/SkSVGPath.h +36 -0
  445. package/cpp/skia/modules/svg/include/SkSVGPattern.h +55 -0
  446. package/cpp/skia/modules/svg/include/SkSVGPoly.h +45 -0
  447. package/cpp/skia/modules/svg/include/SkSVGRadialGradient.h +38 -0
  448. package/cpp/skia/modules/svg/include/SkSVGRect.h +46 -0
  449. package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +188 -0
  450. package/cpp/skia/modules/svg/include/SkSVGSVG.h +54 -0
  451. package/cpp/skia/modules/svg/include/SkSVGShape.h +33 -0
  452. package/cpp/skia/modules/svg/include/SkSVGStop.h +34 -0
  453. package/cpp/skia/modules/svg/include/SkSVGText.h +122 -0
  454. package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +36 -0
  455. package/cpp/skia/modules/svg/include/SkSVGTypes.h +730 -0
  456. package/cpp/skia/modules/svg/include/SkSVGUse.h +42 -0
  457. package/cpp/skia/modules/svg/include/SkSVGValue.h +85 -0
  458. package/cpp/skia/readme.txt +1 -0
  459. package/cpp/utils/RNSkLog.h +80 -0
  460. package/cpp/utils/RNSkMeasureTime.h +32 -0
  461. package/cpp/utils/RNSkTimingInfo.h +103 -0
  462. package/ios/RNSkia-iOS/DisplayLink.h +17 -0
  463. package/ios/RNSkia-iOS/DisplayLink.mm +36 -0
  464. package/ios/RNSkia-iOS/PlatformContext.h +76 -0
  465. package/ios/RNSkia-iOS/PlatformContext.mm +52 -0
  466. package/ios/RNSkia-iOS/RNSkDrawViewImpl.h +52 -0
  467. package/ios/RNSkia-iOS/RNSkDrawViewImpl.mm +112 -0
  468. package/ios/RNSkia-iOS/SkiaDrawView.h +23 -0
  469. package/ios/RNSkia-iOS/SkiaDrawView.mm +169 -0
  470. package/ios/RNSkia-iOS/SkiaDrawViewManager.h +7 -0
  471. package/ios/RNSkia-iOS/SkiaDrawViewManager.mm +42 -0
  472. package/ios/RNSkia-iOS/SkiaManager.h +17 -0
  473. package/ios/RNSkia-iOS/SkiaManager.mm +50 -0
  474. package/ios/RNSkiaModule.h +11 -0
  475. package/ios/RNSkiaModule.mm +42 -0
  476. package/ios/Rnskia.xcodeproj/project.pbxproj +281 -0
  477. package/ios/Rnskia.xcworkspace/contents.xcworkspacedata +7 -0
  478. package/jestSetup.js +5 -0
  479. package/lib/commonjs/animation/decay/decay.js +42 -0
  480. package/lib/commonjs/animation/decay/decay.js.map +1 -0
  481. package/lib/commonjs/animation/decay/index.js +14 -0
  482. package/lib/commonjs/animation/decay/index.js.map +1 -0
  483. package/lib/commonjs/animation/decay/runDecay.js +48 -0
  484. package/lib/commonjs/animation/decay/runDecay.js.map +1 -0
  485. package/lib/commonjs/animation/decay/types.js +6 -0
  486. package/lib/commonjs/animation/decay/types.js.map +1 -0
  487. package/lib/commonjs/animation/functions/index.js +58 -0
  488. package/lib/commonjs/animation/functions/index.js.map +1 -0
  489. package/lib/commonjs/animation/functions/interpolate.js +142 -0
  490. package/lib/commonjs/animation/functions/interpolate.js.map +1 -0
  491. package/lib/commonjs/animation/functions/interpolateColors.js +39 -0
  492. package/lib/commonjs/animation/functions/interpolateColors.js.map +1 -0
  493. package/lib/commonjs/animation/functions/interpolatePaths.js +79 -0
  494. package/lib/commonjs/animation/functions/interpolatePaths.js.map +1 -0
  495. package/lib/commonjs/animation/functions/interpolateVector.js +20 -0
  496. package/lib/commonjs/animation/functions/interpolateVector.js.map +1 -0
  497. package/lib/commonjs/animation/index.js +58 -0
  498. package/lib/commonjs/animation/index.js.map +1 -0
  499. package/lib/commonjs/animation/spring/Spring.js +77 -0
  500. package/lib/commonjs/animation/spring/Spring.js.map +1 -0
  501. package/lib/commonjs/animation/spring/functions/index.js +14 -0
  502. package/lib/commonjs/animation/spring/functions/index.js.map +1 -0
  503. package/lib/commonjs/animation/spring/functions/spring.js +94 -0
  504. package/lib/commonjs/animation/spring/functions/spring.js.map +1 -0
  505. package/lib/commonjs/animation/spring/index.js +30 -0
  506. package/lib/commonjs/animation/spring/index.js.map +1 -0
  507. package/lib/commonjs/animation/spring/runSpring.js +32 -0
  508. package/lib/commonjs/animation/spring/runSpring.js.map +1 -0
  509. package/lib/commonjs/animation/spring/types.js +2 -0
  510. package/lib/commonjs/animation/spring/types.js.map +1 -0
  511. package/lib/commonjs/animation/spring/useSpring.js +24 -0
  512. package/lib/commonjs/animation/spring/useSpring.js.map +1 -0
  513. package/lib/commonjs/animation/timing/Easing.js +108 -0
  514. package/lib/commonjs/animation/timing/Easing.js.map +1 -0
  515. package/lib/commonjs/animation/timing/createTiming.js +59 -0
  516. package/lib/commonjs/animation/timing/createTiming.js.map +1 -0
  517. package/lib/commonjs/animation/timing/functions/bezier.js +147 -0
  518. package/lib/commonjs/animation/timing/functions/bezier.js.map +1 -0
  519. package/lib/commonjs/animation/timing/functions/getResolvedParams.js +56 -0
  520. package/lib/commonjs/animation/timing/functions/getResolvedParams.js.map +1 -0
  521. package/lib/commonjs/animation/timing/functions/index.js +54 -0
  522. package/lib/commonjs/animation/timing/functions/index.js.map +1 -0
  523. package/lib/commonjs/animation/timing/functions/timing.js +50 -0
  524. package/lib/commonjs/animation/timing/functions/timing.js.map +1 -0
  525. package/lib/commonjs/animation/timing/functions/types.js +2 -0
  526. package/lib/commonjs/animation/timing/functions/types.js.map +1 -0
  527. package/lib/commonjs/animation/timing/index.js +38 -0
  528. package/lib/commonjs/animation/timing/index.js.map +1 -0
  529. package/lib/commonjs/animation/timing/runTiming.js +33 -0
  530. package/lib/commonjs/animation/timing/runTiming.js.map +1 -0
  531. package/lib/commonjs/animation/timing/useLoop.js +22 -0
  532. package/lib/commonjs/animation/timing/useLoop.js.map +1 -0
  533. package/lib/commonjs/animation/timing/useTiming.js +66 -0
  534. package/lib/commonjs/animation/timing/useTiming.js.map +1 -0
  535. package/lib/commonjs/animation/types.js +2 -0
  536. package/lib/commonjs/animation/types.js.map +1 -0
  537. package/lib/commonjs/external/index.js +19 -0
  538. package/lib/commonjs/external/index.js.map +1 -0
  539. package/lib/commonjs/external/reanimated/index.js +19 -0
  540. package/lib/commonjs/external/reanimated/index.js.map +1 -0
  541. package/lib/commonjs/external/reanimated/useSharedValueEffect.js +86 -0
  542. package/lib/commonjs/external/reanimated/useSharedValueEffect.js.map +1 -0
  543. package/lib/commonjs/index.js +99 -0
  544. package/lib/commonjs/index.js.map +1 -0
  545. package/lib/commonjs/mock/index.js +134 -0
  546. package/lib/commonjs/mock/index.js.map +1 -0
  547. package/lib/commonjs/renderer/Canvas.js +163 -0
  548. package/lib/commonjs/renderer/Canvas.js.map +1 -0
  549. package/lib/commonjs/renderer/DependencyManager.js +70 -0
  550. package/lib/commonjs/renderer/DependencyManager.js.map +1 -0
  551. package/lib/commonjs/renderer/DrawingContext.js +6 -0
  552. package/lib/commonjs/renderer/DrawingContext.js.map +1 -0
  553. package/lib/commonjs/renderer/HostConfig.js +250 -0
  554. package/lib/commonjs/renderer/HostConfig.js.map +1 -0
  555. package/lib/commonjs/renderer/components/Blend.js +47 -0
  556. package/lib/commonjs/renderer/components/Blend.js.map +1 -0
  557. package/lib/commonjs/renderer/components/Compose.js +40 -0
  558. package/lib/commonjs/renderer/components/Compose.js.map +1 -0
  559. package/lib/commonjs/renderer/components/Drawing.js +31 -0
  560. package/lib/commonjs/renderer/components/Drawing.js.map +1 -0
  561. package/lib/commonjs/renderer/components/Group.js +85 -0
  562. package/lib/commonjs/renderer/components/Group.js.map +1 -0
  563. package/lib/commonjs/renderer/components/Mask.js +61 -0
  564. package/lib/commonjs/renderer/components/Mask.js.map +1 -0
  565. package/lib/commonjs/renderer/components/Paint.js +37 -0
  566. package/lib/commonjs/renderer/components/Paint.js.map +1 -0
  567. package/lib/commonjs/renderer/components/Picture.js +35 -0
  568. package/lib/commonjs/renderer/components/Picture.js.map +1 -0
  569. package/lib/commonjs/renderer/components/backdrop/BackdropBlur.js +33 -0
  570. package/lib/commonjs/renderer/components/backdrop/BackdropBlur.js.map +1 -0
  571. package/lib/commonjs/renderer/components/backdrop/BackdropFilter.js +54 -0
  572. package/lib/commonjs/renderer/components/backdrop/BackdropFilter.js.map +1 -0
  573. package/lib/commonjs/renderer/components/backdrop/index.js +32 -0
  574. package/lib/commonjs/renderer/components/backdrop/index.js.map +1 -0
  575. package/lib/commonjs/renderer/components/colorFilters/BlendColor.js +41 -0
  576. package/lib/commonjs/renderer/components/colorFilters/BlendColor.js.map +1 -0
  577. package/lib/commonjs/renderer/components/colorFilters/Compose.js +24 -0
  578. package/lib/commonjs/renderer/components/colorFilters/Compose.js.map +1 -0
  579. package/lib/commonjs/renderer/components/colorFilters/Lerp.js +39 -0
  580. package/lib/commonjs/renderer/components/colorFilters/Lerp.js.map +1 -0
  581. package/lib/commonjs/renderer/components/colorFilters/LinearToSRGBGamma.js +33 -0
  582. package/lib/commonjs/renderer/components/colorFilters/LinearToSRGBGamma.js.map +1 -0
  583. package/lib/commonjs/renderer/components/colorFilters/LumaColorFilter.js +33 -0
  584. package/lib/commonjs/renderer/components/colorFilters/LumaColorFilter.js.map +1 -0
  585. package/lib/commonjs/renderer/components/colorFilters/Matrix.js +40 -0
  586. package/lib/commonjs/renderer/components/colorFilters/Matrix.js.map +1 -0
  587. package/lib/commonjs/renderer/components/colorFilters/SRGBToLinearGamma.js +33 -0
  588. package/lib/commonjs/renderer/components/colorFilters/SRGBToLinearGamma.js.map +1 -0
  589. package/lib/commonjs/renderer/components/colorFilters/index.js +84 -0
  590. package/lib/commonjs/renderer/components/colorFilters/index.js.map +1 -0
  591. package/lib/commonjs/renderer/components/image/BoxFit.js +160 -0
  592. package/lib/commonjs/renderer/components/image/BoxFit.js.map +1 -0
  593. package/lib/commonjs/renderer/components/image/Image.js +56 -0
  594. package/lib/commonjs/renderer/components/image/Image.js.map +1 -0
  595. package/lib/commonjs/renderer/components/image/ImageSVG.js +46 -0
  596. package/lib/commonjs/renderer/components/image/ImageSVG.js.map +1 -0
  597. package/lib/commonjs/renderer/components/image/ImageShader.js +85 -0
  598. package/lib/commonjs/renderer/components/image/ImageShader.js.map +1 -0
  599. package/lib/commonjs/renderer/components/image/index.js +58 -0
  600. package/lib/commonjs/renderer/components/image/index.js.map +1 -0
  601. package/lib/commonjs/renderer/components/imageFilters/Blur.js +46 -0
  602. package/lib/commonjs/renderer/components/imageFilters/Blur.js.map +1 -0
  603. package/lib/commonjs/renderer/components/imageFilters/DisplacementMap.js +54 -0
  604. package/lib/commonjs/renderer/components/imageFilters/DisplacementMap.js.map +1 -0
  605. package/lib/commonjs/renderer/components/imageFilters/InnerShadow.js +28 -0
  606. package/lib/commonjs/renderer/components/imageFilters/InnerShadow.js.map +1 -0
  607. package/lib/commonjs/renderer/components/imageFilters/Morphology.js +44 -0
  608. package/lib/commonjs/renderer/components/imageFilters/Morphology.js.map +1 -0
  609. package/lib/commonjs/renderer/components/imageFilters/Offset.js +40 -0
  610. package/lib/commonjs/renderer/components/imageFilters/Offset.js.map +1 -0
  611. package/lib/commonjs/renderer/components/imageFilters/RuntimeShader.js +44 -0
  612. package/lib/commonjs/renderer/components/imageFilters/RuntimeShader.js.map +1 -0
  613. package/lib/commonjs/renderer/components/imageFilters/Shadow.js +55 -0
  614. package/lib/commonjs/renderer/components/imageFilters/Shadow.js.map +1 -0
  615. package/lib/commonjs/renderer/components/imageFilters/getInput.js +33 -0
  616. package/lib/commonjs/renderer/components/imageFilters/getInput.js.map +1 -0
  617. package/lib/commonjs/renderer/components/imageFilters/index.js +84 -0
  618. package/lib/commonjs/renderer/components/imageFilters/index.js.map +1 -0
  619. package/lib/commonjs/renderer/components/index.js +227 -0
  620. package/lib/commonjs/renderer/components/index.js.map +1 -0
  621. package/lib/commonjs/renderer/components/maskFilters/Blur.js +43 -0
  622. package/lib/commonjs/renderer/components/maskFilters/Blur.js.map +1 -0
  623. package/lib/commonjs/renderer/components/maskFilters/index.js +19 -0
  624. package/lib/commonjs/renderer/components/maskFilters/index.js.map +1 -0
  625. package/lib/commonjs/renderer/components/pathEffects/Corner.js +46 -0
  626. package/lib/commonjs/renderer/components/pathEffects/Corner.js.map +1 -0
  627. package/lib/commonjs/renderer/components/pathEffects/Dash.js +43 -0
  628. package/lib/commonjs/renderer/components/pathEffects/Dash.js.map +1 -0
  629. package/lib/commonjs/renderer/components/pathEffects/Discrete.js +47 -0
  630. package/lib/commonjs/renderer/components/pathEffects/Discrete.js.map +1 -0
  631. package/lib/commonjs/renderer/components/pathEffects/Line2D.js +47 -0
  632. package/lib/commonjs/renderer/components/pathEffects/Line2D.js.map +1 -0
  633. package/lib/commonjs/renderer/components/pathEffects/Path1D.js +53 -0
  634. package/lib/commonjs/renderer/components/pathEffects/Path1D.js.map +1 -0
  635. package/lib/commonjs/renderer/components/pathEffects/Path2D.js +49 -0
  636. package/lib/commonjs/renderer/components/pathEffects/Path2D.js.map +1 -0
  637. package/lib/commonjs/renderer/components/pathEffects/Sum.js +33 -0
  638. package/lib/commonjs/renderer/components/pathEffects/Sum.js.map +1 -0
  639. package/lib/commonjs/renderer/components/pathEffects/index.js +97 -0
  640. package/lib/commonjs/renderer/components/pathEffects/index.js.map +1 -0
  641. package/lib/commonjs/renderer/components/shaders/Color.js +35 -0
  642. package/lib/commonjs/renderer/components/shaders/Color.js.map +1 -0
  643. package/lib/commonjs/renderer/components/shaders/FractalNoise.js +43 -0
  644. package/lib/commonjs/renderer/components/shaders/FractalNoise.js.map +1 -0
  645. package/lib/commonjs/renderer/components/shaders/Gradient.js +32 -0
  646. package/lib/commonjs/renderer/components/shaders/Gradient.js.map +1 -0
  647. package/lib/commonjs/renderer/components/shaders/LinearGradient.js +44 -0
  648. package/lib/commonjs/renderer/components/shaders/LinearGradient.js.map +1 -0
  649. package/lib/commonjs/renderer/components/shaders/RadialGradient.js +44 -0
  650. package/lib/commonjs/renderer/components/shaders/RadialGradient.js.map +1 -0
  651. package/lib/commonjs/renderer/components/shaders/Shader.js +42 -0
  652. package/lib/commonjs/renderer/components/shaders/Shader.js.map +1 -0
  653. package/lib/commonjs/renderer/components/shaders/ShaderLib.js +52 -0
  654. package/lib/commonjs/renderer/components/shaders/ShaderLib.js.map +1 -0
  655. package/lib/commonjs/renderer/components/shaders/SweepGradient.js +45 -0
  656. package/lib/commonjs/renderer/components/shaders/SweepGradient.js.map +1 -0
  657. package/lib/commonjs/renderer/components/shaders/Turbulence.js +43 -0
  658. package/lib/commonjs/renderer/components/shaders/Turbulence.js.map +1 -0
  659. package/lib/commonjs/renderer/components/shaders/TwoPointConicalGradient.js +46 -0
  660. package/lib/commonjs/renderer/components/shaders/TwoPointConicalGradient.js.map +1 -0
  661. package/lib/commonjs/renderer/components/shaders/index.js +123 -0
  662. package/lib/commonjs/renderer/components/shaders/index.js.map +1 -0
  663. package/lib/commonjs/renderer/components/shapes/Box.js +123 -0
  664. package/lib/commonjs/renderer/components/shapes/Box.js.map +1 -0
  665. package/lib/commonjs/renderer/components/shapes/Circle.js +44 -0
  666. package/lib/commonjs/renderer/components/shapes/Circle.js.map +1 -0
  667. package/lib/commonjs/renderer/components/shapes/DiffRect.js +35 -0
  668. package/lib/commonjs/renderer/components/shapes/DiffRect.js.map +1 -0
  669. package/lib/commonjs/renderer/components/shapes/Fill.js +31 -0
  670. package/lib/commonjs/renderer/components/shapes/Fill.js.map +1 -0
  671. package/lib/commonjs/renderer/components/shapes/FitBox.js +42 -0
  672. package/lib/commonjs/renderer/components/shapes/FitBox.js.map +1 -0
  673. package/lib/commonjs/renderer/components/shapes/Line.js +35 -0
  674. package/lib/commonjs/renderer/components/shapes/Line.js.map +1 -0
  675. package/lib/commonjs/renderer/components/shapes/Oval.js +39 -0
  676. package/lib/commonjs/renderer/components/shapes/Oval.js.map +1 -0
  677. package/lib/commonjs/renderer/components/shapes/Patch.js +53 -0
  678. package/lib/commonjs/renderer/components/shapes/Patch.js.map +1 -0
  679. package/lib/commonjs/renderer/components/shapes/Path.js +67 -0
  680. package/lib/commonjs/renderer/components/shapes/Path.js.map +1 -0
  681. package/lib/commonjs/renderer/components/shapes/Points.js +45 -0
  682. package/lib/commonjs/renderer/components/shapes/Points.js.map +1 -0
  683. package/lib/commonjs/renderer/components/shapes/Rect.js +35 -0
  684. package/lib/commonjs/renderer/components/shapes/Rect.js.map +1 -0
  685. package/lib/commonjs/renderer/components/shapes/RoundedRect.js +38 -0
  686. package/lib/commonjs/renderer/components/shapes/RoundedRect.js.map +1 -0
  687. package/lib/commonjs/renderer/components/shapes/Vertices.js +55 -0
  688. package/lib/commonjs/renderer/components/shapes/Vertices.js.map +1 -0
  689. package/lib/commonjs/renderer/components/shapes/index.js +175 -0
  690. package/lib/commonjs/renderer/components/shapes/index.js.map +1 -0
  691. package/lib/commonjs/renderer/components/text/Glyphs.js +61 -0
  692. package/lib/commonjs/renderer/components/text/Glyphs.js.map +1 -0
  693. package/lib/commonjs/renderer/components/text/Text.js +46 -0
  694. package/lib/commonjs/renderer/components/text/Text.js.map +1 -0
  695. package/lib/commonjs/renderer/components/text/TextBlob.js +40 -0
  696. package/lib/commonjs/renderer/components/text/TextBlob.js.map +1 -0
  697. package/lib/commonjs/renderer/components/text/TextPath.js +91 -0
  698. package/lib/commonjs/renderer/components/text/TextPath.js.map +1 -0
  699. package/lib/commonjs/renderer/components/text/index.js +58 -0
  700. package/lib/commonjs/renderer/components/text/index.js.map +1 -0
  701. package/lib/commonjs/renderer/index.js +71 -0
  702. package/lib/commonjs/renderer/index.js.map +1 -0
  703. package/lib/commonjs/renderer/nodes/Container.js +28 -0
  704. package/lib/commonjs/renderer/nodes/Container.js.map +1 -0
  705. package/lib/commonjs/renderer/nodes/Declaration.js +58 -0
  706. package/lib/commonjs/renderer/nodes/Declaration.js.map +1 -0
  707. package/lib/commonjs/renderer/nodes/Drawing.js +60 -0
  708. package/lib/commonjs/renderer/nodes/Drawing.js.map +1 -0
  709. package/lib/commonjs/renderer/nodes/Node.js +71 -0
  710. package/lib/commonjs/renderer/nodes/Node.js.map +1 -0
  711. package/lib/commonjs/renderer/nodes/index.js +58 -0
  712. package/lib/commonjs/renderer/nodes/index.js.map +1 -0
  713. package/lib/commonjs/renderer/processors/Animations/Animations.js +52 -0
  714. package/lib/commonjs/renderer/processors/Animations/Animations.js.map +1 -0
  715. package/lib/commonjs/renderer/processors/Animations/index.js +19 -0
  716. package/lib/commonjs/renderer/processors/Animations/index.js.map +1 -0
  717. package/lib/commonjs/renderer/processors/Circles.js +24 -0
  718. package/lib/commonjs/renderer/processors/Circles.js.map +1 -0
  719. package/lib/commonjs/renderer/processors/Clips.js +24 -0
  720. package/lib/commonjs/renderer/processors/Clips.js.map +1 -0
  721. package/lib/commonjs/renderer/processors/Color.js +27 -0
  722. package/lib/commonjs/renderer/processors/Color.js.map +1 -0
  723. package/lib/commonjs/renderer/processors/Font.js +39 -0
  724. package/lib/commonjs/renderer/processors/Font.js.map +1 -0
  725. package/lib/commonjs/renderer/processors/Paint.js +98 -0
  726. package/lib/commonjs/renderer/processors/Paint.js.map +1 -0
  727. package/lib/commonjs/renderer/processors/Paths.js +26 -0
  728. package/lib/commonjs/renderer/processors/Paths.js.map +1 -0
  729. package/lib/commonjs/renderer/processors/Radius.js +17 -0
  730. package/lib/commonjs/renderer/processors/Radius.js.map +1 -0
  731. package/lib/commonjs/renderer/processors/Rects.js +41 -0
  732. package/lib/commonjs/renderer/processors/Rects.js.map +1 -0
  733. package/lib/commonjs/renderer/processors/Transform.js +65 -0
  734. package/lib/commonjs/renderer/processors/Transform.js.map +1 -0
  735. package/lib/commonjs/renderer/processors/index.js +149 -0
  736. package/lib/commonjs/renderer/processors/index.js.map +1 -0
  737. package/lib/commonjs/renderer/processors/math/Coordinates.js +43 -0
  738. package/lib/commonjs/renderer/processors/math/Coordinates.js.map +1 -0
  739. package/lib/commonjs/renderer/processors/math/Math.js +29 -0
  740. package/lib/commonjs/renderer/processors/math/Math.js.map +1 -0
  741. package/lib/commonjs/renderer/processors/math/Transforms.js +22 -0
  742. package/lib/commonjs/renderer/processors/math/Transforms.js.map +1 -0
  743. package/lib/commonjs/renderer/processors/math/index.js +45 -0
  744. package/lib/commonjs/renderer/processors/math/index.js.map +1 -0
  745. package/lib/commonjs/renderer/typeddash.js +41 -0
  746. package/lib/commonjs/renderer/typeddash.js.map +1 -0
  747. package/lib/commonjs/renderer/useCanvas.js +30 -0
  748. package/lib/commonjs/renderer/useCanvas.js.map +1 -0
  749. package/lib/commonjs/renderer/useContextBridge.js +35 -0
  750. package/lib/commonjs/renderer/useContextBridge.js.map +1 -0
  751. package/lib/commonjs/skia/NativeSetup.js +19 -0
  752. package/lib/commonjs/skia/NativeSetup.js.map +1 -0
  753. package/lib/commonjs/skia/Skia.js +15 -0
  754. package/lib/commonjs/skia/Skia.js.map +1 -0
  755. package/lib/commonjs/skia/Skia.web.js +12 -0
  756. package/lib/commonjs/skia/Skia.web.js.map +1 -0
  757. package/lib/commonjs/skia/core/Data.js +69 -0
  758. package/lib/commonjs/skia/core/Data.js.map +1 -0
  759. package/lib/commonjs/skia/core/Font.js +34 -0
  760. package/lib/commonjs/skia/core/Font.js.map +1 -0
  761. package/lib/commonjs/skia/core/Image.js +18 -0
  762. package/lib/commonjs/skia/core/Image.js.map +1 -0
  763. package/lib/commonjs/skia/core/Matrix.js +15 -0
  764. package/lib/commonjs/skia/core/Matrix.js.map +1 -0
  765. package/lib/commonjs/skia/core/Paint.js +28 -0
  766. package/lib/commonjs/skia/core/Paint.js.map +1 -0
  767. package/lib/commonjs/skia/core/Path.js +72 -0
  768. package/lib/commonjs/skia/core/Path.js.map +1 -0
  769. package/lib/commonjs/skia/core/Picture.js +30 -0
  770. package/lib/commonjs/skia/core/Picture.js.map +1 -0
  771. package/lib/commonjs/skia/core/RRect.js +13 -0
  772. package/lib/commonjs/skia/core/RRect.js.map +1 -0
  773. package/lib/commonjs/skia/core/Rect.js +47 -0
  774. package/lib/commonjs/skia/core/Rect.js.map +1 -0
  775. package/lib/commonjs/skia/core/SVG.js +15 -0
  776. package/lib/commonjs/skia/core/SVG.js.map +1 -0
  777. package/lib/commonjs/skia/core/Typeface.js +18 -0
  778. package/lib/commonjs/skia/core/Typeface.js.map +1 -0
  779. package/lib/commonjs/skia/core/Vector.js +49 -0
  780. package/lib/commonjs/skia/core/Vector.js.map +1 -0
  781. package/lib/commonjs/skia/core/index.js +162 -0
  782. package/lib/commonjs/skia/core/index.js.map +1 -0
  783. package/lib/commonjs/skia/index.js +45 -0
  784. package/lib/commonjs/skia/index.js.map +1 -0
  785. package/lib/commonjs/skia/types/Canvas.js +22 -0
  786. package/lib/commonjs/skia/types/Canvas.js.map +1 -0
  787. package/lib/commonjs/skia/types/Color.js +2 -0
  788. package/lib/commonjs/skia/types/Color.js.map +1 -0
  789. package/lib/commonjs/skia/types/ColorFilter/ColorFilter.js +11 -0
  790. package/lib/commonjs/skia/types/ColorFilter/ColorFilter.js.map +1 -0
  791. package/lib/commonjs/skia/types/ColorFilter/ColorFilterFactory.js +6 -0
  792. package/lib/commonjs/skia/types/ColorFilter/ColorFilterFactory.js.map +1 -0
  793. package/lib/commonjs/skia/types/ColorFilter/index.js +32 -0
  794. package/lib/commonjs/skia/types/ColorFilter/index.js.map +1 -0
  795. package/lib/commonjs/skia/types/ContourMeasure.js +6 -0
  796. package/lib/commonjs/skia/types/ContourMeasure.js.map +1 -0
  797. package/lib/commonjs/skia/types/Data/Data.js +6 -0
  798. package/lib/commonjs/skia/types/Data/Data.js.map +1 -0
  799. package/lib/commonjs/skia/types/Data/DataFactory.js +6 -0
  800. package/lib/commonjs/skia/types/Data/DataFactory.js.map +1 -0
  801. package/lib/commonjs/skia/types/Data/index.js +32 -0
  802. package/lib/commonjs/skia/types/Data/index.js.map +1 -0
  803. package/lib/commonjs/skia/types/Font/Font.js +81 -0
  804. package/lib/commonjs/skia/types/Font/Font.js.map +1 -0
  805. package/lib/commonjs/skia/types/Font/index.js +19 -0
  806. package/lib/commonjs/skia/types/Font/index.js.map +1 -0
  807. package/lib/commonjs/skia/types/FontMgr/FontMgr.js +6 -0
  808. package/lib/commonjs/skia/types/FontMgr/FontMgr.js.map +1 -0
  809. package/lib/commonjs/skia/types/FontMgr/FontMgrFactory.js +6 -0
  810. package/lib/commonjs/skia/types/FontMgr/FontMgrFactory.js.map +1 -0
  811. package/lib/commonjs/skia/types/FontMgr/index.js +32 -0
  812. package/lib/commonjs/skia/types/FontMgr/index.js.map +1 -0
  813. package/lib/commonjs/skia/types/Image/Image.js +32 -0
  814. package/lib/commonjs/skia/types/Image/Image.js.map +1 -0
  815. package/lib/commonjs/skia/types/Image/ImageFactory.js +46 -0
  816. package/lib/commonjs/skia/types/Image/ImageFactory.js.map +1 -0
  817. package/lib/commonjs/skia/types/Image/index.js +32 -0
  818. package/lib/commonjs/skia/types/Image/index.js.map +1 -0
  819. package/lib/commonjs/skia/types/ImageFilter/ImageFilter.js +20 -0
  820. package/lib/commonjs/skia/types/ImageFilter/ImageFilter.js.map +1 -0
  821. package/lib/commonjs/skia/types/ImageFilter/ImageFilterFactory.js +16 -0
  822. package/lib/commonjs/skia/types/ImageFilter/ImageFilterFactory.js.map +1 -0
  823. package/lib/commonjs/skia/types/ImageFilter/index.js +32 -0
  824. package/lib/commonjs/skia/types/ImageFilter/index.js.map +1 -0
  825. package/lib/commonjs/skia/types/JsiInstance.js +2 -0
  826. package/lib/commonjs/skia/types/JsiInstance.js.map +1 -0
  827. package/lib/commonjs/skia/types/MaskFilter.js +20 -0
  828. package/lib/commonjs/skia/types/MaskFilter.js.map +1 -0
  829. package/lib/commonjs/skia/types/Matrix.js +78 -0
  830. package/lib/commonjs/skia/types/Matrix.js.map +1 -0
  831. package/lib/commonjs/skia/types/Paint/BlendMode.js +69 -0
  832. package/lib/commonjs/skia/types/Paint/BlendMode.js.map +1 -0
  833. package/lib/commonjs/skia/types/Paint/Paint.js +36 -0
  834. package/lib/commonjs/skia/types/Paint/Paint.js.map +1 -0
  835. package/lib/commonjs/skia/types/Paint/index.js +32 -0
  836. package/lib/commonjs/skia/types/Paint/index.js.map +1 -0
  837. package/lib/commonjs/skia/types/Path/Path.js +47 -0
  838. package/lib/commonjs/skia/types/Path/Path.js.map +1 -0
  839. package/lib/commonjs/skia/types/Path/PathFactory.js +6 -0
  840. package/lib/commonjs/skia/types/Path/PathFactory.js.map +1 -0
  841. package/lib/commonjs/skia/types/Path/index.js +32 -0
  842. package/lib/commonjs/skia/types/Path/index.js.map +1 -0
  843. package/lib/commonjs/skia/types/PathEffect.js +19 -0
  844. package/lib/commonjs/skia/types/PathEffect.js.map +1 -0
  845. package/lib/commonjs/skia/types/Picture/Picture.js +6 -0
  846. package/lib/commonjs/skia/types/Picture/Picture.js.map +1 -0
  847. package/lib/commonjs/skia/types/Picture/PictureFactory.js +6 -0
  848. package/lib/commonjs/skia/types/Picture/PictureFactory.js.map +1 -0
  849. package/lib/commonjs/skia/types/Picture/PictureRecorder.js +6 -0
  850. package/lib/commonjs/skia/types/Picture/PictureRecorder.js.map +1 -0
  851. package/lib/commonjs/skia/types/Picture/index.js +45 -0
  852. package/lib/commonjs/skia/types/Picture/index.js.map +1 -0
  853. package/lib/commonjs/skia/types/Point.js +15 -0
  854. package/lib/commonjs/skia/types/Point.js.map +1 -0
  855. package/lib/commonjs/skia/types/RRect.js +13 -0
  856. package/lib/commonjs/skia/types/RRect.js.map +1 -0
  857. package/lib/commonjs/skia/types/RSXform.js +6 -0
  858. package/lib/commonjs/skia/types/RSXform.js.map +1 -0
  859. package/lib/commonjs/skia/types/Rect.js +2 -0
  860. package/lib/commonjs/skia/types/Rect.js.map +1 -0
  861. package/lib/commonjs/skia/types/RuntimeEffect/RuntimeEffect.js +6 -0
  862. package/lib/commonjs/skia/types/RuntimeEffect/RuntimeEffect.js.map +1 -0
  863. package/lib/commonjs/skia/types/RuntimeEffect/RuntimeEffectFactory.js +6 -0
  864. package/lib/commonjs/skia/types/RuntimeEffect/RuntimeEffectFactory.js.map +1 -0
  865. package/lib/commonjs/skia/types/RuntimeEffect/index.js +32 -0
  866. package/lib/commonjs/skia/types/RuntimeEffect/index.js.map +1 -0
  867. package/lib/commonjs/skia/types/SVG/SVG.js +6 -0
  868. package/lib/commonjs/skia/types/SVG/SVG.js.map +1 -0
  869. package/lib/commonjs/skia/types/SVG/SVGFactory.js +6 -0
  870. package/lib/commonjs/skia/types/SVG/SVGFactory.js.map +1 -0
  871. package/lib/commonjs/skia/types/SVG/index.js +32 -0
  872. package/lib/commonjs/skia/types/SVG/index.js.map +1 -0
  873. package/lib/commonjs/skia/types/Shader/Shader.js +55 -0
  874. package/lib/commonjs/skia/types/Shader/Shader.js.map +1 -0
  875. package/lib/commonjs/skia/types/Shader/ShaderFactory.js +6 -0
  876. package/lib/commonjs/skia/types/Shader/ShaderFactory.js.map +1 -0
  877. package/lib/commonjs/skia/types/Shader/index.js +32 -0
  878. package/lib/commonjs/skia/types/Shader/index.js.map +1 -0
  879. package/lib/commonjs/skia/types/Skia.js +6 -0
  880. package/lib/commonjs/skia/types/Skia.js.map +1 -0
  881. package/lib/commonjs/skia/types/Surface/Surface.js +6 -0
  882. package/lib/commonjs/skia/types/Surface/Surface.js.map +1 -0
  883. package/lib/commonjs/skia/types/Surface/SurfaceFactory.js +6 -0
  884. package/lib/commonjs/skia/types/Surface/SurfaceFactory.js.map +1 -0
  885. package/lib/commonjs/skia/types/Surface/index.js +32 -0
  886. package/lib/commonjs/skia/types/Surface/index.js.map +1 -0
  887. package/lib/commonjs/skia/types/TextBlob.js +6 -0
  888. package/lib/commonjs/skia/types/TextBlob.js.map +1 -0
  889. package/lib/commonjs/skia/types/Typeface/Typeface.js +6 -0
  890. package/lib/commonjs/skia/types/Typeface/Typeface.js.map +1 -0
  891. package/lib/commonjs/skia/types/Typeface/TypefaceFactory.js +6 -0
  892. package/lib/commonjs/skia/types/Typeface/TypefaceFactory.js.map +1 -0
  893. package/lib/commonjs/skia/types/Typeface/index.js +32 -0
  894. package/lib/commonjs/skia/types/Typeface/index.js.map +1 -0
  895. package/lib/commonjs/skia/types/Vertices/Vertices.js +15 -0
  896. package/lib/commonjs/skia/types/Vertices/Vertices.js.map +1 -0
  897. package/lib/commonjs/skia/types/Vertices/index.js +19 -0
  898. package/lib/commonjs/skia/types/Vertices/index.js.map +1 -0
  899. package/lib/commonjs/skia/types/index.js +370 -0
  900. package/lib/commonjs/skia/types/index.js.map +1 -0
  901. package/lib/commonjs/skia/web/Host.js +75 -0
  902. package/lib/commonjs/skia/web/Host.js.map +1 -0
  903. package/lib/commonjs/skia/web/JsiSkCanvas.js +184 -0
  904. package/lib/commonjs/skia/web/JsiSkCanvas.js.map +1 -0
  905. package/lib/commonjs/skia/web/JsiSkColor.js +339 -0
  906. package/lib/commonjs/skia/web/JsiSkColor.js.map +1 -0
  907. package/lib/commonjs/skia/web/JsiSkColorFilter.js +18 -0
  908. package/lib/commonjs/skia/web/JsiSkColorFilter.js.map +1 -0
  909. package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js +48 -0
  910. package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js.map +1 -0
  911. package/lib/commonjs/skia/web/JsiSkContourMeasure.js +42 -0
  912. package/lib/commonjs/skia/web/JsiSkContourMeasure.js.map +1 -0
  913. package/lib/commonjs/skia/web/JsiSkContourMeasureIter.js +30 -0
  914. package/lib/commonjs/skia/web/JsiSkContourMeasureIter.js.map +1 -0
  915. package/lib/commonjs/skia/web/JsiSkData.js +18 -0
  916. package/lib/commonjs/skia/web/JsiSkData.js.map +1 -0
  917. package/lib/commonjs/skia/web/JsiSkDataFactory.js +44 -0
  918. package/lib/commonjs/skia/web/JsiSkDataFactory.js.map +1 -0
  919. package/lib/commonjs/skia/web/JsiSkFont.js +119 -0
  920. package/lib/commonjs/skia/web/JsiSkFont.js.map +1 -0
  921. package/lib/commonjs/skia/web/JsiSkFontMgr.js +33 -0
  922. package/lib/commonjs/skia/web/JsiSkFontMgr.js.map +1 -0
  923. package/lib/commonjs/skia/web/JsiSkFontMgrFactory.js +25 -0
  924. package/lib/commonjs/skia/web/JsiSkFontMgrFactory.js.map +1 -0
  925. package/lib/commonjs/skia/web/JsiSkImage.js +60 -0
  926. package/lib/commonjs/skia/web/JsiSkImage.js.map +1 -0
  927. package/lib/commonjs/skia/web/JsiSkImageFactory.js +47 -0
  928. package/lib/commonjs/skia/web/JsiSkImageFactory.js.map +1 -0
  929. package/lib/commonjs/skia/web/JsiSkImageFilter.js +18 -0
  930. package/lib/commonjs/skia/web/JsiSkImageFilter.js.map +1 -0
  931. package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js +68 -0
  932. package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js.map +1 -0
  933. package/lib/commonjs/skia/web/JsiSkMaskFilter.js +18 -0
  934. package/lib/commonjs/skia/web/JsiSkMaskFilter.js.map +1 -0
  935. package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js +24 -0
  936. package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js.map +1 -0
  937. package/lib/commonjs/skia/web/JsiSkMatrix.js +38 -0
  938. package/lib/commonjs/skia/web/JsiSkMatrix.js.map +1 -0
  939. package/lib/commonjs/skia/web/JsiSkPaint.js +101 -0
  940. package/lib/commonjs/skia/web/JsiSkPaint.js.map +1 -0
  941. package/lib/commonjs/skia/web/JsiSkPath.js +337 -0
  942. package/lib/commonjs/skia/web/JsiSkPath.js.map +1 -0
  943. package/lib/commonjs/skia/web/JsiSkPathEffect.js +18 -0
  944. package/lib/commonjs/skia/web/JsiSkPathEffect.js.map +1 -0
  945. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js +78 -0
  946. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js.map +1 -0
  947. package/lib/commonjs/skia/web/JsiSkPathFactory.js +58 -0
  948. package/lib/commonjs/skia/web/JsiSkPathFactory.js.map +1 -0
  949. package/lib/commonjs/skia/web/JsiSkPicture.js +29 -0
  950. package/lib/commonjs/skia/web/JsiSkPicture.js.map +1 -0
  951. package/lib/commonjs/skia/web/JsiSkPictureFactory.js +30 -0
  952. package/lib/commonjs/skia/web/JsiSkPictureFactory.js.map +1 -0
  953. package/lib/commonjs/skia/web/JsiSkPictureRecorder.js +30 -0
  954. package/lib/commonjs/skia/web/JsiSkPictureRecorder.js.map +1 -0
  955. package/lib/commonjs/skia/web/JsiSkPoint.js +26 -0
  956. package/lib/commonjs/skia/web/JsiSkPoint.js.map +1 -0
  957. package/lib/commonjs/skia/web/JsiSkRRect.js +32 -0
  958. package/lib/commonjs/skia/web/JsiSkRRect.js.map +1 -0
  959. package/lib/commonjs/skia/web/JsiSkRSXform.js +18 -0
  960. package/lib/commonjs/skia/web/JsiSkRSXform.js.map +1 -0
  961. package/lib/commonjs/skia/web/JsiSkRect.js +42 -0
  962. package/lib/commonjs/skia/web/JsiSkRect.js.map +1 -0
  963. package/lib/commonjs/skia/web/JsiSkRuntimeEffect.js +44 -0
  964. package/lib/commonjs/skia/web/JsiSkRuntimeEffect.js.map +1 -0
  965. package/lib/commonjs/skia/web/JsiSkRuntimeEffectFactory.js +30 -0
  966. package/lib/commonjs/skia/web/JsiSkRuntimeEffectFactory.js.map +1 -0
  967. package/lib/commonjs/skia/web/JsiSkSVGFactory.js +26 -0
  968. package/lib/commonjs/skia/web/JsiSkSVGFactory.js.map +1 -0
  969. package/lib/commonjs/skia/web/JsiSkShader.js +18 -0
  970. package/lib/commonjs/skia/web/JsiSkShader.js.map +1 -0
  971. package/lib/commonjs/skia/web/JsiSkShaderFactory.js +52 -0
  972. package/lib/commonjs/skia/web/JsiSkShaderFactory.js.map +1 -0
  973. package/lib/commonjs/skia/web/JsiSkSurface.js +31 -0
  974. package/lib/commonjs/skia/web/JsiSkSurface.js.map +1 -0
  975. package/lib/commonjs/skia/web/JsiSkSurfaceFactory.js +30 -0
  976. package/lib/commonjs/skia/web/JsiSkSurfaceFactory.js.map +1 -0
  977. package/lib/commonjs/skia/web/JsiSkTextBlob.js +18 -0
  978. package/lib/commonjs/skia/web/JsiSkTextBlob.js.map +1 -0
  979. package/lib/commonjs/skia/web/JsiSkTextBlobFactory.js +36 -0
  980. package/lib/commonjs/skia/web/JsiSkTextBlobFactory.js.map +1 -0
  981. package/lib/commonjs/skia/web/JsiSkTypeface.js +28 -0
  982. package/lib/commonjs/skia/web/JsiSkTypeface.js.map +1 -0
  983. package/lib/commonjs/skia/web/JsiSkTypefaceFactory.js +30 -0
  984. package/lib/commonjs/skia/web/JsiSkTypefaceFactory.js.map +1 -0
  985. package/lib/commonjs/skia/web/JsiSkVertices.js +28 -0
  986. package/lib/commonjs/skia/web/JsiSkVertices.js.map +1 -0
  987. package/lib/commonjs/skia/web/JsiSkVerticesFactory.js +49 -0
  988. package/lib/commonjs/skia/web/JsiSkVerticesFactory.js.map +1 -0
  989. package/lib/commonjs/skia/web/JsiSkia.js +97 -0
  990. package/lib/commonjs/skia/web/JsiSkia.js.map +1 -0
  991. package/lib/commonjs/skia/web/index.js +19 -0
  992. package/lib/commonjs/skia/web/index.js.map +1 -0
  993. package/lib/commonjs/values/api.js +12 -0
  994. package/lib/commonjs/values/api.js.map +1 -0
  995. package/lib/commonjs/values/api.web.js +18 -0
  996. package/lib/commonjs/values/api.web.js.map +1 -0
  997. package/lib/commonjs/values/hooks/index.js +58 -0
  998. package/lib/commonjs/values/hooks/index.js.map +1 -0
  999. package/lib/commonjs/values/hooks/useClockValue.js +27 -0
  1000. package/lib/commonjs/values/hooks/useClockValue.js.map +1 -0
  1001. package/lib/commonjs/values/hooks/useComputedValue.js +32 -0
  1002. package/lib/commonjs/values/hooks/useComputedValue.js.map +1 -0
  1003. package/lib/commonjs/values/hooks/useValue.js +23 -0
  1004. package/lib/commonjs/values/hooks/useValue.js.map +1 -0
  1005. package/lib/commonjs/values/hooks/useValueEffect.js +22 -0
  1006. package/lib/commonjs/values/hooks/useValueEffect.js.map +1 -0
  1007. package/lib/commonjs/values/index.js +45 -0
  1008. package/lib/commonjs/values/index.js.map +1 -0
  1009. package/lib/commonjs/values/types.js +2 -0
  1010. package/lib/commonjs/values/types.js.map +1 -0
  1011. package/lib/commonjs/values/web/RNSkAnimation.js +46 -0
  1012. package/lib/commonjs/values/web/RNSkAnimation.js.map +1 -0
  1013. package/lib/commonjs/values/web/RNSkClockValue.js +75 -0
  1014. package/lib/commonjs/values/web/RNSkClockValue.js.map +1 -0
  1015. package/lib/commonjs/values/web/RNSkComputedValue.js +51 -0
  1016. package/lib/commonjs/values/web/RNSkComputedValue.js.map +1 -0
  1017. package/lib/commonjs/values/web/RNSkReadonlyValue.js +45 -0
  1018. package/lib/commonjs/values/web/RNSkReadonlyValue.js.map +1 -0
  1019. package/lib/commonjs/values/web/RNSkValue.js +73 -0
  1020. package/lib/commonjs/values/web/RNSkValue.js.map +1 -0
  1021. package/lib/commonjs/values/web/api.js +31 -0
  1022. package/lib/commonjs/values/web/api.js.map +1 -0
  1023. package/lib/commonjs/values/web/index.js +19 -0
  1024. package/lib/commonjs/values/web/index.js.map +1 -0
  1025. package/lib/commonjs/views/SkiaView.js +128 -0
  1026. package/lib/commonjs/views/SkiaView.js.map +1 -0
  1027. package/lib/commonjs/views/SkiaView.web.js +216 -0
  1028. package/lib/commonjs/views/SkiaView.web.js.map +1 -0
  1029. package/lib/commonjs/views/api.js +11 -0
  1030. package/lib/commonjs/views/api.js.map +1 -0
  1031. package/lib/commonjs/views/index.js +58 -0
  1032. package/lib/commonjs/views/index.js.map +1 -0
  1033. package/lib/commonjs/views/types.js +16 -0
  1034. package/lib/commonjs/views/types.js.map +1 -0
  1035. package/lib/commonjs/views/useDrawCallback.js +23 -0
  1036. package/lib/commonjs/views/useDrawCallback.js.map +1 -0
  1037. package/lib/commonjs/views/useTouchHandler.js +99 -0
  1038. package/lib/commonjs/views/useTouchHandler.js.map +1 -0
  1039. package/lib/commonjs/web/index.js +22 -0
  1040. package/lib/commonjs/web/index.js.map +1 -0
  1041. package/lib/module/animation/decay/decay.js +33 -0
  1042. package/lib/module/animation/decay/decay.js.map +1 -0
  1043. package/lib/module/animation/decay/index.js +2 -0
  1044. package/lib/module/animation/decay/index.js.map +1 -0
  1045. package/lib/module/animation/decay/runDecay.js +38 -0
  1046. package/lib/module/animation/decay/runDecay.js.map +1 -0
  1047. package/lib/module/animation/decay/types.js +2 -0
  1048. package/lib/module/animation/decay/types.js.map +1 -0
  1049. package/lib/module/animation/functions/index.js +5 -0
  1050. package/lib/module/animation/functions/index.js.map +1 -0
  1051. package/lib/module/animation/functions/interpolate.js +132 -0
  1052. package/lib/module/animation/functions/interpolate.js.map +1 -0
  1053. package/lib/module/animation/functions/interpolateColors.js +23 -0
  1054. package/lib/module/animation/functions/interpolateColors.js.map +1 -0
  1055. package/lib/module/animation/functions/interpolatePaths.js +69 -0
  1056. package/lib/module/animation/functions/interpolatePaths.js.map +1 -0
  1057. package/lib/module/animation/functions/interpolateVector.js +7 -0
  1058. package/lib/module/animation/functions/interpolateVector.js.map +1 -0
  1059. package/lib/module/animation/index.js +5 -0
  1060. package/lib/module/animation/index.js.map +1 -0
  1061. package/lib/module/animation/spring/Spring.js +69 -0
  1062. package/lib/module/animation/spring/Spring.js.map +1 -0
  1063. package/lib/module/animation/spring/functions/index.js +2 -0
  1064. package/lib/module/animation/spring/functions/index.js.map +1 -0
  1065. package/lib/module/animation/spring/functions/spring.js +85 -0
  1066. package/lib/module/animation/spring/functions/spring.js.map +1 -0
  1067. package/lib/module/animation/spring/index.js +4 -0
  1068. package/lib/module/animation/spring/index.js.map +1 -0
  1069. package/lib/module/animation/spring/runSpring.js +21 -0
  1070. package/lib/module/animation/spring/runSpring.js.map +1 -0
  1071. package/lib/module/animation/spring/types.js +2 -0
  1072. package/lib/module/animation/spring/types.js.map +1 -0
  1073. package/lib/module/animation/spring/useSpring.js +13 -0
  1074. package/lib/module/animation/spring/useSpring.js.map +1 -0
  1075. package/lib/module/animation/timing/Easing.js +98 -0
  1076. package/lib/module/animation/timing/Easing.js.map +1 -0
  1077. package/lib/module/animation/timing/createTiming.js +49 -0
  1078. package/lib/module/animation/timing/createTiming.js.map +1 -0
  1079. package/lib/module/animation/timing/functions/bezier.js +141 -0
  1080. package/lib/module/animation/timing/functions/bezier.js.map +1 -0
  1081. package/lib/module/animation/timing/functions/getResolvedParams.js +48 -0
  1082. package/lib/module/animation/timing/functions/getResolvedParams.js.map +1 -0
  1083. package/lib/module/animation/timing/functions/index.js +5 -0
  1084. package/lib/module/animation/timing/functions/index.js.map +1 -0
  1085. package/lib/module/animation/timing/functions/timing.js +41 -0
  1086. package/lib/module/animation/timing/functions/timing.js.map +1 -0
  1087. package/lib/module/animation/timing/functions/types.js +2 -0
  1088. package/lib/module/animation/timing/functions/types.js.map +1 -0
  1089. package/lib/module/animation/timing/index.js +5 -0
  1090. package/lib/module/animation/timing/index.js.map +1 -0
  1091. package/lib/module/animation/timing/runTiming.js +23 -0
  1092. package/lib/module/animation/timing/runTiming.js.map +1 -0
  1093. package/lib/module/animation/timing/useLoop.js +13 -0
  1094. package/lib/module/animation/timing/useLoop.js.map +1 -0
  1095. package/lib/module/animation/timing/useTiming.js +54 -0
  1096. package/lib/module/animation/timing/useTiming.js.map +1 -0
  1097. package/lib/module/animation/types.js +2 -0
  1098. package/lib/module/animation/types.js.map +1 -0
  1099. package/lib/module/external/index.js +2 -0
  1100. package/lib/module/external/index.js.map +1 -0
  1101. package/lib/module/external/reanimated/index.js +2 -0
  1102. package/lib/module/external/reanimated/index.js.map +1 -0
  1103. package/lib/module/external/reanimated/useSharedValueEffect.js +81 -0
  1104. package/lib/module/external/reanimated/useSharedValueEffect.js.map +1 -0
  1105. package/lib/module/index.js +9 -0
  1106. package/lib/module/index.js.map +1 -0
  1107. package/lib/module/mock/index.js +108 -0
  1108. package/lib/module/mock/index.js.map +1 -0
  1109. package/lib/module/renderer/Canvas.js +131 -0
  1110. package/lib/module/renderer/Canvas.js.map +1 -0
  1111. package/lib/module/renderer/DependencyManager.js +60 -0
  1112. package/lib/module/renderer/DependencyManager.js.map +1 -0
  1113. package/lib/module/renderer/DrawingContext.js +2 -0
  1114. package/lib/module/renderer/DrawingContext.js.map +1 -0
  1115. package/lib/module/renderer/HostConfig.js +237 -0
  1116. package/lib/module/renderer/HostConfig.js.map +1 -0
  1117. package/lib/module/renderer/components/Blend.js +30 -0
  1118. package/lib/module/renderer/components/Blend.js.map +1 -0
  1119. package/lib/module/renderer/components/Compose.js +25 -0
  1120. package/lib/module/renderer/components/Compose.js.map +1 -0
  1121. package/lib/module/renderer/components/Drawing.js +17 -0
  1122. package/lib/module/renderer/components/Drawing.js.map +1 -0
  1123. package/lib/module/renderer/components/Group.js +69 -0
  1124. package/lib/module/renderer/components/Group.js.map +1 -0
  1125. package/lib/module/renderer/components/Mask.js +44 -0
  1126. package/lib/module/renderer/components/Mask.js.map +1 -0
  1127. package/lib/module/renderer/components/Paint.js +19 -0
  1128. package/lib/module/renderer/components/Paint.js.map +1 -0
  1129. package/lib/module/renderer/components/Picture.js +21 -0
  1130. package/lib/module/renderer/components/Picture.js.map +1 -0
  1131. package/lib/module/renderer/components/backdrop/BackdropBlur.js +19 -0
  1132. package/lib/module/renderer/components/backdrop/BackdropBlur.js.map +1 -0
  1133. package/lib/module/renderer/components/backdrop/BackdropFilter.js +39 -0
  1134. package/lib/module/renderer/components/backdrop/BackdropFilter.js.map +1 -0
  1135. package/lib/module/renderer/components/backdrop/index.js +3 -0
  1136. package/lib/module/renderer/components/backdrop/index.js.map +1 -0
  1137. package/lib/module/renderer/components/colorFilters/BlendColor.js +24 -0
  1138. package/lib/module/renderer/components/colorFilters/BlendColor.js.map +1 -0
  1139. package/lib/module/renderer/components/colorFilters/Compose.js +14 -0
  1140. package/lib/module/renderer/components/colorFilters/Compose.js.map +1 -0
  1141. package/lib/module/renderer/components/colorFilters/Lerp.js +23 -0
  1142. package/lib/module/renderer/components/colorFilters/Lerp.js.map +1 -0
  1143. package/lib/module/renderer/components/colorFilters/LinearToSRGBGamma.js +19 -0
  1144. package/lib/module/renderer/components/colorFilters/LinearToSRGBGamma.js.map +1 -0
  1145. package/lib/module/renderer/components/colorFilters/LumaColorFilter.js +19 -0
  1146. package/lib/module/renderer/components/colorFilters/LumaColorFilter.js.map +1 -0
  1147. package/lib/module/renderer/components/colorFilters/Matrix.js +22 -0
  1148. package/lib/module/renderer/components/colorFilters/Matrix.js.map +1 -0
  1149. package/lib/module/renderer/components/colorFilters/SRGBToLinearGamma.js +19 -0
  1150. package/lib/module/renderer/components/colorFilters/SRGBToLinearGamma.js.map +1 -0
  1151. package/lib/module/renderer/components/colorFilters/index.js +7 -0
  1152. package/lib/module/renderer/components/colorFilters/index.js.map +1 -0
  1153. package/lib/module/renderer/components/image/BoxFit.js +144 -0
  1154. package/lib/module/renderer/components/image/BoxFit.js.map +1 -0
  1155. package/lib/module/renderer/components/image/Image.js +40 -0
  1156. package/lib/module/renderer/components/image/Image.js.map +1 -0
  1157. package/lib/module/renderer/components/image/ImageSVG.js +31 -0
  1158. package/lib/module/renderer/components/image/ImageSVG.js.map +1 -0
  1159. package/lib/module/renderer/components/image/ImageShader.js +69 -0
  1160. package/lib/module/renderer/components/image/ImageShader.js.map +1 -0
  1161. package/lib/module/renderer/components/image/index.js +5 -0
  1162. package/lib/module/renderer/components/image/index.js.map +1 -0
  1163. package/lib/module/renderer/components/imageFilters/Blur.js +28 -0
  1164. package/lib/module/renderer/components/imageFilters/Blur.js.map +1 -0
  1165. package/lib/module/renderer/components/imageFilters/DisplacementMap.js +34 -0
  1166. package/lib/module/renderer/components/imageFilters/DisplacementMap.js.map +1 -0
  1167. package/lib/module/renderer/components/imageFilters/InnerShadow.js +17 -0
  1168. package/lib/module/renderer/components/imageFilters/InnerShadow.js.map +1 -0
  1169. package/lib/module/renderer/components/imageFilters/Morphology.js +28 -0
  1170. package/lib/module/renderer/components/imageFilters/Morphology.js.map +1 -0
  1171. package/lib/module/renderer/components/imageFilters/Offset.js +25 -0
  1172. package/lib/module/renderer/components/imageFilters/Offset.js.map +1 -0
  1173. package/lib/module/renderer/components/imageFilters/RuntimeShader.js +28 -0
  1174. package/lib/module/renderer/components/imageFilters/RuntimeShader.js.map +1 -0
  1175. package/lib/module/renderer/components/imageFilters/Shadow.js +38 -0
  1176. package/lib/module/renderer/components/imageFilters/Shadow.js.map +1 -0
  1177. package/lib/module/renderer/components/imageFilters/getInput.js +23 -0
  1178. package/lib/module/renderer/components/imageFilters/getInput.js.map +1 -0
  1179. package/lib/module/renderer/components/imageFilters/index.js +7 -0
  1180. package/lib/module/renderer/components/imageFilters/index.js.map +1 -0
  1181. package/lib/module/renderer/components/index.js +18 -0
  1182. package/lib/module/renderer/components/index.js.map +1 -0
  1183. package/lib/module/renderer/components/maskFilters/Blur.js +27 -0
  1184. package/lib/module/renderer/components/maskFilters/Blur.js.map +1 -0
  1185. package/lib/module/renderer/components/maskFilters/index.js +2 -0
  1186. package/lib/module/renderer/components/maskFilters/index.js.map +1 -0
  1187. package/lib/module/renderer/components/pathEffects/Corner.js +31 -0
  1188. package/lib/module/renderer/components/pathEffects/Corner.js.map +1 -0
  1189. package/lib/module/renderer/components/pathEffects/Dash.js +28 -0
  1190. package/lib/module/renderer/components/pathEffects/Dash.js.map +1 -0
  1191. package/lib/module/renderer/components/pathEffects/Discrete.js +32 -0
  1192. package/lib/module/renderer/components/pathEffects/Discrete.js.map +1 -0
  1193. package/lib/module/renderer/components/pathEffects/Line2D.js +32 -0
  1194. package/lib/module/renderer/components/pathEffects/Line2D.js.map +1 -0
  1195. package/lib/module/renderer/components/pathEffects/Path1D.js +36 -0
  1196. package/lib/module/renderer/components/pathEffects/Path1D.js.map +1 -0
  1197. package/lib/module/renderer/components/pathEffects/Path2D.js +33 -0
  1198. package/lib/module/renderer/components/pathEffects/Path2D.js.map +1 -0
  1199. package/lib/module/renderer/components/pathEffects/Sum.js +18 -0
  1200. package/lib/module/renderer/components/pathEffects/Sum.js.map +1 -0
  1201. package/lib/module/renderer/components/pathEffects/index.js +8 -0
  1202. package/lib/module/renderer/components/pathEffects/index.js.map +1 -0
  1203. package/lib/module/renderer/components/shaders/Color.js +20 -0
  1204. package/lib/module/renderer/components/shaders/Color.js.map +1 -0
  1205. package/lib/module/renderer/components/shaders/FractalNoise.js +29 -0
  1206. package/lib/module/renderer/components/shaders/FractalNoise.js.map +1 -0
  1207. package/lib/module/renderer/components/shaders/Gradient.js +20 -0
  1208. package/lib/module/renderer/components/shaders/Gradient.js.map +1 -0
  1209. package/lib/module/renderer/components/shaders/LinearGradient.js +29 -0
  1210. package/lib/module/renderer/components/shaders/LinearGradient.js.map +1 -0
  1211. package/lib/module/renderer/components/shaders/RadialGradient.js +29 -0
  1212. package/lib/module/renderer/components/shaders/RadialGradient.js.map +1 -0
  1213. package/lib/module/renderer/components/shaders/Shader.js +26 -0
  1214. package/lib/module/renderer/components/shaders/Shader.js.map +1 -0
  1215. package/lib/module/renderer/components/shaders/ShaderLib.js +45 -0
  1216. package/lib/module/renderer/components/shaders/ShaderLib.js.map +1 -0
  1217. package/lib/module/renderer/components/shaders/SweepGradient.js +30 -0
  1218. package/lib/module/renderer/components/shaders/SweepGradient.js.map +1 -0
  1219. package/lib/module/renderer/components/shaders/Turbulence.js +29 -0
  1220. package/lib/module/renderer/components/shaders/Turbulence.js.map +1 -0
  1221. package/lib/module/renderer/components/shaders/TwoPointConicalGradient.js +31 -0
  1222. package/lib/module/renderer/components/shaders/TwoPointConicalGradient.js.map +1 -0
  1223. package/lib/module/renderer/components/shaders/index.js +10 -0
  1224. package/lib/module/renderer/components/shaders/index.js.map +1 -0
  1225. package/lib/module/renderer/components/shapes/Box.js +103 -0
  1226. package/lib/module/renderer/components/shapes/Box.js.map +1 -0
  1227. package/lib/module/renderer/components/shapes/Circle.js +29 -0
  1228. package/lib/module/renderer/components/shapes/Circle.js.map +1 -0
  1229. package/lib/module/renderer/components/shapes/DiffRect.js +21 -0
  1230. package/lib/module/renderer/components/shapes/DiffRect.js.map +1 -0
  1231. package/lib/module/renderer/components/shapes/Fill.js +17 -0
  1232. package/lib/module/renderer/components/shapes/Fill.js.map +1 -0
  1233. package/lib/module/renderer/components/shapes/FitBox.js +23 -0
  1234. package/lib/module/renderer/components/shapes/FitBox.js.map +1 -0
  1235. package/lib/module/renderer/components/shapes/Line.js +21 -0
  1236. package/lib/module/renderer/components/shapes/Line.js.map +1 -0
  1237. package/lib/module/renderer/components/shapes/Oval.js +24 -0
  1238. package/lib/module/renderer/components/shapes/Oval.js.map +1 -0
  1239. package/lib/module/renderer/components/shapes/Patch.js +36 -0
  1240. package/lib/module/renderer/components/shapes/Patch.js.map +1 -0
  1241. package/lib/module/renderer/components/shapes/Path.js +51 -0
  1242. package/lib/module/renderer/components/shapes/Path.js.map +1 -0
  1243. package/lib/module/renderer/components/shapes/Points.js +27 -0
  1244. package/lib/module/renderer/components/shapes/Points.js.map +1 -0
  1245. package/lib/module/renderer/components/shapes/Rect.js +20 -0
  1246. package/lib/module/renderer/components/shapes/Rect.js.map +1 -0
  1247. package/lib/module/renderer/components/shapes/RoundedRect.js +23 -0
  1248. package/lib/module/renderer/components/shapes/RoundedRect.js.map +1 -0
  1249. package/lib/module/renderer/components/shapes/Vertices.js +38 -0
  1250. package/lib/module/renderer/components/shapes/Vertices.js.map +1 -0
  1251. package/lib/module/renderer/components/shapes/index.js +14 -0
  1252. package/lib/module/renderer/components/shapes/index.js.map +1 -0
  1253. package/lib/module/renderer/components/text/Glyphs.js +46 -0
  1254. package/lib/module/renderer/components/text/Glyphs.js.map +1 -0
  1255. package/lib/module/renderer/components/text/Text.js +31 -0
  1256. package/lib/module/renderer/components/text/Text.js.map +1 -0
  1257. package/lib/module/renderer/components/text/TextBlob.js +26 -0
  1258. package/lib/module/renderer/components/text/TextBlob.js.map +1 -0
  1259. package/lib/module/renderer/components/text/TextPath.js +76 -0
  1260. package/lib/module/renderer/components/text/TextPath.js.map +1 -0
  1261. package/lib/module/renderer/components/text/index.js +5 -0
  1262. package/lib/module/renderer/components/text/index.js.map +1 -0
  1263. package/lib/module/renderer/index.js +6 -0
  1264. package/lib/module/renderer/index.js.map +1 -0
  1265. package/lib/module/renderer/nodes/Container.js +18 -0
  1266. package/lib/module/renderer/nodes/Container.js.map +1 -0
  1267. package/lib/module/renderer/nodes/Declaration.js +37 -0
  1268. package/lib/module/renderer/nodes/Declaration.js.map +1 -0
  1269. package/lib/module/renderer/nodes/Drawing.js +40 -0
  1270. package/lib/module/renderer/nodes/Drawing.js.map +1 -0
  1271. package/lib/module/renderer/nodes/Node.js +61 -0
  1272. package/lib/module/renderer/nodes/Node.js.map +1 -0
  1273. package/lib/module/renderer/nodes/index.js +5 -0
  1274. package/lib/module/renderer/nodes/index.js.map +1 -0
  1275. package/lib/module/renderer/processors/Animations/Animations.js +36 -0
  1276. package/lib/module/renderer/processors/Animations/Animations.js.map +1 -0
  1277. package/lib/module/renderer/processors/Animations/index.js +2 -0
  1278. package/lib/module/renderer/processors/Animations/index.js.map +1 -0
  1279. package/lib/module/renderer/processors/Circles.js +15 -0
  1280. package/lib/module/renderer/processors/Circles.js.map +1 -0
  1281. package/lib/module/renderer/processors/Clips.js +13 -0
  1282. package/lib/module/renderer/processors/Clips.js.map +1 -0
  1283. package/lib/module/renderer/processors/Color.js +11 -0
  1284. package/lib/module/renderer/processors/Color.js.map +1 -0
  1285. package/lib/module/renderer/processors/Font.js +27 -0
  1286. package/lib/module/renderer/processors/Font.js.map +1 -0
  1287. package/lib/module/renderer/processors/Paint.js +84 -0
  1288. package/lib/module/renderer/processors/Paint.js.map +1 -0
  1289. package/lib/module/renderer/processors/Paths.js +13 -0
  1290. package/lib/module/renderer/processors/Paths.js.map +1 -0
  1291. package/lib/module/renderer/processors/Radius.js +8 -0
  1292. package/lib/module/renderer/processors/Radius.js.map +1 -0
  1293. package/lib/module/renderer/processors/Rects.js +25 -0
  1294. package/lib/module/renderer/processors/Rects.js.map +1 -0
  1295. package/lib/module/renderer/processors/Transform.js +49 -0
  1296. package/lib/module/renderer/processors/Transform.js.map +1 -0
  1297. package/lib/module/renderer/processors/index.js +12 -0
  1298. package/lib/module/renderer/processors/index.js.map +1 -0
  1299. package/lib/module/renderer/processors/math/Coordinates.js +19 -0
  1300. package/lib/module/renderer/processors/math/Coordinates.js.map +1 -0
  1301. package/lib/module/renderer/processors/math/Math.js +17 -0
  1302. package/lib/module/renderer/processors/math/Math.js.map +1 -0
  1303. package/lib/module/renderer/processors/math/Transforms.js +12 -0
  1304. package/lib/module/renderer/processors/math/Transforms.js.map +1 -0
  1305. package/lib/module/renderer/processors/math/index.js +4 -0
  1306. package/lib/module/renderer/processors/math/index.js.map +1 -0
  1307. package/lib/module/renderer/typeddash.js +26 -0
  1308. package/lib/module/renderer/typeddash.js.map +1 -0
  1309. package/lib/module/renderer/useCanvas.js +13 -0
  1310. package/lib/module/renderer/useCanvas.js.map +1 -0
  1311. package/lib/module/renderer/useContextBridge.js +21 -0
  1312. package/lib/module/renderer/useContextBridge.js.map +1 -0
  1313. package/lib/module/skia/NativeSetup.js +17 -0
  1314. package/lib/module/skia/NativeSetup.js.map +1 -0
  1315. package/lib/module/skia/Skia.js +7 -0
  1316. package/lib/module/skia/Skia.js.map +1 -0
  1317. package/lib/module/skia/Skia.web.js +3 -0
  1318. package/lib/module/skia/Skia.web.js.map +1 -0
  1319. package/lib/module/skia/core/Data.js +53 -0
  1320. package/lib/module/skia/core/Data.js.map +1 -0
  1321. package/lib/module/skia/core/Font.js +22 -0
  1322. package/lib/module/skia/core/Font.js.map +1 -0
  1323. package/lib/module/skia/core/Image.js +8 -0
  1324. package/lib/module/skia/core/Image.js.map +1 -0
  1325. package/lib/module/skia/core/Matrix.js +4 -0
  1326. package/lib/module/skia/core/Matrix.js.map +1 -0
  1327. package/lib/module/skia/core/Paint.js +17 -0
  1328. package/lib/module/skia/core/Paint.js.map +1 -0
  1329. package/lib/module/skia/core/Path.js +53 -0
  1330. package/lib/module/skia/core/Path.js.map +1 -0
  1331. package/lib/module/skia/core/Picture.js +19 -0
  1332. package/lib/module/skia/core/Picture.js.map +1 -0
  1333. package/lib/module/skia/core/RRect.js +3 -0
  1334. package/lib/module/skia/core/RRect.js.map +1 -0
  1335. package/lib/module/skia/core/Rect.js +17 -0
  1336. package/lib/module/skia/core/Rect.js.map +1 -0
  1337. package/lib/module/skia/core/SVG.js +4 -0
  1338. package/lib/module/skia/core/SVG.js.map +1 -0
  1339. package/lib/module/skia/core/Typeface.js +8 -0
  1340. package/lib/module/skia/core/Typeface.js.map +1 -0
  1341. package/lib/module/skia/core/Vector.js +23 -0
  1342. package/lib/module/skia/core/Vector.js.map +1 -0
  1343. package/lib/module/skia/core/index.js +13 -0
  1344. package/lib/module/skia/core/index.js.map +1 -0
  1345. package/lib/module/skia/index.js +4 -0
  1346. package/lib/module/skia/index.js.map +1 -0
  1347. package/lib/module/skia/types/Canvas.js +14 -0
  1348. package/lib/module/skia/types/Canvas.js.map +1 -0
  1349. package/lib/module/skia/types/Color.js +2 -0
  1350. package/lib/module/skia/types/Color.js.map +1 -0
  1351. package/lib/module/skia/types/ColorFilter/ColorFilter.js +2 -0
  1352. package/lib/module/skia/types/ColorFilter/ColorFilter.js.map +1 -0
  1353. package/lib/module/skia/types/ColorFilter/ColorFilterFactory.js +2 -0
  1354. package/lib/module/skia/types/ColorFilter/ColorFilterFactory.js.map +1 -0
  1355. package/lib/module/skia/types/ColorFilter/index.js +3 -0
  1356. package/lib/module/skia/types/ColorFilter/index.js.map +1 -0
  1357. package/lib/module/skia/types/ContourMeasure.js +2 -0
  1358. package/lib/module/skia/types/ContourMeasure.js.map +1 -0
  1359. package/lib/module/skia/types/Data/Data.js +2 -0
  1360. package/lib/module/skia/types/Data/Data.js.map +1 -0
  1361. package/lib/module/skia/types/Data/DataFactory.js +2 -0
  1362. package/lib/module/skia/types/Data/DataFactory.js.map +1 -0
  1363. package/lib/module/skia/types/Data/index.js +3 -0
  1364. package/lib/module/skia/types/Data/index.js.map +1 -0
  1365. package/lib/module/skia/types/Font/Font.js +68 -0
  1366. package/lib/module/skia/types/Font/Font.js.map +1 -0
  1367. package/lib/module/skia/types/Font/index.js +2 -0
  1368. package/lib/module/skia/types/Font/index.js.map +1 -0
  1369. package/lib/module/skia/types/FontMgr/FontMgr.js +2 -0
  1370. package/lib/module/skia/types/FontMgr/FontMgr.js.map +1 -0
  1371. package/lib/module/skia/types/FontMgr/FontMgrFactory.js +2 -0
  1372. package/lib/module/skia/types/FontMgr/FontMgrFactory.js.map +1 -0
  1373. package/lib/module/skia/types/FontMgr/index.js +3 -0
  1374. package/lib/module/skia/types/FontMgr/index.js.map +1 -0
  1375. package/lib/module/skia/types/Image/Image.js +23 -0
  1376. package/lib/module/skia/types/Image/Image.js.map +1 -0
  1377. package/lib/module/skia/types/Image/ImageFactory.js +37 -0
  1378. package/lib/module/skia/types/Image/ImageFactory.js.map +1 -0
  1379. package/lib/module/skia/types/Image/index.js +3 -0
  1380. package/lib/module/skia/types/Image/index.js.map +1 -0
  1381. package/lib/module/skia/types/ImageFilter/ImageFilter.js +11 -0
  1382. package/lib/module/skia/types/ImageFilter/ImageFilter.js.map +1 -0
  1383. package/lib/module/skia/types/ImageFilter/ImageFilterFactory.js +9 -0
  1384. package/lib/module/skia/types/ImageFilter/ImageFilterFactory.js.map +1 -0
  1385. package/lib/module/skia/types/ImageFilter/index.js +3 -0
  1386. package/lib/module/skia/types/ImageFilter/index.js.map +1 -0
  1387. package/lib/module/skia/types/JsiInstance.js +2 -0
  1388. package/lib/module/skia/types/JsiInstance.js.map +1 -0
  1389. package/lib/module/skia/types/MaskFilter.js +11 -0
  1390. package/lib/module/skia/types/MaskFilter.js.map +1 -0
  1391. package/lib/module/skia/types/Matrix.js +69 -0
  1392. package/lib/module/skia/types/Matrix.js.map +1 -0
  1393. package/lib/module/skia/types/Paint/BlendMode.js +61 -0
  1394. package/lib/module/skia/types/Paint/BlendMode.js.map +1 -0
  1395. package/lib/module/skia/types/Paint/Paint.js +25 -0
  1396. package/lib/module/skia/types/Paint/Paint.js.map +1 -0
  1397. package/lib/module/skia/types/Paint/index.js +3 -0
  1398. package/lib/module/skia/types/Paint/index.js.map +1 -0
  1399. package/lib/module/skia/types/Path/Path.js +35 -0
  1400. package/lib/module/skia/types/Path/Path.js.map +1 -0
  1401. package/lib/module/skia/types/Path/PathFactory.js +2 -0
  1402. package/lib/module/skia/types/Path/PathFactory.js.map +1 -0
  1403. package/lib/module/skia/types/Path/index.js +3 -0
  1404. package/lib/module/skia/types/Path/index.js.map +1 -0
  1405. package/lib/module/skia/types/PathEffect.js +9 -0
  1406. package/lib/module/skia/types/PathEffect.js.map +1 -0
  1407. package/lib/module/skia/types/Picture/Picture.js +2 -0
  1408. package/lib/module/skia/types/Picture/Picture.js.map +1 -0
  1409. package/lib/module/skia/types/Picture/PictureFactory.js +2 -0
  1410. package/lib/module/skia/types/Picture/PictureFactory.js.map +1 -0
  1411. package/lib/module/skia/types/Picture/PictureRecorder.js +2 -0
  1412. package/lib/module/skia/types/Picture/PictureRecorder.js.map +1 -0
  1413. package/lib/module/skia/types/Picture/index.js +4 -0
  1414. package/lib/module/skia/types/Picture/index.js.map +1 -0
  1415. package/lib/module/skia/types/Point.js +8 -0
  1416. package/lib/module/skia/types/Point.js.map +1 -0
  1417. package/lib/module/skia/types/RRect.js +4 -0
  1418. package/lib/module/skia/types/RRect.js.map +1 -0
  1419. package/lib/module/skia/types/RSXform.js +2 -0
  1420. package/lib/module/skia/types/RSXform.js.map +1 -0
  1421. package/lib/module/skia/types/Rect.js +2 -0
  1422. package/lib/module/skia/types/Rect.js.map +1 -0
  1423. package/lib/module/skia/types/RuntimeEffect/RuntimeEffect.js +2 -0
  1424. package/lib/module/skia/types/RuntimeEffect/RuntimeEffect.js.map +1 -0
  1425. package/lib/module/skia/types/RuntimeEffect/RuntimeEffectFactory.js +2 -0
  1426. package/lib/module/skia/types/RuntimeEffect/RuntimeEffectFactory.js.map +1 -0
  1427. package/lib/module/skia/types/RuntimeEffect/index.js +3 -0
  1428. package/lib/module/skia/types/RuntimeEffect/index.js.map +1 -0
  1429. package/lib/module/skia/types/SVG/SVG.js +2 -0
  1430. package/lib/module/skia/types/SVG/SVG.js.map +1 -0
  1431. package/lib/module/skia/types/SVG/SVGFactory.js +2 -0
  1432. package/lib/module/skia/types/SVG/SVGFactory.js.map +1 -0
  1433. package/lib/module/skia/types/SVG/index.js +3 -0
  1434. package/lib/module/skia/types/SVG/index.js.map +1 -0
  1435. package/lib/module/skia/types/Shader/Shader.js +44 -0
  1436. package/lib/module/skia/types/Shader/Shader.js.map +1 -0
  1437. package/lib/module/skia/types/Shader/ShaderFactory.js +2 -0
  1438. package/lib/module/skia/types/Shader/ShaderFactory.js.map +1 -0
  1439. package/lib/module/skia/types/Shader/index.js +3 -0
  1440. package/lib/module/skia/types/Shader/index.js.map +1 -0
  1441. package/lib/module/skia/types/Skia.js +2 -0
  1442. package/lib/module/skia/types/Skia.js.map +1 -0
  1443. package/lib/module/skia/types/Surface/Surface.js +2 -0
  1444. package/lib/module/skia/types/Surface/Surface.js.map +1 -0
  1445. package/lib/module/skia/types/Surface/SurfaceFactory.js +2 -0
  1446. package/lib/module/skia/types/Surface/SurfaceFactory.js.map +1 -0
  1447. package/lib/module/skia/types/Surface/index.js +3 -0
  1448. package/lib/module/skia/types/Surface/index.js.map +1 -0
  1449. package/lib/module/skia/types/TextBlob.js +2 -0
  1450. package/lib/module/skia/types/TextBlob.js.map +1 -0
  1451. package/lib/module/skia/types/Typeface/Typeface.js +2 -0
  1452. package/lib/module/skia/types/Typeface/Typeface.js.map +1 -0
  1453. package/lib/module/skia/types/Typeface/TypefaceFactory.js +2 -0
  1454. package/lib/module/skia/types/Typeface/TypefaceFactory.js.map +1 -0
  1455. package/lib/module/skia/types/Typeface/index.js +3 -0
  1456. package/lib/module/skia/types/Typeface/index.js.map +1 -0
  1457. package/lib/module/skia/types/Vertices/Vertices.js +8 -0
  1458. package/lib/module/skia/types/Vertices/Vertices.js.map +1 -0
  1459. package/lib/module/skia/types/Vertices/index.js +2 -0
  1460. package/lib/module/skia/types/Vertices/index.js.map +1 -0
  1461. package/lib/module/skia/types/index.js +29 -0
  1462. package/lib/module/skia/types/index.js.map +1 -0
  1463. package/lib/module/skia/web/Host.js +42 -0
  1464. package/lib/module/skia/web/Host.js.map +1 -0
  1465. package/lib/module/skia/web/JsiSkCanvas.js +173 -0
  1466. package/lib/module/skia/web/JsiSkCanvas.js.map +1 -0
  1467. package/lib/module/skia/web/JsiSkColor.js +330 -0
  1468. package/lib/module/skia/web/JsiSkColor.js.map +1 -0
  1469. package/lib/module/skia/web/JsiSkColorFilter.js +8 -0
  1470. package/lib/module/skia/web/JsiSkColorFilter.js.map +1 -0
  1471. package/lib/module/skia/web/JsiSkColorFilterFactory.js +37 -0
  1472. package/lib/module/skia/web/JsiSkColorFilterFactory.js.map +1 -0
  1473. package/lib/module/skia/web/JsiSkContourMeasure.js +31 -0
  1474. package/lib/module/skia/web/JsiSkContourMeasure.js.map +1 -0
  1475. package/lib/module/skia/web/JsiSkContourMeasureIter.js +19 -0
  1476. package/lib/module/skia/web/JsiSkContourMeasureIter.js.map +1 -0
  1477. package/lib/module/skia/web/JsiSkData.js +8 -0
  1478. package/lib/module/skia/web/JsiSkData.js.map +1 -0
  1479. package/lib/module/skia/web/JsiSkDataFactory.js +33 -0
  1480. package/lib/module/skia/web/JsiSkDataFactory.js.map +1 -0
  1481. package/lib/module/skia/web/JsiSkFont.js +107 -0
  1482. package/lib/module/skia/web/JsiSkFont.js.map +1 -0
  1483. package/lib/module/skia/web/JsiSkFontMgr.js +23 -0
  1484. package/lib/module/skia/web/JsiSkFontMgr.js.map +1 -0
  1485. package/lib/module/skia/web/JsiSkFontMgrFactory.js +14 -0
  1486. package/lib/module/skia/web/JsiSkFontMgrFactory.js.map +1 -0
  1487. package/lib/module/skia/web/JsiSkImage.js +49 -0
  1488. package/lib/module/skia/web/JsiSkImage.js.map +1 -0
  1489. package/lib/module/skia/web/JsiSkImageFactory.js +36 -0
  1490. package/lib/module/skia/web/JsiSkImageFactory.js.map +1 -0
  1491. package/lib/module/skia/web/JsiSkImageFilter.js +8 -0
  1492. package/lib/module/skia/web/JsiSkImageFilter.js.map +1 -0
  1493. package/lib/module/skia/web/JsiSkImageFilterFactory.js +57 -0
  1494. package/lib/module/skia/web/JsiSkImageFilterFactory.js.map +1 -0
  1495. package/lib/module/skia/web/JsiSkMaskFilter.js +8 -0
  1496. package/lib/module/skia/web/JsiSkMaskFilter.js.map +1 -0
  1497. package/lib/module/skia/web/JsiSkMaskFilterFactory.js +13 -0
  1498. package/lib/module/skia/web/JsiSkMaskFilterFactory.js.map +1 -0
  1499. package/lib/module/skia/web/JsiSkMatrix.js +28 -0
  1500. package/lib/module/skia/web/JsiSkMatrix.js.map +1 -0
  1501. package/lib/module/skia/web/JsiSkPaint.js +91 -0
  1502. package/lib/module/skia/web/JsiSkPaint.js.map +1 -0
  1503. package/lib/module/skia/web/JsiSkPath.js +324 -0
  1504. package/lib/module/skia/web/JsiSkPath.js.map +1 -0
  1505. package/lib/module/skia/web/JsiSkPathEffect.js +8 -0
  1506. package/lib/module/skia/web/JsiSkPathEffect.js.map +1 -0
  1507. package/lib/module/skia/web/JsiSkPathEffectFactory.js +67 -0
  1508. package/lib/module/skia/web/JsiSkPathEffectFactory.js.map +1 -0
  1509. package/lib/module/skia/web/JsiSkPathFactory.js +47 -0
  1510. package/lib/module/skia/web/JsiSkPathFactory.js.map +1 -0
  1511. package/lib/module/skia/web/JsiSkPicture.js +18 -0
  1512. package/lib/module/skia/web/JsiSkPicture.js.map +1 -0
  1513. package/lib/module/skia/web/JsiSkPictureFactory.js +19 -0
  1514. package/lib/module/skia/web/JsiSkPictureFactory.js.map +1 -0
  1515. package/lib/module/skia/web/JsiSkPictureRecorder.js +18 -0
  1516. package/lib/module/skia/web/JsiSkPictureRecorder.js.map +1 -0
  1517. package/lib/module/skia/web/JsiSkPoint.js +16 -0
  1518. package/lib/module/skia/web/JsiSkPoint.js.map +1 -0
  1519. package/lib/module/skia/web/JsiSkRRect.js +21 -0
  1520. package/lib/module/skia/web/JsiSkRRect.js.map +1 -0
  1521. package/lib/module/skia/web/JsiSkRSXform.js +8 -0
  1522. package/lib/module/skia/web/JsiSkRSXform.js.map +1 -0
  1523. package/lib/module/skia/web/JsiSkRect.js +32 -0
  1524. package/lib/module/skia/web/JsiSkRect.js.map +1 -0
  1525. package/lib/module/skia/web/JsiSkRuntimeEffect.js +33 -0
  1526. package/lib/module/skia/web/JsiSkRuntimeEffect.js.map +1 -0
  1527. package/lib/module/skia/web/JsiSkRuntimeEffectFactory.js +19 -0
  1528. package/lib/module/skia/web/JsiSkRuntimeEffectFactory.js.map +1 -0
  1529. package/lib/module/skia/web/JsiSkSVGFactory.js +16 -0
  1530. package/lib/module/skia/web/JsiSkSVGFactory.js.map +1 -0
  1531. package/lib/module/skia/web/JsiSkShader.js +8 -0
  1532. package/lib/module/skia/web/JsiSkShader.js.map +1 -0
  1533. package/lib/module/skia/web/JsiSkShaderFactory.js +41 -0
  1534. package/lib/module/skia/web/JsiSkShaderFactory.js.map +1 -0
  1535. package/lib/module/skia/web/JsiSkSurface.js +19 -0
  1536. package/lib/module/skia/web/JsiSkSurface.js.map +1 -0
  1537. package/lib/module/skia/web/JsiSkSurfaceFactory.js +19 -0
  1538. package/lib/module/skia/web/JsiSkSurfaceFactory.js.map +1 -0
  1539. package/lib/module/skia/web/JsiSkTextBlob.js +8 -0
  1540. package/lib/module/skia/web/JsiSkTextBlob.js.map +1 -0
  1541. package/lib/module/skia/web/JsiSkTextBlobFactory.js +25 -0
  1542. package/lib/module/skia/web/JsiSkTextBlobFactory.js.map +1 -0
  1543. package/lib/module/skia/web/JsiSkTypeface.js +18 -0
  1544. package/lib/module/skia/web/JsiSkTypeface.js.map +1 -0
  1545. package/lib/module/skia/web/JsiSkTypefaceFactory.js +19 -0
  1546. package/lib/module/skia/web/JsiSkTypefaceFactory.js.map +1 -0
  1547. package/lib/module/skia/web/JsiSkVertices.js +17 -0
  1548. package/lib/module/skia/web/JsiSkVertices.js.map +1 -0
  1549. package/lib/module/skia/web/JsiSkVerticesFactory.js +39 -0
  1550. package/lib/module/skia/web/JsiSkVerticesFactory.js.map +1 -0
  1551. package/lib/module/skia/web/JsiSkia.js +61 -0
  1552. package/lib/module/skia/web/JsiSkia.js.map +1 -0
  1553. package/lib/module/skia/web/index.js +2 -0
  1554. package/lib/module/skia/web/index.js.map +1 -0
  1555. package/lib/module/values/api.js +5 -0
  1556. package/lib/module/values/api.js.map +1 -0
  1557. package/lib/module/values/api.web.js +7 -0
  1558. package/lib/module/values/api.web.js.map +1 -0
  1559. package/lib/module/values/hooks/index.js +5 -0
  1560. package/lib/module/values/hooks/index.js.map +1 -0
  1561. package/lib/module/values/hooks/useClockValue.js +17 -0
  1562. package/lib/module/values/hooks/useClockValue.js.map +1 -0
  1563. package/lib/module/values/hooks/useComputedValue.js +18 -0
  1564. package/lib/module/values/hooks/useComputedValue.js.map +1 -0
  1565. package/lib/module/values/hooks/useValue.js +13 -0
  1566. package/lib/module/values/hooks/useValue.js.map +1 -0
  1567. package/lib/module/values/hooks/useValueEffect.js +13 -0
  1568. package/lib/module/values/hooks/useValueEffect.js.map +1 -0
  1569. package/lib/module/values/index.js +4 -0
  1570. package/lib/module/values/index.js.map +1 -0
  1571. package/lib/module/values/types.js +2 -0
  1572. package/lib/module/values/types.js.map +1 -0
  1573. package/lib/module/values/web/RNSkAnimation.js +36 -0
  1574. package/lib/module/values/web/RNSkAnimation.js.map +1 -0
  1575. package/lib/module/values/web/RNSkClockValue.js +65 -0
  1576. package/lib/module/values/web/RNSkClockValue.js.map +1 -0
  1577. package/lib/module/values/web/RNSkComputedValue.js +41 -0
  1578. package/lib/module/values/web/RNSkComputedValue.js.map +1 -0
  1579. package/lib/module/values/web/RNSkReadonlyValue.js +36 -0
  1580. package/lib/module/values/web/RNSkReadonlyValue.js.map +1 -0
  1581. package/lib/module/values/web/RNSkValue.js +63 -0
  1582. package/lib/module/values/web/RNSkValue.js.map +1 -0
  1583. package/lib/module/values/web/api.js +19 -0
  1584. package/lib/module/values/web/api.js.map +1 -0
  1585. package/lib/module/values/web/index.js +2 -0
  1586. package/lib/module/values/web/index.js.map +1 -0
  1587. package/lib/module/views/SkiaView.js +109 -0
  1588. package/lib/module/views/SkiaView.js.map +1 -0
  1589. package/lib/module/views/SkiaView.web.js +202 -0
  1590. package/lib/module/views/SkiaView.web.js.map +1 -0
  1591. package/lib/module/views/api.js +4 -0
  1592. package/lib/module/views/api.js.map +1 -0
  1593. package/lib/module/views/index.js +5 -0
  1594. package/lib/module/views/index.js.map +1 -0
  1595. package/lib/module/views/types.js +9 -0
  1596. package/lib/module/views/types.js.map +1 -0
  1597. package/lib/module/views/useDrawCallback.js +14 -0
  1598. package/lib/module/views/useDrawCallback.js.map +1 -0
  1599. package/lib/module/views/useTouchHandler.js +85 -0
  1600. package/lib/module/views/useTouchHandler.js.map +1 -0
  1601. package/lib/module/web/index.js +10 -0
  1602. package/lib/module/web/index.js.map +1 -0
  1603. package/lib/typescript/index.d.ts +1 -0
  1604. package/lib/typescript/jestSetup.d.ts +1 -0
  1605. package/lib/typescript/src/animation/decay/decay.d.ts +2 -0
  1606. package/lib/typescript/src/animation/decay/index.d.ts +1 -0
  1607. package/lib/typescript/src/animation/decay/runDecay.d.ts +10 -0
  1608. package/lib/typescript/src/animation/decay/types.d.ts +21 -0
  1609. package/lib/typescript/src/animation/functions/index.d.ts +4 -0
  1610. package/lib/typescript/src/animation/functions/interpolate.d.ts +17 -0
  1611. package/lib/typescript/src/animation/functions/interpolateColors.d.ts +3 -0
  1612. package/lib/typescript/src/animation/functions/interpolatePaths.d.ts +19 -0
  1613. package/lib/typescript/src/animation/functions/interpolateVector.d.ts +10 -0
  1614. package/lib/typescript/src/animation/index.d.ts +4 -0
  1615. package/lib/typescript/src/animation/spring/Spring.d.ts +65 -0
  1616. package/lib/typescript/src/animation/spring/functions/index.d.ts +1 -0
  1617. package/lib/typescript/src/animation/spring/functions/spring.d.ts +10 -0
  1618. package/lib/typescript/src/animation/spring/index.d.ts +3 -0
  1619. package/lib/typescript/src/animation/spring/runSpring.d.ts +16 -0
  1620. package/lib/typescript/src/animation/spring/types.d.ts +6 -0
  1621. package/lib/typescript/src/animation/spring/useSpring.d.ts +10 -0
  1622. package/lib/typescript/src/animation/timing/Easing.d.ts +19 -0
  1623. package/lib/typescript/src/animation/timing/createTiming.d.ts +17 -0
  1624. package/lib/typescript/src/animation/timing/functions/bezier.d.ts +1 -0
  1625. package/lib/typescript/src/animation/timing/functions/getResolvedParams.d.ts +7 -0
  1626. package/lib/typescript/src/animation/timing/functions/index.d.ts +4 -0
  1627. package/lib/typescript/src/animation/timing/functions/timing.d.ts +17 -0
  1628. package/lib/typescript/src/animation/timing/functions/types.d.ts +7 -0
  1629. package/lib/typescript/src/animation/timing/index.d.ts +4 -0
  1630. package/lib/typescript/src/animation/timing/runTiming.d.ts +16 -0
  1631. package/lib/typescript/src/animation/timing/useLoop.d.ts +8 -0
  1632. package/lib/typescript/src/animation/timing/useTiming.d.ts +10 -0
  1633. package/lib/typescript/src/animation/types.d.ts +18 -0
  1634. package/lib/typescript/src/external/index.d.ts +1 -0
  1635. package/lib/typescript/src/external/reanimated/index.d.ts +1 -0
  1636. package/lib/typescript/src/external/reanimated/useSharedValueEffect.d.ts +11 -0
  1637. package/lib/typescript/src/index.d.ts +8 -0
  1638. package/lib/typescript/src/mock/index.d.ts +16 -0
  1639. package/lib/typescript/src/renderer/Canvas.d.ts +16 -0
  1640. package/lib/typescript/src/renderer/DependencyManager.d.ts +21 -0
  1641. package/lib/typescript/src/renderer/DrawingContext.d.ts +12 -0
  1642. package/lib/typescript/src/renderer/HostConfig.d.ts +27 -0
  1643. package/lib/typescript/src/renderer/components/Blend.d.ts +9 -0
  1644. package/lib/typescript/src/renderer/components/Compose.d.ts +6 -0
  1645. package/lib/typescript/src/renderer/components/Drawing.d.ts +7 -0
  1646. package/lib/typescript/src/renderer/components/Group.d.ts +9 -0
  1647. package/lib/typescript/src/renderer/components/Mask.d.ts +15 -0
  1648. package/lib/typescript/src/renderer/components/Paint.d.ts +9 -0
  1649. package/lib/typescript/src/renderer/components/Picture.d.ts +6 -0
  1650. package/lib/typescript/src/renderer/components/backdrop/BackdropBlur.d.ts +8 -0
  1651. package/lib/typescript/src/renderer/components/backdrop/BackdropFilter.d.ts +7 -0
  1652. package/lib/typescript/src/renderer/components/backdrop/index.d.ts +2 -0
  1653. package/lib/typescript/src/renderer/components/colorFilters/BlendColor.d.ts +10 -0
  1654. package/lib/typescript/src/renderer/components/colorFilters/Compose.d.ts +3 -0
  1655. package/lib/typescript/src/renderer/components/colorFilters/Lerp.d.ts +7 -0
  1656. package/lib/typescript/src/renderer/components/colorFilters/LinearToSRGBGamma.d.ts +5 -0
  1657. package/lib/typescript/src/renderer/components/colorFilters/LumaColorFilter.d.ts +5 -0
  1658. package/lib/typescript/src/renderer/components/colorFilters/Matrix.d.ts +9 -0
  1659. package/lib/typescript/src/renderer/components/colorFilters/SRGBToLinearGamma.d.ts +5 -0
  1660. package/lib/typescript/src/renderer/components/colorFilters/index.d.ts +6 -0
  1661. package/lib/typescript/src/renderer/components/image/BoxFit.d.ts +33 -0
  1662. package/lib/typescript/src/renderer/components/image/Image.d.ts +19 -0
  1663. package/lib/typescript/src/renderer/components/image/ImageSVG.d.ts +7 -0
  1664. package/lib/typescript/src/renderer/components/image/ImageShader.d.ts +26 -0
  1665. package/lib/typescript/src/renderer/components/image/index.d.ts +4 -0
  1666. package/lib/typescript/src/renderer/components/imageFilters/Blur.d.ts +15 -0
  1667. package/lib/typescript/src/renderer/components/imageFilters/DisplacementMap.d.ts +10 -0
  1668. package/lib/typescript/src/renderer/components/imageFilters/InnerShadow.d.ts +2 -0
  1669. package/lib/typescript/src/renderer/components/imageFilters/Morphology.d.ts +13 -0
  1670. package/lib/typescript/src/renderer/components/imageFilters/Offset.d.ts +14 -0
  1671. package/lib/typescript/src/renderer/components/imageFilters/RuntimeShader.d.ts +8 -0
  1672. package/lib/typescript/src/renderer/components/imageFilters/Shadow.d.ts +12 -0
  1673. package/lib/typescript/src/renderer/components/imageFilters/getInput.d.ts +3 -0
  1674. package/lib/typescript/src/renderer/components/imageFilters/index.d.ts +6 -0
  1675. package/lib/typescript/src/renderer/components/index.d.ts +17 -0
  1676. package/lib/typescript/src/renderer/components/maskFilters/Blur.d.ts +16 -0
  1677. package/lib/typescript/src/renderer/components/maskFilters/index.d.ts +1 -0
  1678. package/lib/typescript/src/renderer/components/pathEffects/Corner.d.ts +7 -0
  1679. package/lib/typescript/src/renderer/components/pathEffects/Dash.d.ts +8 -0
  1680. package/lib/typescript/src/renderer/components/pathEffects/Discrete.d.ts +14 -0
  1681. package/lib/typescript/src/renderer/components/pathEffects/Line2D.d.ts +9 -0
  1682. package/lib/typescript/src/renderer/components/pathEffects/Path1D.d.ts +13 -0
  1683. package/lib/typescript/src/renderer/components/pathEffects/Path2D.d.ts +10 -0
  1684. package/lib/typescript/src/renderer/components/pathEffects/Sum.d.ts +6 -0
  1685. package/lib/typescript/src/renderer/components/pathEffects/index.d.ts +7 -0
  1686. package/lib/typescript/src/renderer/components/shaders/Color.d.ts +7 -0
  1687. package/lib/typescript/src/renderer/components/shaders/FractalNoise.d.ts +18 -0
  1688. package/lib/typescript/src/renderer/components/shaders/Gradient.d.ts +17 -0
  1689. package/lib/typescript/src/renderer/components/shaders/LinearGradient.d.ts +9 -0
  1690. package/lib/typescript/src/renderer/components/shaders/RadialGradient.d.ts +9 -0
  1691. package/lib/typescript/src/renderer/components/shaders/Shader.d.ts +14 -0
  1692. package/lib/typescript/src/renderer/components/shaders/ShaderLib.d.ts +4 -0
  1693. package/lib/typescript/src/renderer/components/shaders/SweepGradient.d.ts +10 -0
  1694. package/lib/typescript/src/renderer/components/shaders/Turbulence.d.ts +18 -0
  1695. package/lib/typescript/src/renderer/components/shaders/TwoPointConicalGradient.d.ts +11 -0
  1696. package/lib/typescript/src/renderer/components/shaders/index.d.ts +9 -0
  1697. package/lib/typescript/src/renderer/components/shapes/Box.d.ts +22 -0
  1698. package/lib/typescript/src/renderer/components/shapes/Circle.d.ts +12 -0
  1699. package/lib/typescript/src/renderer/components/shapes/DiffRect.d.ts +9 -0
  1700. package/lib/typescript/src/renderer/components/shapes/Fill.d.ts +5 -0
  1701. package/lib/typescript/src/renderer/components/shapes/FitBox.d.ts +25 -0
  1702. package/lib/typescript/src/renderer/components/shapes/Line.d.ts +8 -0
  1703. package/lib/typescript/src/renderer/components/shapes/Oval.d.ts +10 -0
  1704. package/lib/typescript/src/renderer/components/shapes/Patch.d.ts +21 -0
  1705. package/lib/typescript/src/renderer/components/shapes/Path.d.ts +23 -0
  1706. package/lib/typescript/src/renderer/components/shapes/Points.d.ts +15 -0
  1707. package/lib/typescript/src/renderer/components/shapes/Rect.d.ts +4 -0
  1708. package/lib/typescript/src/renderer/components/shapes/RoundedRect.d.ts +9 -0
  1709. package/lib/typescript/src/renderer/components/shapes/Vertices.d.ts +18 -0
  1710. package/lib/typescript/src/renderer/components/shapes/index.d.ts +13 -0
  1711. package/lib/typescript/src/renderer/components/text/Glyphs.d.ts +20 -0
  1712. package/lib/typescript/src/renderer/components/text/Text.d.ts +15 -0
  1713. package/lib/typescript/src/renderer/components/text/TextBlob.d.ts +15 -0
  1714. package/lib/typescript/src/renderer/components/text/TextPath.d.ts +15 -0
  1715. package/lib/typescript/src/renderer/components/text/index.d.ts +4 -0
  1716. package/lib/typescript/src/renderer/index.d.ts +5 -0
  1717. package/lib/typescript/src/renderer/nodes/Container.d.ts +8 -0
  1718. package/lib/typescript/src/renderer/nodes/Declaration.d.ts +22 -0
  1719. package/lib/typescript/src/renderer/nodes/Drawing.d.ts +21 -0
  1720. package/lib/typescript/src/renderer/nodes/Node.d.ts +23 -0
  1721. package/lib/typescript/src/renderer/nodes/index.d.ts +4 -0
  1722. package/lib/typescript/src/renderer/processors/Animations/Animations.d.ts +7 -0
  1723. package/lib/typescript/src/renderer/processors/Animations/index.d.ts +1 -0
  1724. package/lib/typescript/src/renderer/processors/Circles.d.ts +13 -0
  1725. package/lib/typescript/src/renderer/processors/Clips.d.ts +4 -0
  1726. package/lib/typescript/src/renderer/processors/Color.d.ts +7 -0
  1727. package/lib/typescript/src/renderer/processors/Font.d.ts +11 -0
  1728. package/lib/typescript/src/renderer/processors/Paint.d.ts +22 -0
  1729. package/lib/typescript/src/renderer/processors/Paths.d.ts +4 -0
  1730. package/lib/typescript/src/renderer/processors/Radius.d.ts +3 -0
  1731. package/lib/typescript/src/renderer/processors/Rects.d.ts +20 -0
  1732. package/lib/typescript/src/renderer/processors/Transform.d.ts +90 -0
  1733. package/lib/typescript/src/renderer/processors/index.d.ts +11 -0
  1734. package/lib/typescript/src/renderer/processors/math/Coordinates.d.ts +29 -0
  1735. package/lib/typescript/src/renderer/processors/math/Math.d.ts +15 -0
  1736. package/lib/typescript/src/renderer/processors/math/Transforms.d.ts +5 -0
  1737. package/lib/typescript/src/renderer/processors/math/index.d.ts +3 -0
  1738. package/lib/typescript/src/renderer/typeddash.d.ts +3 -0
  1739. package/lib/typescript/src/renderer/useCanvas.d.ts +14 -0
  1740. package/lib/typescript/src/renderer/useContextBridge.d.ts +5 -0
  1741. package/lib/typescript/src/skia/NativeSetup.d.ts +1 -0
  1742. package/lib/typescript/src/skia/Skia.d.ts +8 -0
  1743. package/lib/typescript/src/skia/Skia.web.d.ts +1 -0
  1744. package/lib/typescript/src/skia/core/Data.d.ts +5 -0
  1745. package/lib/typescript/src/skia/core/Font.d.ts +5 -0
  1746. package/lib/typescript/src/skia/core/Image.d.ts +5 -0
  1747. package/lib/typescript/src/skia/core/Matrix.d.ts +2 -0
  1748. package/lib/typescript/src/skia/core/Paint.d.ts +6 -0
  1749. package/lib/typescript/src/skia/core/Path.d.ts +21 -0
  1750. package/lib/typescript/src/skia/core/Picture.d.ts +9 -0
  1751. package/lib/typescript/src/skia/core/RRect.d.ts +2 -0
  1752. package/lib/typescript/src/skia/core/Rect.d.ts +8 -0
  1753. package/lib/typescript/src/skia/core/SVG.d.ts +2 -0
  1754. package/lib/typescript/src/skia/core/Typeface.d.ts +5 -0
  1755. package/lib/typescript/src/skia/core/Vector.d.ts +12 -0
  1756. package/lib/typescript/src/skia/core/index.d.ts +12 -0
  1757. package/lib/typescript/src/skia/index.d.ts +3 -0
  1758. package/lib/typescript/src/skia/types/Canvas.d.ts +381 -0
  1759. package/lib/typescript/src/skia/types/Color.d.ts +2 -0
  1760. package/lib/typescript/src/skia/types/ColorFilter/ColorFilter.d.ts +3 -0
  1761. package/lib/typescript/src/skia/types/ColorFilter/ColorFilterFactory.d.ts +43 -0
  1762. package/lib/typescript/src/skia/types/ColorFilter/index.d.ts +2 -0
  1763. package/lib/typescript/src/skia/types/ContourMeasure.d.ts +40 -0
  1764. package/lib/typescript/src/skia/types/Data/Data.d.ts +5 -0
  1765. package/lib/typescript/src/skia/types/Data/DataFactory.d.ts +18 -0
  1766. package/lib/typescript/src/skia/types/Data/index.d.ts +2 -0
  1767. package/lib/typescript/src/skia/types/Font/Font.d.ts +192 -0
  1768. package/lib/typescript/src/skia/types/Font/index.d.ts +1 -0
  1769. package/lib/typescript/src/skia/types/FontMgr/FontMgr.d.ts +18 -0
  1770. package/lib/typescript/src/skia/types/FontMgr/FontMgrFactory.d.ts +4 -0
  1771. package/lib/typescript/src/skia/types/FontMgr/index.d.ts +2 -0
  1772. package/lib/typescript/src/skia/types/Image/Image.d.ts +75 -0
  1773. package/lib/typescript/src/skia/types/Image/ImageFactory.d.ts +62 -0
  1774. package/lib/typescript/src/skia/types/Image/index.d.ts +2 -0
  1775. package/lib/typescript/src/skia/types/ImageFilter/ImageFilter.d.ts +23 -0
  1776. package/lib/typescript/src/skia/types/ImageFilter/ImageFilterFactory.d.ts +130 -0
  1777. package/lib/typescript/src/skia/types/ImageFilter/index.d.ts +2 -0
  1778. package/lib/typescript/src/skia/types/JsiInstance.d.ts +3 -0
  1779. package/lib/typescript/src/skia/types/MaskFilter.d.ts +21 -0
  1780. package/lib/typescript/src/skia/types/Matrix.d.ts +29 -0
  1781. package/lib/typescript/src/skia/types/Paint/BlendMode.d.ts +58 -0
  1782. package/lib/typescript/src/skia/types/Paint/Paint.d.ts +127 -0
  1783. package/lib/typescript/src/skia/types/Paint/index.d.ts +2 -0
  1784. package/lib/typescript/src/skia/types/Path/Path.d.ts +461 -0
  1785. package/lib/typescript/src/skia/types/Path/PathFactory.d.ts +29 -0
  1786. package/lib/typescript/src/skia/types/Path/index.d.ts +2 -0
  1787. package/lib/typescript/src/skia/types/PathEffect.d.ts +75 -0
  1788. package/lib/typescript/src/skia/types/Picture/Picture.d.ts +26 -0
  1789. package/lib/typescript/src/skia/types/Picture/PictureFactory.d.ts +8 -0
  1790. package/lib/typescript/src/skia/types/Picture/PictureRecorder.d.ts +15 -0
  1791. package/lib/typescript/src/skia/types/Picture/index.d.ts +3 -0
  1792. package/lib/typescript/src/skia/types/Point.d.ts +10 -0
  1793. package/lib/typescript/src/skia/types/RRect.d.ts +7 -0
  1794. package/lib/typescript/src/skia/types/RSXform.d.ts +2 -0
  1795. package/lib/typescript/src/skia/types/Rect.d.ts +6 -0
  1796. package/lib/typescript/src/skia/types/RuntimeEffect/RuntimeEffect.d.ts +48 -0
  1797. package/lib/typescript/src/skia/types/RuntimeEffect/RuntimeEffectFactory.d.ts +10 -0
  1798. package/lib/typescript/src/skia/types/RuntimeEffect/index.d.ts +2 -0
  1799. package/lib/typescript/src/skia/types/SVG/SVG.d.ts +2 -0
  1800. package/lib/typescript/src/skia/types/SVG/SVGFactory.d.ts +6 -0
  1801. package/lib/typescript/src/skia/types/SVG/index.d.ts +2 -0
  1802. package/lib/typescript/src/skia/types/Shader/Shader.d.ts +11 -0
  1803. package/lib/typescript/src/skia/types/Shader/ShaderFactory.d.ts +104 -0
  1804. package/lib/typescript/src/skia/types/Shader/index.d.ts +2 -0
  1805. package/lib/typescript/src/skia/types/Skia.d.ts +68 -0
  1806. package/lib/typescript/src/skia/types/Surface/Surface.d.ts +25 -0
  1807. package/lib/typescript/src/skia/types/Surface/SurfaceFactory.d.ts +11 -0
  1808. package/lib/typescript/src/skia/types/Surface/index.d.ts +2 -0
  1809. package/lib/typescript/src/skia/types/TextBlob.d.ts +44 -0
  1810. package/lib/typescript/src/skia/types/Typeface/Typeface.d.ts +5 -0
  1811. package/lib/typescript/src/skia/types/Typeface/TypefaceFactory.d.ts +5 -0
  1812. package/lib/typescript/src/skia/types/Typeface/index.d.ts +2 -0
  1813. package/lib/typescript/src/skia/types/Vertices/Vertices.d.ts +17 -0
  1814. package/lib/typescript/src/skia/types/Vertices/index.d.ts +1 -0
  1815. package/lib/typescript/src/skia/types/index.d.ts +28 -0
  1816. package/lib/typescript/src/skia/web/Host.d.ts +21 -0
  1817. package/lib/typescript/src/skia/web/JsiSkCanvas.d.ts +44 -0
  1818. package/lib/typescript/src/skia/web/JsiSkColor.d.ts +2 -0
  1819. package/lib/typescript/src/skia/web/JsiSkColorFilter.d.ts +6 -0
  1820. package/lib/typescript/src/skia/web/JsiSkColorFilterFactory.d.ts +14 -0
  1821. package/lib/typescript/src/skia/web/JsiSkContourMeasure.d.ts +16 -0
  1822. package/lib/typescript/src/skia/web/JsiSkContourMeasureIter.d.ts +8 -0
  1823. package/lib/typescript/src/skia/web/JsiSkData.d.ts +8 -0
  1824. package/lib/typescript/src/skia/web/JsiSkDataFactory.d.ts +19 -0
  1825. package/lib/typescript/src/skia/web/JsiSkFont.d.ts +34 -0
  1826. package/lib/typescript/src/skia/web/JsiSkFontMgr.d.ts +9 -0
  1827. package/lib/typescript/src/skia/web/JsiSkFontMgrFactory.d.ts +8 -0
  1828. package/lib/typescript/src/skia/web/JsiSkImage.d.ts +12 -0
  1829. package/lib/typescript/src/skia/web/JsiSkImageFactory.d.ts +10 -0
  1830. package/lib/typescript/src/skia/web/JsiSkImageFilter.d.ts +6 -0
  1831. package/lib/typescript/src/skia/web/JsiSkImageFilterFactory.d.ts +19 -0
  1832. package/lib/typescript/src/skia/web/JsiSkMaskFilter.d.ts +6 -0
  1833. package/lib/typescript/src/skia/web/JsiSkMaskFilterFactory.d.ts +9 -0
  1834. package/lib/typescript/src/skia/web/JsiSkMatrix.d.ts +11 -0
  1835. package/lib/typescript/src/skia/web/JsiSkPaint.d.ts +26 -0
  1836. package/lib/typescript/src/skia/web/JsiSkPath.d.ts +56 -0
  1837. package/lib/typescript/src/skia/web/JsiSkPathEffect.d.ts +6 -0
  1838. package/lib/typescript/src/skia/web/JsiSkPathEffectFactory.d.ts +15 -0
  1839. package/lib/typescript/src/skia/web/JsiSkPathFactory.d.ts +13 -0
  1840. package/lib/typescript/src/skia/web/JsiSkPicture.d.ts +9 -0
  1841. package/lib/typescript/src/skia/web/JsiSkPictureFactory.d.ts +8 -0
  1842. package/lib/typescript/src/skia/web/JsiSkPictureRecorder.d.ts +11 -0
  1843. package/lib/typescript/src/skia/web/JsiSkPoint.d.ts +8 -0
  1844. package/lib/typescript/src/skia/web/JsiSkRRect.d.ts +10 -0
  1845. package/lib/typescript/src/skia/web/JsiSkRSXform.d.ts +8 -0
  1846. package/lib/typescript/src/skia/web/JsiSkRect.d.ts +11 -0
  1847. package/lib/typescript/src/skia/web/JsiSkRuntimeEffect.d.ts +14 -0
  1848. package/lib/typescript/src/skia/web/JsiSkRuntimeEffectFactory.d.ts +8 -0
  1849. package/lib/typescript/src/skia/web/JsiSkSVGFactory.d.ts +9 -0
  1850. package/lib/typescript/src/skia/web/JsiSkShader.d.ts +6 -0
  1851. package/lib/typescript/src/skia/web/JsiSkShaderFactory.d.ts +16 -0
  1852. package/lib/typescript/src/skia/web/JsiSkSurface.d.ts +8 -0
  1853. package/lib/typescript/src/skia/web/JsiSkSurfaceFactory.d.ts +8 -0
  1854. package/lib/typescript/src/skia/web/JsiSkTextBlob.d.ts +6 -0
  1855. package/lib/typescript/src/skia/web/JsiSkTextBlobFactory.d.ts +12 -0
  1856. package/lib/typescript/src/skia/web/JsiSkTypeface.d.ts +8 -0
  1857. package/lib/typescript/src/skia/web/JsiSkTypefaceFactory.d.ts +8 -0
  1858. package/lib/typescript/src/skia/web/JsiSkVertices.d.ts +9 -0
  1859. package/lib/typescript/src/skia/web/JsiSkVerticesFactory.d.ts +4 -0
  1860. package/lib/typescript/src/skia/web/JsiSkia.d.ts +3 -0
  1861. package/lib/typescript/src/skia/web/index.d.ts +1 -0
  1862. package/lib/typescript/src/values/api.d.ts +5 -0
  1863. package/lib/typescript/src/values/api.web.d.ts +2 -0
  1864. package/lib/typescript/src/values/hooks/index.d.ts +4 -0
  1865. package/lib/typescript/src/values/hooks/useClockValue.d.ts +6 -0
  1866. package/lib/typescript/src/values/hooks/useComputedValue.d.ts +9 -0
  1867. package/lib/typescript/src/values/hooks/useValue.d.ts +7 -0
  1868. package/lib/typescript/src/values/hooks/useValueEffect.d.ts +7 -0
  1869. package/lib/typescript/src/values/index.d.ts +3 -0
  1870. package/lib/typescript/src/values/types.d.ts +59 -0
  1871. package/lib/typescript/src/values/web/RNSkAnimation.d.ts +9 -0
  1872. package/lib/typescript/src/values/web/RNSkClockValue.d.ts +13 -0
  1873. package/lib/typescript/src/values/web/RNSkComputedValue.d.ts +9 -0
  1874. package/lib/typescript/src/values/web/RNSkReadonlyValue.d.ts +11 -0
  1875. package/lib/typescript/src/values/web/RNSkValue.d.ts +14 -0
  1876. package/lib/typescript/src/values/web/api.d.ts +2 -0
  1877. package/lib/typescript/src/values/web/index.d.ts +1 -0
  1878. package/lib/typescript/src/views/SkiaView.d.ts +37 -0
  1879. package/lib/typescript/src/views/SkiaView.web.d.ts +56 -0
  1880. package/lib/typescript/src/views/api.d.ts +5 -0
  1881. package/lib/typescript/src/views/index.d.ts +4 -0
  1882. package/lib/typescript/src/views/types.d.ts +76 -0
  1883. package/lib/typescript/src/views/useDrawCallback.d.ts +8 -0
  1884. package/lib/typescript/src/views/useTouchHandler.d.ts +22 -0
  1885. package/lib/typescript/src/web/index.d.ts +5 -0
  1886. package/libs/android/arm64-v8a/libskia.a +0 -0
  1887. package/libs/android/arm64-v8a/libskshaper.a +0 -0
  1888. package/libs/android/arm64-v8a/libsvg.a +0 -0
  1889. package/libs/android/armeabi-v7a/libskia.a +0 -0
  1890. package/libs/android/armeabi-v7a/libskshaper.a +0 -0
  1891. package/libs/android/armeabi-v7a/libsvg.a +0 -0
  1892. package/libs/android/x86/libskia.a +0 -0
  1893. package/libs/android/x86/libskshaper.a +0 -0
  1894. package/libs/android/x86/libsvg.a +0 -0
  1895. package/libs/android/x86_64/libskia.a +0 -0
  1896. package/libs/android/x86_64/libskshaper.a +0 -0
  1897. package/libs/android/x86_64/libsvg.a +0 -0
  1898. package/libs/ios/libskia.xcframework/Info.plist +42 -0
  1899. package/libs/ios/libskia.xcframework/ios-arm64_arm64e/libskia.a +0 -0
  1900. package/libs/ios/libskia.xcframework/ios-arm64_arm64e_x86_64-simulator/libskia.a +0 -0
  1901. package/libs/ios/libskshaper.xcframework/Info.plist +42 -0
  1902. package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e/libskshaper.a +0 -0
  1903. package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e_x86_64-simulator/libskshaper.a +0 -0
  1904. package/libs/ios/libsvg.xcframework/Info.plist +42 -0
  1905. package/libs/ios/libsvg.xcframework/ios-arm64_arm64e/libsvg.a +0 -0
  1906. package/libs/ios/libsvg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsvg.a +0 -0
  1907. package/package.json +102 -0
  1908. package/react-native-skia.podspec +71 -0
  1909. package/scripts/install-npm.js +23 -0
  1910. package/src/animation/decay/decay.ts +35 -0
  1911. package/src/animation/decay/index.ts +1 -0
  1912. package/src/animation/decay/runDecay.ts +40 -0
  1913. package/src/animation/decay/types.ts +24 -0
  1914. package/src/animation/functions/index.ts +4 -0
  1915. package/src/animation/functions/interpolate.ts +184 -0
  1916. package/src/animation/functions/interpolateColors.ts +57 -0
  1917. package/src/animation/functions/interpolatePaths.ts +87 -0
  1918. package/src/animation/functions/interpolateVector.ts +26 -0
  1919. package/src/animation/index.ts +4 -0
  1920. package/src/animation/spring/Spring.ts +61 -0
  1921. package/src/animation/spring/functions/index.ts +1 -0
  1922. package/src/animation/spring/functions/spring.ts +86 -0
  1923. package/src/animation/spring/index.ts +3 -0
  1924. package/src/animation/spring/runSpring.ts +37 -0
  1925. package/src/animation/spring/types.ts +6 -0
  1926. package/src/animation/spring/useSpring.ts +28 -0
  1927. package/src/animation/timing/Easing.ts +102 -0
  1928. package/src/animation/timing/createTiming.ts +62 -0
  1929. package/src/animation/timing/functions/bezier.ts +165 -0
  1930. package/src/animation/timing/functions/getResolvedParams.ts +50 -0
  1931. package/src/animation/timing/functions/index.ts +4 -0
  1932. package/src/animation/timing/functions/timing.ts +44 -0
  1933. package/src/animation/timing/functions/types.ts +8 -0
  1934. package/src/animation/timing/index.ts +4 -0
  1935. package/src/animation/timing/runTiming.ts +33 -0
  1936. package/src/animation/timing/useLoop.ts +18 -0
  1937. package/src/animation/timing/useTiming.ts +68 -0
  1938. package/src/animation/types.ts +23 -0
  1939. package/src/external/index.ts +1 -0
  1940. package/src/external/reanimated/index.ts +1 -0
  1941. package/src/external/reanimated/useSharedValueEffect.ts +81 -0
  1942. package/src/index.ts +8 -0
  1943. package/src/mock/index.ts +110 -0
  1944. package/src/renderer/Canvas.tsx +158 -0
  1945. package/src/renderer/DependencyManager.tsx +59 -0
  1946. package/src/renderer/DrawingContext.ts +14 -0
  1947. package/src/renderer/HostConfig.ts +303 -0
  1948. package/src/renderer/components/Blend.tsx +29 -0
  1949. package/src/renderer/components/Compose.tsx +26 -0
  1950. package/src/renderer/components/Drawing.tsx +16 -0
  1951. package/src/renderer/components/Group.tsx +83 -0
  1952. package/src/renderer/components/Mask.tsx +45 -0
  1953. package/src/renderer/components/Paint.tsx +30 -0
  1954. package/src/renderer/components/Picture.tsx +17 -0
  1955. package/src/renderer/components/backdrop/BackdropBlur.tsx +23 -0
  1956. package/src/renderer/components/backdrop/BackdropFilter.tsx +47 -0
  1957. package/src/renderer/components/backdrop/index.ts +2 -0
  1958. package/src/renderer/components/colorFilters/BlendColor.tsx +30 -0
  1959. package/src/renderer/components/colorFilters/Compose.ts +18 -0
  1960. package/src/renderer/components/colorFilters/Lerp.tsx +27 -0
  1961. package/src/renderer/components/colorFilters/LinearToSRGBGamma.tsx +20 -0
  1962. package/src/renderer/components/colorFilters/LumaColorFilter.tsx +18 -0
  1963. package/src/renderer/components/colorFilters/Matrix.tsx +46 -0
  1964. package/src/renderer/components/colorFilters/SRGBToLinearGamma.tsx +20 -0
  1965. package/src/renderer/components/colorFilters/index.ts +6 -0
  1966. package/src/renderer/components/image/BoxFit.ts +125 -0
  1967. package/src/renderer/components/image/Image.tsx +50 -0
  1968. package/src/renderer/components/image/ImageSVG.tsx +24 -0
  1969. package/src/renderer/components/image/ImageShader.tsx +82 -0
  1970. package/src/renderer/components/image/index.ts +4 -0
  1971. package/src/renderer/components/imageFilters/Blur.tsx +37 -0
  1972. package/src/renderer/components/imageFilters/DisplacementMap.tsx +34 -0
  1973. package/src/renderer/components/imageFilters/InnerShadow.tsx +38 -0
  1974. package/src/renderer/components/imageFilters/Morphology.tsx +33 -0
  1975. package/src/renderer/components/imageFilters/Offset.tsx +28 -0
  1976. package/src/renderer/components/imageFilters/RuntimeShader.tsx +31 -0
  1977. package/src/renderer/components/imageFilters/Shadow.tsx +42 -0
  1978. package/src/renderer/components/imageFilters/getInput.ts +20 -0
  1979. package/src/renderer/components/imageFilters/index.ts +6 -0
  1980. package/src/renderer/components/index.ts +18 -0
  1981. package/src/renderer/components/maskFilters/Blur.tsx +32 -0
  1982. package/src/renderer/components/maskFilters/index.ts +1 -0
  1983. package/src/renderer/components/pathEffects/Corner.tsx +31 -0
  1984. package/src/renderer/components/pathEffects/Dash.tsx +27 -0
  1985. package/src/renderer/components/pathEffects/Discrete.tsx +34 -0
  1986. package/src/renderer/components/pathEffects/Line2D.tsx +33 -0
  1987. package/src/renderer/components/pathEffects/Path1D.tsx +43 -0
  1988. package/src/renderer/components/pathEffects/Path2D.tsx +35 -0
  1989. package/src/renderer/components/pathEffects/Sum.tsx +21 -0
  1990. package/src/renderer/components/pathEffects/index.ts +7 -0
  1991. package/src/renderer/components/shaders/Color.tsx +20 -0
  1992. package/src/renderer/components/shaders/FractalNoise.tsx +36 -0
  1993. package/src/renderer/components/shaders/Gradient.ts +24 -0
  1994. package/src/renderer/components/shaders/LinearGradient.tsx +33 -0
  1995. package/src/renderer/components/shaders/RadialGradient.tsx +33 -0
  1996. package/src/renderer/components/shaders/Shader.tsx +32 -0
  1997. package/src/renderer/components/shaders/ShaderLib.ts +46 -0
  1998. package/src/renderer/components/shaders/SweepGradient.tsx +36 -0
  1999. package/src/renderer/components/shaders/Turbulence.tsx +36 -0
  2000. package/src/renderer/components/shaders/TwoPointConicalGradient.tsx +39 -0
  2001. package/src/renderer/components/shaders/index.ts +9 -0
  2002. package/src/renderer/components/shapes/Box.tsx +115 -0
  2003. package/src/renderer/components/shapes/Circle.tsx +24 -0
  2004. package/src/renderer/components/shapes/DiffRect.tsx +21 -0
  2005. package/src/renderer/components/shapes/Fill.tsx +15 -0
  2006. package/src/renderer/components/shapes/FitBox.tsx +28 -0
  2007. package/src/renderer/components/shapes/Line.tsx +17 -0
  2008. package/src/renderer/components/shapes/Oval.tsx +27 -0
  2009. package/src/renderer/components/shapes/Patch.tsx +63 -0
  2010. package/src/renderer/components/shapes/Path.tsx +57 -0
  2011. package/src/renderer/components/shapes/Points.tsx +28 -0
  2012. package/src/renderer/components/shapes/Rect.tsx +22 -0
  2013. package/src/renderer/components/shapes/RoundedRect.tsx +25 -0
  2014. package/src/renderer/components/shapes/Vertices.tsx +45 -0
  2015. package/src/renderer/components/shapes/index.ts +13 -0
  2016. package/src/renderer/components/text/Glyphs.tsx +52 -0
  2017. package/src/renderer/components/text/Text.tsx +32 -0
  2018. package/src/renderer/components/text/TextBlob.tsx +26 -0
  2019. package/src/renderer/components/text/TextPath.tsx +68 -0
  2020. package/src/renderer/components/text/index.ts +4 -0
  2021. package/src/renderer/index.ts +5 -0
  2022. package/src/renderer/nodes/Container.tsx +17 -0
  2023. package/src/renderer/nodes/Declaration.tsx +67 -0
  2024. package/src/renderer/nodes/Drawing.tsx +67 -0
  2025. package/src/renderer/nodes/Node.ts +57 -0
  2026. package/src/renderer/nodes/index.ts +4 -0
  2027. package/src/renderer/processors/Animations/Animations.ts +42 -0
  2028. package/src/renderer/processors/Animations/index.ts +1 -0
  2029. package/src/renderer/processors/Circles.ts +26 -0
  2030. package/src/renderer/processors/Clips.ts +23 -0
  2031. package/src/renderer/processors/Color.ts +15 -0
  2032. package/src/renderer/processors/Font.ts +31 -0
  2033. package/src/renderer/processors/Paint.ts +118 -0
  2034. package/src/renderer/processors/Paths.ts +19 -0
  2035. package/src/renderer/processors/Radius.ts +10 -0
  2036. package/src/renderer/processors/Rects.ts +50 -0
  2037. package/src/renderer/processors/Transform.ts +53 -0
  2038. package/src/renderer/processors/index.ts +11 -0
  2039. package/src/renderer/processors/math/Coordinates.ts +32 -0
  2040. package/src/renderer/processors/math/Math.ts +18 -0
  2041. package/src/renderer/processors/math/Transforms.ts +8 -0
  2042. package/src/renderer/processors/math/index.ts +3 -0
  2043. package/src/renderer/typeddash.ts +23 -0
  2044. package/src/renderer/useCanvas.ts +21 -0
  2045. package/src/renderer/useContextBridge.tsx +21 -0
  2046. package/src/skia/NativeSetup.ts +18 -0
  2047. package/src/skia/Skia.ts +11 -0
  2048. package/src/skia/Skia.web.ts +3 -0
  2049. package/src/skia/core/Data.ts +98 -0
  2050. package/src/skia/core/Font.ts +28 -0
  2051. package/src/skia/core/Image.ts +12 -0
  2052. package/src/skia/core/Matrix.ts +6 -0
  2053. package/src/skia/core/Paint.ts +22 -0
  2054. package/src/skia/core/Path.ts +60 -0
  2055. package/src/skia/core/Picture.ts +25 -0
  2056. package/src/skia/core/RRect.tsx +5 -0
  2057. package/src/skia/core/Rect.ts +33 -0
  2058. package/src/skia/core/SVG.ts +9 -0
  2059. package/src/skia/core/Typeface.ts +16 -0
  2060. package/src/skia/core/Vector.ts +11 -0
  2061. package/src/skia/core/index.ts +12 -0
  2062. package/src/skia/index.ts +3 -0
  2063. package/src/skia/types/Canvas.ts +495 -0
  2064. package/src/skia/types/Color.ts +4 -0
  2065. package/src/skia/types/ColorFilter/ColorFilter.ts +7 -0
  2066. package/src/skia/types/ColorFilter/ColorFilterFactory.ts +52 -0
  2067. package/src/skia/types/ColorFilter/index.ts +2 -0
  2068. package/src/skia/types/ContourMeasure.tsx +47 -0
  2069. package/src/skia/types/Data/Data.ts +5 -0
  2070. package/src/skia/types/Data/DataFactory.ts +19 -0
  2071. package/src/skia/types/Data/index.ts +2 -0
  2072. package/src/skia/types/Font/Font.ts +232 -0
  2073. package/src/skia/types/Font/index.ts +1 -0
  2074. package/src/skia/types/FontMgr/FontMgr.ts +24 -0
  2075. package/src/skia/types/FontMgr/FontMgrFactory.ts +12 -0
  2076. package/src/skia/types/FontMgr/index.ts +2 -0
  2077. package/src/skia/types/Image/Image.ts +96 -0
  2078. package/src/skia/types/Image/ImageFactory.ts +78 -0
  2079. package/src/skia/types/Image/index.ts +2 -0
  2080. package/src/skia/types/ImageFilter/ImageFilter.ts +31 -0
  2081. package/src/skia/types/ImageFilter/ImageFilterFactory.ts +192 -0
  2082. package/src/skia/types/ImageFilter/index.ts +2 -0
  2083. package/src/skia/types/JsiInstance.ts +3 -0
  2084. package/src/skia/types/MaskFilter.ts +27 -0
  2085. package/src/skia/types/Matrix.ts +95 -0
  2086. package/src/skia/types/Paint/BlendMode.ts +61 -0
  2087. package/src/skia/types/Paint/Paint.ts +153 -0
  2088. package/src/skia/types/Paint/index.ts +2 -0
  2089. package/src/skia/types/Path/Path.ts +564 -0
  2090. package/src/skia/types/Path/PathFactory.ts +34 -0
  2091. package/src/skia/types/Path/index.ts +2 -0
  2092. package/src/skia/types/PathEffect.ts +97 -0
  2093. package/src/skia/types/Picture/Picture.ts +34 -0
  2094. package/src/skia/types/Picture/PictureFactory.ts +9 -0
  2095. package/src/skia/types/Picture/PictureRecorder.ts +18 -0
  2096. package/src/skia/types/Picture/index.ts +3 -0
  2097. package/src/skia/types/Point.ts +12 -0
  2098. package/src/skia/types/RRect.ts +12 -0
  2099. package/src/skia/types/RSXform.ts +3 -0
  2100. package/src/skia/types/Rect.ts +6 -0
  2101. package/src/skia/types/RuntimeEffect/RuntimeEffect.ts +61 -0
  2102. package/src/skia/types/RuntimeEffect/RuntimeEffectFactory.ts +12 -0
  2103. package/src/skia/types/RuntimeEffect/index.ts +2 -0
  2104. package/src/skia/types/SVG/SVG.ts +3 -0
  2105. package/src/skia/types/SVG/SVGFactory.ts +8 -0
  2106. package/src/skia/types/SVG/index.ts +2 -0
  2107. package/src/skia/types/Shader/Shader.ts +65 -0
  2108. package/src/skia/types/Shader/ShaderFactory.ts +169 -0
  2109. package/src/skia/types/Shader/index.ts +2 -0
  2110. package/src/skia/types/Skia.ts +84 -0
  2111. package/src/skia/types/Surface/Surface.ts +27 -0
  2112. package/src/skia/types/Surface/SurfaceFactory.ts +12 -0
  2113. package/src/skia/types/Surface/index.ts +2 -0
  2114. package/src/skia/types/TextBlob.ts +52 -0
  2115. package/src/skia/types/Typeface/Typeface.ts +6 -0
  2116. package/src/skia/types/Typeface/TypefaceFactory.ts +7 -0
  2117. package/src/skia/types/Typeface/index.ts +2 -0
  2118. package/src/skia/types/Vertices/Vertices.tsx +20 -0
  2119. package/src/skia/types/Vertices/index.ts +1 -0
  2120. package/src/skia/types/index.ts +28 -0
  2121. package/src/skia/web/Host.ts +56 -0
  2122. package/src/skia/web/JsiSkCanvas.ts +330 -0
  2123. package/src/skia/web/JsiSkColor.ts +327 -0
  2124. package/src/skia/web/JsiSkColorFilter.ts +14 -0
  2125. package/src/skia/web/JsiSkColorFilterFactory.ts +67 -0
  2126. package/src/skia/web/JsiSkContourMeasure.ts +35 -0
  2127. package/src/skia/web/JsiSkContourMeasureIter.ts +23 -0
  2128. package/src/skia/web/JsiSkData.ts +13 -0
  2129. package/src/skia/web/JsiSkDataFactory.ts +35 -0
  2130. package/src/skia/web/JsiSkFont.ts +134 -0
  2131. package/src/skia/web/JsiSkFontMgr.ts +38 -0
  2132. package/src/skia/web/JsiSkFontMgrFactory.ts +18 -0
  2133. package/src/skia/web/JsiSkImage.ts +87 -0
  2134. package/src/skia/web/JsiSkImageFactory.ts +40 -0
  2135. package/src/skia/web/JsiSkImageFilter.ts +14 -0
  2136. package/src/skia/web/JsiSkImageFilterFactory.ts +144 -0
  2137. package/src/skia/web/JsiSkMaskFilter.ts +14 -0
  2138. package/src/skia/web/JsiSkMaskFilterFactory.ts +20 -0
  2139. package/src/skia/web/JsiSkMatrix.ts +54 -0
  2140. package/src/skia/web/JsiSkPaint.ts +104 -0
  2141. package/src/skia/web/JsiSkPath.ts +386 -0
  2142. package/src/skia/web/JsiSkPathEffect.ts +14 -0
  2143. package/src/skia/web/JsiSkPathEffectFactory.ts +85 -0
  2144. package/src/skia/web/JsiSkPathFactory.ts +54 -0
  2145. package/src/skia/web/JsiSkPicture.ts +45 -0
  2146. package/src/skia/web/JsiSkPictureFactory.ts +20 -0
  2147. package/src/skia/web/JsiSkPictureRecorder.ts +31 -0
  2148. package/src/skia/web/JsiSkPoint.ts +19 -0
  2149. package/src/skia/web/JsiSkRRect.ts +27 -0
  2150. package/src/skia/web/JsiSkRSXform.ts +16 -0
  2151. package/src/skia/web/JsiSkRect.ts +37 -0
  2152. package/src/skia/web/JsiSkRuntimeEffect.ts +57 -0
  2153. package/src/skia/web/JsiSkRuntimeEffectFactory.ts +23 -0
  2154. package/src/skia/web/JsiSkSVGFactory.ts +20 -0
  2155. package/src/skia/web/JsiSkShader.ts +14 -0
  2156. package/src/skia/web/JsiSkShaderFactory.ts +181 -0
  2157. package/src/skia/web/JsiSkSurface.ts +25 -0
  2158. package/src/skia/web/JsiSkSurfaceFactory.ts +20 -0
  2159. package/src/skia/web/JsiSkTextBlob.ts +14 -0
  2160. package/src/skia/web/JsiSkTextBlobFactory.ts +49 -0
  2161. package/src/skia/web/JsiSkTypeface.ts +28 -0
  2162. package/src/skia/web/JsiSkTypefaceFactory.tsx +20 -0
  2163. package/src/skia/web/JsiSkVertices.ts +23 -0
  2164. package/src/skia/web/JsiSkVerticesFactory.ts +41 -0
  2165. package/src/skia/web/JsiSkia.ts +98 -0
  2166. package/src/skia/web/index.ts +1 -0
  2167. package/src/values/api.ts +8 -0
  2168. package/src/values/api.web.ts +5 -0
  2169. package/src/values/hooks/index.ts +4 -0
  2170. package/src/values/hooks/useClockValue.ts +18 -0
  2171. package/src/values/hooks/useComputedValue.ts +23 -0
  2172. package/src/values/hooks/useValue.ts +14 -0
  2173. package/src/values/hooks/useValueEffect.ts +15 -0
  2174. package/src/values/index.ts +3 -0
  2175. package/src/values/types.ts +69 -0
  2176. package/src/values/web/RNSkAnimation.ts +33 -0
  2177. package/src/values/web/RNSkClockValue.ts +58 -0
  2178. package/src/values/web/RNSkComputedValue.ts +38 -0
  2179. package/src/values/web/RNSkReadonlyValue.ts +32 -0
  2180. package/src/values/web/RNSkValue.ts +57 -0
  2181. package/src/values/web/api.ts +33 -0
  2182. package/src/values/web/index.ts +1 -0
  2183. package/src/views/SkiaView.tsx +105 -0
  2184. package/src/views/SkiaView.web.tsx +193 -0
  2185. package/src/views/api.ts +7 -0
  2186. package/src/views/index.ts +4 -0
  2187. package/src/views/types.ts +96 -0
  2188. package/src/views/useDrawCallback.ts +19 -0
  2189. package/src/views/useTouchHandler.ts +111 -0
  2190. package/src/web/index.ts +15 -0
@@ -0,0 +1,1100 @@
1
+ /*
2
+ * Copyright 2012 Google Inc.
3
+ *
4
+ * Use of this source code is governed by a BSD-style license that can be
5
+ * found in the LICENSE file.
6
+ */
7
+
8
+ #ifndef SkSurface_DEFINED
9
+ #define SkSurface_DEFINED
10
+
11
+ #include "include/core/SkImage.h"
12
+ #include "include/core/SkPixmap.h"
13
+ #include "include/core/SkRefCnt.h"
14
+ #include "include/core/SkSurfaceProps.h"
15
+
16
+ #if SK_SUPPORT_GPU
17
+ #include "include/gpu/GrTypes.h"
18
+ #endif
19
+
20
+ #if defined(SK_BUILD_FOR_ANDROID) && __ANDROID_API__ >= 26
21
+ #include <android/hardware_buffer.h>
22
+ #endif
23
+
24
+ #ifdef SK_METAL
25
+ #include "include/gpu/mtl/GrMtlTypes.h"
26
+ #endif
27
+
28
+ class SkCanvas;
29
+ class SkDeferredDisplayList;
30
+ class SkPaint;
31
+ class SkSurfaceCharacterization;
32
+ class GrBackendRenderTarget;
33
+ class GrBackendSemaphore;
34
+ class GrBackendSurfaceMutableState;
35
+ class GrBackendTexture;
36
+ class GrDirectContext;
37
+ class GrRecordingContext;
38
+ class GrRenderTarget;
39
+ enum GrSurfaceOrigin: int;
40
+
41
+ namespace skgpu::graphite { class Recorder; }
42
+
43
+ /** \class SkSurface
44
+ SkSurface is responsible for managing the pixels that a canvas draws into. The pixels can be
45
+ allocated either in CPU memory (a raster surface) or on the GPU (a GrRenderTarget surface).
46
+ SkSurface takes care of allocating a SkCanvas that will draw into the surface. Call
47
+ surface->getCanvas() to use that canvas (but don't delete it, it is owned by the surface).
48
+ SkSurface always has non-zero dimensions. If there is a request for a new surface, and either
49
+ of the requested dimensions are zero, then nullptr will be returned.
50
+ */
51
+ class SK_API SkSurface : public SkRefCnt {
52
+ public:
53
+
54
+ /** Allocates raster SkSurface. SkCanvas returned by SkSurface draws directly into pixels.
55
+
56
+ SkSurface is returned if all parameters are valid.
57
+ Valid parameters include:
58
+ info dimensions are greater than zero;
59
+ info contains SkColorType and SkAlphaType supported by raster surface;
60
+ pixels is not nullptr;
61
+ rowBytes is large enough to contain info width pixels of SkColorType.
62
+
63
+ Pixel buffer size should be info height times computed rowBytes.
64
+ Pixels are not initialized.
65
+ To access pixels after drawing, peekPixels() or readPixels().
66
+
67
+ @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
68
+ of raster surface; width and height must be greater than zero
69
+ @param pixels pointer to destination pixels buffer
70
+ @param rowBytes interval from one SkSurface row to the next
71
+ @param surfaceProps LCD striping orientation and setting for device independent fonts;
72
+ may be nullptr
73
+ @return SkSurface if all parameters are valid; otherwise, nullptr
74
+ */
75
+ static sk_sp<SkSurface> MakeRasterDirect(const SkImageInfo& imageInfo, void* pixels,
76
+ size_t rowBytes,
77
+ const SkSurfaceProps* surfaceProps = nullptr);
78
+
79
+ static sk_sp<SkSurface> MakeRasterDirect(const SkPixmap& pm,
80
+ const SkSurfaceProps* props = nullptr) {
81
+ return MakeRasterDirect(pm.info(), pm.writable_addr(), pm.rowBytes(), props);
82
+ }
83
+
84
+ /** Allocates raster SkSurface. SkCanvas returned by SkSurface draws directly into pixels.
85
+ releaseProc is called with pixels and context when SkSurface is deleted.
86
+
87
+ SkSurface is returned if all parameters are valid.
88
+ Valid parameters include:
89
+ info dimensions are greater than zero;
90
+ info contains SkColorType and SkAlphaType supported by raster surface;
91
+ pixels is not nullptr;
92
+ rowBytes is large enough to contain info width pixels of SkColorType.
93
+
94
+ Pixel buffer size should be info height times computed rowBytes.
95
+ Pixels are not initialized.
96
+ To access pixels after drawing, call flush() or peekPixels().
97
+
98
+ @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
99
+ of raster surface; width and height must be greater than zero
100
+ @param pixels pointer to destination pixels buffer
101
+ @param rowBytes interval from one SkSurface row to the next
102
+ @param releaseProc called when SkSurface is deleted; may be nullptr
103
+ @param context passed to releaseProc; may be nullptr
104
+ @param surfaceProps LCD striping orientation and setting for device independent fonts;
105
+ may be nullptr
106
+ @return SkSurface if all parameters are valid; otherwise, nullptr
107
+ */
108
+ static sk_sp<SkSurface> MakeRasterDirectReleaseProc(const SkImageInfo& imageInfo, void* pixels,
109
+ size_t rowBytes,
110
+ void (*releaseProc)(void* pixels, void* context),
111
+ void* context, const SkSurfaceProps* surfaceProps = nullptr);
112
+
113
+ /** Allocates raster SkSurface. SkCanvas returned by SkSurface draws directly into pixels.
114
+ Allocates and zeroes pixel memory. Pixel memory size is imageInfo.height() times
115
+ rowBytes, or times imageInfo.minRowBytes() if rowBytes is zero.
116
+ Pixel memory is deleted when SkSurface is deleted.
117
+
118
+ SkSurface is returned if all parameters are valid.
119
+ Valid parameters include:
120
+ info dimensions are greater than zero;
121
+ info contains SkColorType and SkAlphaType supported by raster surface;
122
+ rowBytes is large enough to contain info width pixels of SkColorType, or is zero.
123
+
124
+ If rowBytes is zero, a suitable value will be chosen internally.
125
+
126
+ @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
127
+ of raster surface; width and height must be greater than zero
128
+ @param rowBytes interval from one SkSurface row to the next; may be zero
129
+ @param surfaceProps LCD striping orientation and setting for device independent fonts;
130
+ may be nullptr
131
+ @return SkSurface if all parameters are valid; otherwise, nullptr
132
+ */
133
+ static sk_sp<SkSurface> MakeRaster(const SkImageInfo& imageInfo, size_t rowBytes,
134
+ const SkSurfaceProps* surfaceProps);
135
+
136
+ /** Allocates raster SkSurface. SkCanvas returned by SkSurface draws directly into pixels.
137
+ Allocates and zeroes pixel memory. Pixel memory size is imageInfo.height() times
138
+ imageInfo.minRowBytes().
139
+ Pixel memory is deleted when SkSurface is deleted.
140
+
141
+ SkSurface is returned if all parameters are valid.
142
+ Valid parameters include:
143
+ info dimensions are greater than zero;
144
+ info contains SkColorType and SkAlphaType supported by raster surface.
145
+
146
+ @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
147
+ of raster surface; width and height must be greater than zero
148
+ @param props LCD striping orientation and setting for device independent fonts;
149
+ may be nullptr
150
+ @return SkSurface if all parameters are valid; otherwise, nullptr
151
+ */
152
+ static sk_sp<SkSurface> MakeRaster(const SkImageInfo& imageInfo,
153
+ const SkSurfaceProps* props = nullptr) {
154
+ return MakeRaster(imageInfo, 0, props);
155
+ }
156
+
157
+ /** Allocates raster SkSurface. SkCanvas returned by SkSurface draws directly into pixels.
158
+ Allocates and zeroes pixel memory. Pixel memory size is height times width times
159
+ four. Pixel memory is deleted when SkSurface is deleted.
160
+
161
+ Internally, sets SkImageInfo to width, height, native color type, and
162
+ kPremul_SkAlphaType.
163
+
164
+ SkSurface is returned if width and height are greater than zero.
165
+
166
+ Use to create SkSurface that matches SkPMColor, the native pixel arrangement on
167
+ the platform. SkSurface drawn to output device skips converting its pixel format.
168
+
169
+ @param width pixel column count; must be greater than zero
170
+ @param height pixel row count; must be greater than zero
171
+ @param surfaceProps LCD striping orientation and setting for device independent
172
+ fonts; may be nullptr
173
+ @return SkSurface if all parameters are valid; otherwise, nullptr
174
+ */
175
+ static sk_sp<SkSurface> MakeRasterN32Premul(int width, int height,
176
+ const SkSurfaceProps* surfaceProps = nullptr);
177
+
178
+ /** Caller data passed to RenderTarget/TextureReleaseProc; may be nullptr. */
179
+ typedef void* ReleaseContext;
180
+
181
+ /** User function called when supplied render target may be deleted. */
182
+ typedef void (*RenderTargetReleaseProc)(ReleaseContext releaseContext);
183
+
184
+ /** User function called when supplied texture may be deleted. */
185
+ typedef void (*TextureReleaseProc)(ReleaseContext releaseContext);
186
+
187
+ /** Wraps a GPU-backed texture into SkSurface. Caller must ensure the texture is
188
+ valid for the lifetime of returned SkSurface. If sampleCnt greater than zero,
189
+ creates an intermediate MSAA SkSurface which is used for drawing backendTexture.
190
+
191
+ SkSurface is returned if all parameters are valid. backendTexture is valid if
192
+ its pixel configuration agrees with colorSpace and context; for instance, if
193
+ backendTexture has an sRGB configuration, then context must support sRGB,
194
+ and colorSpace must be present. Further, backendTexture width and height must
195
+ not exceed context capabilities, and the context must be able to support
196
+ back-end textures.
197
+
198
+ Upon success textureReleaseProc is called when it is safe to delete the texture in the
199
+ backend API (accounting only for use of the texture by this surface). If SkSurface creation
200
+ fails textureReleaseProc is called before this function returns.
201
+
202
+ If SK_SUPPORT_GPU is defined as zero, has no effect and returns nullptr.
203
+
204
+ @param context GPU context
205
+ @param backendTexture texture residing on GPU
206
+ @param sampleCnt samples per pixel, or 0 to disable full scene anti-aliasing
207
+ @param colorSpace range of colors; may be nullptr
208
+ @param surfaceProps LCD striping orientation and setting for device independent
209
+ fonts; may be nullptr
210
+ @param textureReleaseProc function called when texture can be released
211
+ @param releaseContext state passed to textureReleaseProc
212
+ @return SkSurface if all parameters are valid; otherwise, nullptr
213
+ */
214
+ static sk_sp<SkSurface> MakeFromBackendTexture(GrRecordingContext* context,
215
+ const GrBackendTexture& backendTexture,
216
+ GrSurfaceOrigin origin, int sampleCnt,
217
+ SkColorType colorType,
218
+ sk_sp<SkColorSpace> colorSpace,
219
+ const SkSurfaceProps* surfaceProps,
220
+ TextureReleaseProc textureReleaseProc = nullptr,
221
+ ReleaseContext releaseContext = nullptr);
222
+
223
+ /** Wraps a GPU-backed buffer into SkSurface. Caller must ensure backendRenderTarget
224
+ is valid for the lifetime of returned SkSurface.
225
+
226
+ SkSurface is returned if all parameters are valid. backendRenderTarget is valid if
227
+ its pixel configuration agrees with colorSpace and context; for instance, if
228
+ backendRenderTarget has an sRGB configuration, then context must support sRGB,
229
+ and colorSpace must be present. Further, backendRenderTarget width and height must
230
+ not exceed context capabilities, and the context must be able to support
231
+ back-end render targets.
232
+
233
+ Upon success releaseProc is called when it is safe to delete the render target in the
234
+ backend API (accounting only for use of the render target by this surface). If SkSurface
235
+ creation fails releaseProc is called before this function returns.
236
+
237
+ If SK_SUPPORT_GPU is defined as zero, has no effect and returns nullptr.
238
+
239
+ @param context GPU context
240
+ @param backendRenderTarget GPU intermediate memory buffer
241
+ @param colorSpace range of colors
242
+ @param surfaceProps LCD striping orientation and setting for device independent
243
+ fonts; may be nullptr
244
+ @param releaseProc function called when backendRenderTarget can be released
245
+ @param releaseContext state passed to releaseProc
246
+ @return SkSurface if all parameters are valid; otherwise, nullptr
247
+ */
248
+ static sk_sp<SkSurface> MakeFromBackendRenderTarget(GrRecordingContext* context,
249
+ const GrBackendRenderTarget& backendRenderTarget,
250
+ GrSurfaceOrigin origin,
251
+ SkColorType colorType,
252
+ sk_sp<SkColorSpace> colorSpace,
253
+ const SkSurfaceProps* surfaceProps,
254
+ RenderTargetReleaseProc releaseProc = nullptr,
255
+ ReleaseContext releaseContext = nullptr);
256
+
257
+ /** Returns SkSurface on GPU indicated by context. Allocates memory for
258
+ pixels, based on the width, height, and SkColorType in SkImageInfo. budgeted
259
+ selects whether allocation for pixels is tracked by context. imageInfo
260
+ describes the pixel format in SkColorType, and transparency in
261
+ SkAlphaType, and color matching in SkColorSpace.
262
+
263
+ sampleCount requests the number of samples per pixel.
264
+ Pass zero to disable multi-sample anti-aliasing. The request is rounded
265
+ up to the next supported count, or rounded down if it is larger than the
266
+ maximum supported count.
267
+
268
+ surfaceOrigin pins either the top-left or the bottom-left corner to the origin.
269
+
270
+ shouldCreateWithMips hints that SkImage returned by makeImageSnapshot() is mip map.
271
+
272
+ If SK_SUPPORT_GPU is defined as zero, has no effect and returns nullptr.
273
+
274
+ @param context GPU context
275
+ @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace;
276
+ width, or height, or both, may be zero
277
+ @param sampleCount samples per pixel, or 0 to disable full scene anti-aliasing
278
+ @param surfaceProps LCD striping orientation and setting for device independent
279
+ fonts; may be nullptr
280
+ @param shouldCreateWithMips hint that SkSurface will host mip map images
281
+ @return SkSurface if all parameters are valid; otherwise, nullptr
282
+ */
283
+ static sk_sp<SkSurface> MakeRenderTarget(GrRecordingContext* context, SkBudgeted budgeted,
284
+ const SkImageInfo& imageInfo,
285
+ int sampleCount, GrSurfaceOrigin surfaceOrigin,
286
+ const SkSurfaceProps* surfaceProps,
287
+ bool shouldCreateWithMips = false);
288
+
289
+ /** Returns SkSurface on GPU indicated by context. Allocates memory for
290
+ pixels, based on the width, height, and SkColorType in SkImageInfo. budgeted
291
+ selects whether allocation for pixels is tracked by context. imageInfo
292
+ describes the pixel format in SkColorType, and transparency in
293
+ SkAlphaType, and color matching in SkColorSpace.
294
+
295
+ sampleCount requests the number of samples per pixel.
296
+ Pass zero to disable multi-sample anti-aliasing. The request is rounded
297
+ up to the next supported count, or rounded down if it is larger than the
298
+ maximum supported count.
299
+
300
+ SkSurface bottom-left corner is pinned to the origin.
301
+
302
+ @param context GPU context
303
+ @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
304
+ of raster surface; width, or height, or both, may be zero
305
+ @param sampleCount samples per pixel, or 0 to disable multi-sample anti-aliasing
306
+ @param surfaceProps LCD striping orientation and setting for device independent
307
+ fonts; may be nullptr
308
+ @return SkSurface if all parameters are valid; otherwise, nullptr
309
+ */
310
+ static sk_sp<SkSurface> MakeRenderTarget(GrRecordingContext* context, SkBudgeted budgeted,
311
+ const SkImageInfo& imageInfo, int sampleCount,
312
+ const SkSurfaceProps* surfaceProps) {
313
+ #if SK_SUPPORT_GPU
314
+ return MakeRenderTarget(context, budgeted, imageInfo, sampleCount,
315
+ kBottomLeft_GrSurfaceOrigin, surfaceProps);
316
+ #else
317
+ // TODO(kjlubick, scroggo) Remove this once Android is updated.
318
+ return nullptr;
319
+ #endif
320
+ }
321
+
322
+ /** Returns SkSurface on GPU indicated by context. Allocates memory for
323
+ pixels, based on the width, height, and SkColorType in SkImageInfo. budgeted
324
+ selects whether allocation for pixels is tracked by context. imageInfo
325
+ describes the pixel format in SkColorType, and transparency in
326
+ SkAlphaType, and color matching in SkColorSpace.
327
+
328
+ SkSurface bottom-left corner is pinned to the origin.
329
+
330
+ @param context GPU context
331
+ @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
332
+ of raster surface; width, or height, or both, may be zero
333
+ @return SkSurface if all parameters are valid; otherwise, nullptr
334
+ */
335
+ static sk_sp<SkSurface> MakeRenderTarget(GrRecordingContext* context, SkBudgeted budgeted,
336
+ const SkImageInfo& imageInfo) {
337
+ #if SK_SUPPORT_GPU
338
+ if (!imageInfo.width() || !imageInfo.height()) {
339
+ return nullptr;
340
+ }
341
+ return MakeRenderTarget(context, budgeted, imageInfo, 0, kBottomLeft_GrSurfaceOrigin,
342
+ nullptr);
343
+ #else
344
+ // TODO(kjlubick, scroggo) Remove this once Android is updated.
345
+ return nullptr;
346
+ #endif
347
+ }
348
+
349
+ /** Returns SkSurface on GPU indicated by context that is compatible with the provided
350
+ characterization. budgeted selects whether allocation for pixels is tracked by context.
351
+
352
+ @param context GPU context
353
+ @param characterization description of the desired SkSurface
354
+ @return SkSurface if all parameters are valid; otherwise, nullptr
355
+ */
356
+ static sk_sp<SkSurface> MakeRenderTarget(GrRecordingContext* context,
357
+ const SkSurfaceCharacterization& characterization,
358
+ SkBudgeted budgeted);
359
+
360
+
361
+ #if defined(SK_BUILD_FOR_ANDROID) && __ANDROID_API__ >= 26
362
+ /** Private.
363
+ Creates SkSurface from Android hardware buffer.
364
+ Returned SkSurface takes a reference on the buffer. The ref on the buffer will be released
365
+ when the SkSurface is destroyed and there is no pending work on the GPU involving the
366
+ buffer.
367
+
368
+ Only available on Android, when __ANDROID_API__ is defined to be 26 or greater.
369
+
370
+ Currently this is only supported for buffers that can be textured as well as rendered to.
371
+ In other words that must have both AHARDWAREBUFFER_USAGE_GPU_COLOR_OUTPUT and
372
+ AHARDWAREBUFFER_USAGE_GPU_SAMPLED_IMAGE usage bits.
373
+
374
+ @param context GPU context
375
+ @param hardwareBuffer AHardwareBuffer Android hardware buffer
376
+ @param colorSpace range of colors; may be nullptr
377
+ @param surfaceProps LCD striping orientation and setting for device independent
378
+ fonts; may be nullptr
379
+ @param fromWindow Whether or not the AHardwareBuffer is part of an Android Window.
380
+ Currently only used with Vulkan backend.
381
+ @return created SkSurface, or nullptr
382
+ */
383
+ static sk_sp<SkSurface> MakeFromAHardwareBuffer(GrDirectContext* context,
384
+ AHardwareBuffer* hardwareBuffer,
385
+ GrSurfaceOrigin origin,
386
+ sk_sp<SkColorSpace> colorSpace,
387
+ const SkSurfaceProps* surfaceProps
388
+ #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
389
+ , bool fromWindow = false
390
+ #endif // SK_BUILD_FOR_ANDROID_FRAMEWORK
391
+ );
392
+ #endif
393
+
394
+ #ifdef SK_METAL
395
+ /** Creates SkSurface from CAMetalLayer.
396
+ Returned SkSurface takes a reference on the CAMetalLayer. The ref on the layer will be
397
+ released when the SkSurface is destroyed.
398
+
399
+ Only available when Metal API is enabled.
400
+
401
+ Will grab the current drawable from the layer and use its texture as a backendRT to
402
+ create a renderable surface.
403
+
404
+ @param context GPU context
405
+ @param layer GrMTLHandle (expected to be a CAMetalLayer*)
406
+ @param sampleCnt samples per pixel, or 0 to disable full scene anti-aliasing
407
+ @param colorSpace range of colors; may be nullptr
408
+ @param surfaceProps LCD striping orientation and setting for device independent
409
+ fonts; may be nullptr
410
+ @param drawable Pointer to drawable to be filled in when this surface is
411
+ instantiated; may not be nullptr
412
+ @return created SkSurface, or nullptr
413
+ */
414
+ static sk_sp<SkSurface> MakeFromCAMetalLayer(GrRecordingContext* context,
415
+ GrMTLHandle layer,
416
+ GrSurfaceOrigin origin,
417
+ int sampleCnt,
418
+ SkColorType colorType,
419
+ sk_sp<SkColorSpace> colorSpace,
420
+ const SkSurfaceProps* surfaceProps,
421
+ GrMTLHandle* drawable)
422
+ SK_API_AVAILABLE_CA_METAL_LAYER;
423
+
424
+ /** Creates SkSurface from MTKView.
425
+ Returned SkSurface takes a reference on the MTKView. The ref on the layer will be
426
+ released when the SkSurface is destroyed.
427
+
428
+ Only available when Metal API is enabled.
429
+
430
+ Will grab the current drawable from the layer and use its texture as a backendRT to
431
+ create a renderable surface.
432
+
433
+ @param context GPU context
434
+ @param layer GrMTLHandle (expected to be a MTKView*)
435
+ @param sampleCnt samples per pixel, or 0 to disable full scene anti-aliasing
436
+ @param colorSpace range of colors; may be nullptr
437
+ @param surfaceProps LCD striping orientation and setting for device independent
438
+ fonts; may be nullptr
439
+ @return created SkSurface, or nullptr
440
+ */
441
+ static sk_sp<SkSurface> MakeFromMTKView(GrRecordingContext* context,
442
+ GrMTLHandle mtkView,
443
+ GrSurfaceOrigin origin,
444
+ int sampleCnt,
445
+ SkColorType colorType,
446
+ sk_sp<SkColorSpace> colorSpace,
447
+ const SkSurfaceProps* surfaceProps)
448
+ SK_API_AVAILABLE(macos(10.11), ios(9.0));
449
+ #endif
450
+
451
+ /** Is this surface compatible with the provided characterization?
452
+
453
+ This method can be used to determine if an existing SkSurface is a viable destination
454
+ for an SkDeferredDisplayList.
455
+
456
+ @param characterization The characterization for which a compatibility check is desired
457
+ @return true if this surface is compatible with the characterization;
458
+ false otherwise
459
+ */
460
+ bool isCompatible(const SkSurfaceCharacterization& characterization) const;
461
+
462
+ /** Returns SkSurface without backing pixels. Drawing to SkCanvas returned from SkSurface
463
+ has no effect. Calling makeImageSnapshot() on returned SkSurface returns nullptr.
464
+
465
+ @param width one or greater
466
+ @param height one or greater
467
+ @return SkSurface if width and height are positive; otherwise, nullptr
468
+
469
+ example: https://fiddle.skia.org/c/@Surface_MakeNull
470
+ */
471
+ static sk_sp<SkSurface> MakeNull(int width, int height);
472
+
473
+ /** Returns pixel count in each row; may be zero or greater.
474
+
475
+ @return number of pixel columns
476
+ */
477
+ int width() const { return fWidth; }
478
+
479
+ /** Returns pixel row count; may be zero or greater.
480
+
481
+ @return number of pixel rows
482
+ */
483
+ int height() const { return fHeight; }
484
+
485
+ /** Returns an ImageInfo describing the surface.
486
+ */
487
+ SkImageInfo imageInfo();
488
+
489
+ /** Returns unique value identifying the content of SkSurface. Returned value changes
490
+ each time the content changes. Content is changed by drawing, or by calling
491
+ notifyContentWillChange().
492
+
493
+ @return unique content identifier
494
+
495
+ example: https://fiddle.skia.org/c/@Surface_notifyContentWillChange
496
+ */
497
+ uint32_t generationID();
498
+
499
+ /** \enum SkSurface::ContentChangeMode
500
+ ContentChangeMode members are parameters to notifyContentWillChange().
501
+ */
502
+ enum ContentChangeMode {
503
+ kDiscard_ContentChangeMode, //!< discards surface on change
504
+ kRetain_ContentChangeMode, //!< preserves surface on change
505
+ };
506
+
507
+ /** Notifies that SkSurface contents will be changed by code outside of Skia.
508
+ Subsequent calls to generationID() return a different value.
509
+
510
+ TODO: Can kRetain_ContentChangeMode be deprecated?
511
+
512
+ example: https://fiddle.skia.org/c/@Surface_notifyContentWillChange
513
+ */
514
+ void notifyContentWillChange(ContentChangeMode mode);
515
+
516
+ /** Returns the recording context being used by the SkSurface.
517
+
518
+ @return the recording context, if available; nullptr otherwise
519
+ */
520
+ GrRecordingContext* recordingContext();
521
+
522
+ /** Returns the recorder being used by the SkSurface.
523
+
524
+ @return the recorder, if available; nullptr otherwise
525
+ */
526
+ skgpu::graphite::Recorder* recorder();
527
+
528
+ #if SK_SUPPORT_GPU
529
+ enum BackendHandleAccess {
530
+ kFlushRead_BackendHandleAccess, //!< back-end object is readable
531
+ kFlushWrite_BackendHandleAccess, //!< back-end object is writable
532
+ kDiscardWrite_BackendHandleAccess, //!< back-end object must be overwritten
533
+ };
534
+
535
+ /** Deprecated.
536
+ */
537
+ static const BackendHandleAccess kFlushRead_TextureHandleAccess =
538
+ kFlushRead_BackendHandleAccess;
539
+
540
+ /** Deprecated.
541
+ */
542
+ static const BackendHandleAccess kFlushWrite_TextureHandleAccess =
543
+ kFlushWrite_BackendHandleAccess;
544
+
545
+ /** Deprecated.
546
+ */
547
+ static const BackendHandleAccess kDiscardWrite_TextureHandleAccess =
548
+ kDiscardWrite_BackendHandleAccess;
549
+
550
+ /** Retrieves the back-end texture. If SkSurface has no back-end texture, an invalid
551
+ object is returned. Call GrBackendTexture::isValid to determine if the result
552
+ is valid.
553
+
554
+ The returned GrBackendTexture should be discarded if the SkSurface is drawn to or deleted.
555
+
556
+ @return GPU texture reference; invalid on failure
557
+ */
558
+ GrBackendTexture getBackendTexture(BackendHandleAccess backendHandleAccess);
559
+
560
+ /** Retrieves the back-end render target. If SkSurface has no back-end render target, an invalid
561
+ object is returned. Call GrBackendRenderTarget::isValid to determine if the result
562
+ is valid.
563
+
564
+ The returned GrBackendRenderTarget should be discarded if the SkSurface is drawn to
565
+ or deleted.
566
+
567
+ @return GPU render target reference; invalid on failure
568
+ */
569
+ GrBackendRenderTarget getBackendRenderTarget(BackendHandleAccess backendHandleAccess);
570
+
571
+ /** If the surface was made via MakeFromBackendTexture then it's backing texture may be
572
+ substituted with a different texture. The contents of the previous backing texture are
573
+ copied into the new texture. SkCanvas state is preserved. The original sample count is
574
+ used. The GrBackendFormat and dimensions of replacement texture must match that of
575
+ the original.
576
+
577
+ Upon success textureReleaseProc is called when it is safe to delete the texture in the
578
+ backend API (accounting only for use of the texture by this surface). If SkSurface creation
579
+ fails textureReleaseProc is called before this function returns.
580
+
581
+ @param backendTexture the new backing texture for the surface
582
+ @param mode Retain or discard current Content
583
+ @param textureReleaseProc function called when texture can be released
584
+ @param releaseContext state passed to textureReleaseProc
585
+ */
586
+ bool replaceBackendTexture(const GrBackendTexture& backendTexture,
587
+ GrSurfaceOrigin origin,
588
+ ContentChangeMode mode = kRetain_ContentChangeMode,
589
+ TextureReleaseProc textureReleaseProc = nullptr,
590
+ ReleaseContext releaseContext = nullptr);
591
+ #endif
592
+
593
+ /** Returns SkCanvas that draws into SkSurface. Subsequent calls return the same SkCanvas.
594
+ SkCanvas returned is managed and owned by SkSurface, and is deleted when SkSurface
595
+ is deleted.
596
+
597
+ @return drawing SkCanvas for SkSurface
598
+
599
+ example: https://fiddle.skia.org/c/@Surface_getCanvas
600
+ */
601
+ SkCanvas* getCanvas();
602
+
603
+ /** Returns a compatible SkSurface, or nullptr. Returned SkSurface contains
604
+ the same raster, GPU, or null properties as the original. Returned SkSurface
605
+ does not share the same pixels.
606
+
607
+ Returns nullptr if imageInfo width or height are zero, or if imageInfo
608
+ is incompatible with SkSurface.
609
+
610
+ @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
611
+ of SkSurface; width and height must be greater than zero
612
+ @return compatible SkSurface or nullptr
613
+
614
+ example: https://fiddle.skia.org/c/@Surface_makeSurface
615
+ */
616
+ sk_sp<SkSurface> makeSurface(const SkImageInfo& imageInfo);
617
+
618
+ /** Calls makeSurface(ImageInfo) with the same ImageInfo as this surface, but with the
619
+ * specified width and height.
620
+ */
621
+ sk_sp<SkSurface> makeSurface(int width, int height);
622
+
623
+ /** Returns SkImage capturing SkSurface contents. Subsequent drawing to SkSurface contents
624
+ are not captured. SkImage allocation is accounted for if SkSurface was created with
625
+ SkBudgeted::kYes.
626
+
627
+ @return SkImage initialized with SkSurface contents
628
+
629
+ example: https://fiddle.skia.org/c/@Surface_makeImageSnapshot
630
+ */
631
+ sk_sp<SkImage> makeImageSnapshot();
632
+
633
+ /**
634
+ * Like the no-parameter version, this returns an image of the current surface contents.
635
+ * This variant takes a rectangle specifying the subset of the surface that is of interest.
636
+ * These bounds will be sanitized before being used.
637
+ * - If bounds extends beyond the surface, it will be trimmed to just the intersection of
638
+ * it and the surface.
639
+ * - If bounds does not intersect the surface, then this returns nullptr.
640
+ * - If bounds == the surface, then this is the same as calling the no-parameter variant.
641
+
642
+ example: https://fiddle.skia.org/c/@Surface_makeImageSnapshot_2
643
+ */
644
+ sk_sp<SkImage> makeImageSnapshot(const SkIRect& bounds);
645
+
646
+ /** Draws SkSurface contents to canvas, with its top-left corner at (x, y).
647
+
648
+ If SkPaint paint is not nullptr, apply SkColorFilter, alpha, SkImageFilter, and SkBlendMode.
649
+
650
+ @param canvas SkCanvas drawn into
651
+ @param x horizontal offset in SkCanvas
652
+ @param y vertical offset in SkCanvas
653
+ @param sampling what technique to use when sampling the surface pixels
654
+ @param paint SkPaint containing SkBlendMode, SkColorFilter, SkImageFilter,
655
+ and so on; or nullptr
656
+
657
+ example: https://fiddle.skia.org/c/@Surface_draw
658
+ */
659
+ void draw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkSamplingOptions& sampling,
660
+ const SkPaint* paint);
661
+
662
+ void draw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPaint* paint = nullptr) {
663
+ this->draw(canvas, x, y, SkSamplingOptions(), paint);
664
+ }
665
+
666
+ /** Copies SkSurface pixel address, row bytes, and SkImageInfo to SkPixmap, if address
667
+ is available, and returns true. If pixel address is not available, return
668
+ false and leave SkPixmap unchanged.
669
+
670
+ pixmap contents become invalid on any future change to SkSurface.
671
+
672
+ @param pixmap storage for pixel state if pixels are readable; otherwise, ignored
673
+ @return true if SkSurface has direct access to pixels
674
+
675
+ example: https://fiddle.skia.org/c/@Surface_peekPixels
676
+ */
677
+ bool peekPixels(SkPixmap* pixmap);
678
+
679
+ /** Copies SkRect of pixels to dst.
680
+
681
+ Source SkRect corners are (srcX, srcY) and SkSurface (width(), height()).
682
+ Destination SkRect corners are (0, 0) and (dst.width(), dst.height()).
683
+ Copies each readable pixel intersecting both rectangles, without scaling,
684
+ converting to dst.colorType() and dst.alphaType() if required.
685
+
686
+ Pixels are readable when SkSurface is raster, or backed by a GPU.
687
+
688
+ The destination pixel storage must be allocated by the caller.
689
+
690
+ Pixel values are converted only if SkColorType and SkAlphaType
691
+ do not match. Only pixels within both source and destination rectangles
692
+ are copied. dst contents outside SkRect intersection are unchanged.
693
+
694
+ Pass negative values for srcX or srcY to offset pixels across or down destination.
695
+
696
+ Does not copy, and returns false if:
697
+ - Source and destination rectangles do not intersect.
698
+ - SkPixmap pixels could not be allocated.
699
+ - dst.rowBytes() is too small to contain one row of pixels.
700
+
701
+ @param dst storage for pixels copied from SkSurface
702
+ @param srcX offset into readable pixels on x-axis; may be negative
703
+ @param srcY offset into readable pixels on y-axis; may be negative
704
+ @return true if pixels were copied
705
+
706
+ example: https://fiddle.skia.org/c/@Surface_readPixels
707
+ */
708
+ bool readPixels(const SkPixmap& dst, int srcX, int srcY);
709
+
710
+ /** Copies SkRect of pixels from SkCanvas into dstPixels.
711
+
712
+ Source SkRect corners are (srcX, srcY) and SkSurface (width(), height()).
713
+ Destination SkRect corners are (0, 0) and (dstInfo.width(), dstInfo.height()).
714
+ Copies each readable pixel intersecting both rectangles, without scaling,
715
+ converting to dstInfo.colorType() and dstInfo.alphaType() if required.
716
+
717
+ Pixels are readable when SkSurface is raster, or backed by a GPU.
718
+
719
+ The destination pixel storage must be allocated by the caller.
720
+
721
+ Pixel values are converted only if SkColorType and SkAlphaType
722
+ do not match. Only pixels within both source and destination rectangles
723
+ are copied. dstPixels contents outside SkRect intersection are unchanged.
724
+
725
+ Pass negative values for srcX or srcY to offset pixels across or down destination.
726
+
727
+ Does not copy, and returns false if:
728
+ - Source and destination rectangles do not intersect.
729
+ - SkSurface pixels could not be converted to dstInfo.colorType() or dstInfo.alphaType().
730
+ - dstRowBytes is too small to contain one row of pixels.
731
+
732
+ @param dstInfo width, height, SkColorType, and SkAlphaType of dstPixels
733
+ @param dstPixels storage for pixels; dstInfo.height() times dstRowBytes, or larger
734
+ @param dstRowBytes size of one destination row; dstInfo.width() times pixel size, or larger
735
+ @param srcX offset into readable pixels on x-axis; may be negative
736
+ @param srcY offset into readable pixels on y-axis; may be negative
737
+ @return true if pixels were copied
738
+ */
739
+ bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
740
+ int srcX, int srcY);
741
+
742
+ /** Copies SkRect of pixels from SkSurface into bitmap.
743
+
744
+ Source SkRect corners are (srcX, srcY) and SkSurface (width(), height()).
745
+ Destination SkRect corners are (0, 0) and (bitmap.width(), bitmap.height()).
746
+ Copies each readable pixel intersecting both rectangles, without scaling,
747
+ converting to bitmap.colorType() and bitmap.alphaType() if required.
748
+
749
+ Pixels are readable when SkSurface is raster, or backed by a GPU.
750
+
751
+ The destination pixel storage must be allocated by the caller.
752
+
753
+ Pixel values are converted only if SkColorType and SkAlphaType
754
+ do not match. Only pixels within both source and destination rectangles
755
+ are copied. dst contents outside SkRect intersection are unchanged.
756
+
757
+ Pass negative values for srcX or srcY to offset pixels across or down destination.
758
+
759
+ Does not copy, and returns false if:
760
+ - Source and destination rectangles do not intersect.
761
+ - SkSurface pixels could not be converted to dst.colorType() or dst.alphaType().
762
+ - dst pixels could not be allocated.
763
+ - dst.rowBytes() is too small to contain one row of pixels.
764
+
765
+ @param dst storage for pixels copied from SkSurface
766
+ @param srcX offset into readable pixels on x-axis; may be negative
767
+ @param srcY offset into readable pixels on y-axis; may be negative
768
+ @return true if pixels were copied
769
+
770
+ example: https://fiddle.skia.org/c/@Surface_readPixels_3
771
+ */
772
+ bool readPixels(const SkBitmap& dst, int srcX, int srcY);
773
+
774
+ using AsyncReadResult = SkImage::AsyncReadResult;
775
+
776
+ /** Client-provided context that is passed to client-provided ReadPixelsContext. */
777
+ using ReadPixelsContext = void*;
778
+
779
+ /** Client-provided callback to asyncRescaleAndReadPixels() or
780
+ asyncRescaleAndReadPixelsYUV420() that is called when read result is ready or on failure.
781
+ */
782
+ using ReadPixelsCallback = void(ReadPixelsContext, std::unique_ptr<const AsyncReadResult>);
783
+
784
+ /** Controls the gamma that rescaling occurs in for asyncRescaleAndReadPixels() and
785
+ asyncRescaleAndReadPixelsYUV420().
786
+ */
787
+ using RescaleGamma = SkImage::RescaleGamma;
788
+ using RescaleMode = SkImage::RescaleMode;
789
+
790
+ /** Makes surface pixel data available to caller, possibly asynchronously. It can also rescale
791
+ the surface pixels.
792
+
793
+ Currently asynchronous reads are only supported on the GPU backend and only when the
794
+ underlying 3D API supports transfer buffers and CPU/GPU synchronization primitives. In all
795
+ other cases this operates synchronously.
796
+
797
+ Data is read from the source sub-rectangle, is optionally converted to a linear gamma, is
798
+ rescaled to the size indicated by 'info', is then converted to the color space, color type,
799
+ and alpha type of 'info'. A 'srcRect' that is not contained by the bounds of the surface
800
+ causes failure.
801
+
802
+ When the pixel data is ready the caller's ReadPixelsCallback is called with a
803
+ AsyncReadResult containing pixel data in the requested color type, alpha type, and color
804
+ space. The AsyncReadResult will have count() == 1. Upon failure the callback is called
805
+ with nullptr for AsyncReadResult. For a GPU surface this flushes work but a submit must
806
+ occur to guarantee a finite time before the callback is called.
807
+
808
+ The data is valid for the lifetime of AsyncReadResult with the exception that if the
809
+ SkSurface is GPU-backed the data is immediately invalidated if the context is abandoned
810
+ or destroyed.
811
+
812
+ @param info info of the requested pixels
813
+ @param srcRect subrectangle of surface to read
814
+ @param rescaleGamma controls whether rescaling is done in the surface's gamma or whether
815
+ the source data is transformed to a linear gamma before rescaling.
816
+ @param rescaleMode controls the technique of the rescaling
817
+ @param callback function to call with result of the read
818
+ @param context passed to callback
819
+ */
820
+ void asyncRescaleAndReadPixels(const SkImageInfo& info,
821
+ const SkIRect& srcRect,
822
+ RescaleGamma rescaleGamma,
823
+ RescaleMode rescaleMode,
824
+ ReadPixelsCallback callback,
825
+ ReadPixelsContext context);
826
+
827
+ /**
828
+ Similar to asyncRescaleAndReadPixels but performs an additional conversion to YUV. The
829
+ RGB->YUV conversion is controlled by 'yuvColorSpace'. The YUV data is returned as three
830
+ planes ordered y, u, v. The u and v planes are half the width and height of the resized
831
+ rectangle. The y, u, and v values are single bytes. Currently this fails if 'dstSize'
832
+ width and height are not even. A 'srcRect' that is not contained by the bounds of the
833
+ surface causes failure.
834
+
835
+ When the pixel data is ready the caller's ReadPixelsCallback is called with a
836
+ AsyncReadResult containing the planar data. The AsyncReadResult will have count() == 3.
837
+ Upon failure the callback is called with nullptr for AsyncReadResult. For a GPU surface this
838
+ flushes work but a submit must occur to guarantee a finite time before the callback is
839
+ called.
840
+
841
+ The data is valid for the lifetime of AsyncReadResult with the exception that if the
842
+ SkSurface is GPU-backed the data is immediately invalidated if the context is abandoned
843
+ or destroyed.
844
+
845
+ @param yuvColorSpace The transformation from RGB to YUV. Applied to the resized image
846
+ after it is converted to dstColorSpace.
847
+ @param dstColorSpace The color space to convert the resized image to, after rescaling.
848
+ @param srcRect The portion of the surface to rescale and convert to YUV planes.
849
+ @param dstSize The size to rescale srcRect to
850
+ @param rescaleGamma controls whether rescaling is done in the surface's gamma or whether
851
+ the source data is transformed to a linear gamma before rescaling.
852
+ @param rescaleMode controls the sampling technique of the rescaling
853
+ @param callback function to call with the planar read result
854
+ @param context passed to callback
855
+ */
856
+ void asyncRescaleAndReadPixelsYUV420(SkYUVColorSpace yuvColorSpace,
857
+ sk_sp<SkColorSpace> dstColorSpace,
858
+ const SkIRect& srcRect,
859
+ const SkISize& dstSize,
860
+ RescaleGamma rescaleGamma,
861
+ RescaleMode rescaleMode,
862
+ ReadPixelsCallback callback,
863
+ ReadPixelsContext context);
864
+
865
+ /** Copies SkRect of pixels from the src SkPixmap to the SkSurface.
866
+
867
+ Source SkRect corners are (0, 0) and (src.width(), src.height()).
868
+ Destination SkRect corners are (dstX, dstY) and
869
+ (dstX + Surface width(), dstY + Surface height()).
870
+
871
+ Copies each readable pixel intersecting both rectangles, without scaling,
872
+ converting to SkSurface colorType() and SkSurface alphaType() if required.
873
+
874
+ @param src storage for pixels to copy to SkSurface
875
+ @param dstX x-axis position relative to SkSurface to begin copy; may be negative
876
+ @param dstY y-axis position relative to SkSurface to begin copy; may be negative
877
+
878
+ example: https://fiddle.skia.org/c/@Surface_writePixels
879
+ */
880
+ void writePixels(const SkPixmap& src, int dstX, int dstY);
881
+
882
+ /** Copies SkRect of pixels from the src SkBitmap to the SkSurface.
883
+
884
+ Source SkRect corners are (0, 0) and (src.width(), src.height()).
885
+ Destination SkRect corners are (dstX, dstY) and
886
+ (dstX + Surface width(), dstY + Surface height()).
887
+
888
+ Copies each readable pixel intersecting both rectangles, without scaling,
889
+ converting to SkSurface colorType() and SkSurface alphaType() if required.
890
+
891
+ @param src storage for pixels to copy to SkSurface
892
+ @param dstX x-axis position relative to SkSurface to begin copy; may be negative
893
+ @param dstY y-axis position relative to SkSurface to begin copy; may be negative
894
+
895
+ example: https://fiddle.skia.org/c/@Surface_writePixels_2
896
+ */
897
+ void writePixels(const SkBitmap& src, int dstX, int dstY);
898
+
899
+ /** Returns SkSurfaceProps for surface.
900
+
901
+ @return LCD striping orientation and setting for device independent fonts
902
+ */
903
+ const SkSurfaceProps& props() const { return fProps; }
904
+
905
+ /** Call to ensure all reads/writes of the surface have been issued to the underlying 3D API.
906
+ Skia will correctly order its own draws and pixel operations. This must to be used to ensure
907
+ correct ordering when the surface backing store is accessed outside Skia (e.g. direct use of
908
+ the 3D API or a windowing system). GrDirectContext has additional flush and submit methods
909
+ that apply to all surfaces and images created from a GrDirectContext. This is equivalent to
910
+ calling SkSurface::flush with a default GrFlushInfo followed by
911
+ GrDirectContext::submit(syncCpu).
912
+ */
913
+ void flushAndSubmit(bool syncCpu = false);
914
+
915
+ enum class BackendSurfaceAccess {
916
+ kNoAccess, //!< back-end object will not be used by client
917
+ kPresent, //!< back-end surface will be used for presenting to screen
918
+ };
919
+
920
+ #if SK_SUPPORT_GPU
921
+ /** If a surface is GPU texture backed, is being drawn with MSAA, and there is a resolve
922
+ texture, this call will insert a resolve command into the stream of gpu commands. In order
923
+ for the resolve to actually have an effect, the work still needs to be flushed and submitted
924
+ to the GPU after recording the resolve command. If a resolve is not supported or the
925
+ SkSurface has no dirty work to resolve, then this call is a no-op.
926
+
927
+ This call is most useful when the SkSurface is created by wrapping a single sampled gpu
928
+ texture, but asking Skia to render with MSAA. If the client wants to use the wrapped texture
929
+ outside of Skia, the only way to trigger a resolve is either to call this command or use
930
+ SkSurface::flush.
931
+ */
932
+ void resolveMSAA();
933
+
934
+ /** Issues pending SkSurface commands to the GPU-backed API objects and resolves any SkSurface
935
+ MSAA. A call to GrDirectContext::submit is always required to ensure work is actually sent
936
+ to the gpu. Some specific API details:
937
+ GL: Commands are actually sent to the driver, but glFlush is never called. Thus some
938
+ sync objects from the flush will not be valid until a submission occurs.
939
+
940
+ Vulkan/Metal/D3D/Dawn: Commands are recorded to the backend APIs corresponding command
941
+ buffer or encoder objects. However, these objects are not sent to the gpu until a
942
+ submission occurs.
943
+
944
+ The work that is submitted to the GPU will be dependent on the BackendSurfaceAccess that is
945
+ passed in.
946
+
947
+ If BackendSurfaceAccess::kNoAccess is passed in all commands will be issued to the GPU.
948
+
949
+ If BackendSurfaceAccess::kPresent is passed in and the backend API is not Vulkan, it is
950
+ treated the same as kNoAccess. If the backend API is Vulkan, the VkImage that backs the
951
+ SkSurface will be transferred back to its original queue. If the SkSurface was created by
952
+ wrapping a VkImage, the queue will be set to the queue which was originally passed in on
953
+ the GrVkImageInfo. Additionally, if the original queue was not external or foreign the
954
+ layout of the VkImage will be set to VK_IMAGE_LAYOUT_PRESENT_SRC_KHR.
955
+
956
+ The GrFlushInfo describes additional options to flush. Please see documentation at
957
+ GrFlushInfo for more info.
958
+
959
+ If the return is GrSemaphoresSubmitted::kYes, only initialized GrBackendSemaphores will be
960
+ submitted to the gpu during the next submit call (it is possible Skia failed to create a
961
+ subset of the semaphores). The client should not wait on these semaphores until after submit
962
+ has been called, but must keep them alive until then. If a submit flag was passed in with
963
+ the flush these valid semaphores can we waited on immediately. If this call returns
964
+ GrSemaphoresSubmitted::kNo, the GPU backend will not submit any semaphores to be signaled on
965
+ the GPU. Thus the client should not have the GPU wait on any of the semaphores passed in
966
+ with the GrFlushInfo. Regardless of whether semaphores were submitted to the GPU or not, the
967
+ client is still responsible for deleting any initialized semaphores.
968
+ Regardless of semaphore submission the context will still be flushed. It should be
969
+ emphasized that a return value of GrSemaphoresSubmitted::kNo does not mean the flush did not
970
+ happen. It simply means there were no semaphores submitted to the GPU. A caller should only
971
+ take this as a failure if they passed in semaphores to be submitted.
972
+
973
+ Pending surface commands are flushed regardless of the return result.
974
+
975
+ @param access type of access the call will do on the backend object after flush
976
+ @param info flush options
977
+ */
978
+ GrSemaphoresSubmitted flush(BackendSurfaceAccess access, const GrFlushInfo& info);
979
+
980
+ /** Issues pending SkSurface commands to the GPU-backed API objects and resolves any SkSurface
981
+ MSAA. A call to GrDirectContext::submit is always required to ensure work is actually sent
982
+ to the gpu. Some specific API details:
983
+ GL: Commands are actually sent to the driver, but glFlush is never called. Thus some
984
+ sync objects from the flush will not be valid until a submission occurs.
985
+
986
+ Vulkan/Metal/D3D/Dawn: Commands are recorded to the backend APIs corresponding command
987
+ buffer or encoder objects. However, these objects are not sent to the gpu until a
988
+ submission occurs.
989
+
990
+ The GrFlushInfo describes additional options to flush. Please see documentation at
991
+ GrFlushInfo for more info.
992
+
993
+ If a GrBackendSurfaceMutableState is passed in, at the end of the flush we will transition
994
+ the surface to be in the state requested by the GrBackendSurfaceMutableState. If the surface
995
+ (or SkImage or GrBackendSurface wrapping the same backend object) is used again after this
996
+ flush the state may be changed and no longer match what is requested here. This is often
997
+ used if the surface will be used for presenting or external use and the client wants backend
998
+ object to be prepped for that use. A finishedProc or semaphore on the GrFlushInfo will also
999
+ include the work for any requested state change.
1000
+
1001
+ If the backend API is Vulkan, the caller can set the GrBackendSurfaceMutableState's
1002
+ VkImageLayout to VK_IMAGE_LAYOUT_UNDEFINED or queueFamilyIndex to VK_QUEUE_FAMILY_IGNORED to
1003
+ tell Skia to not change those respective states.
1004
+
1005
+ If the return is GrSemaphoresSubmitted::kYes, only initialized GrBackendSemaphores will be
1006
+ submitted to the gpu during the next submit call (it is possible Skia failed to create a
1007
+ subset of the semaphores). The client should not wait on these semaphores until after submit
1008
+ has been called, but must keep them alive until then. If a submit flag was passed in with
1009
+ the flush these valid semaphores can we waited on immediately. If this call returns
1010
+ GrSemaphoresSubmitted::kNo, the GPU backend will not submit any semaphores to be signaled on
1011
+ the GPU. Thus the client should not have the GPU wait on any of the semaphores passed in
1012
+ with the GrFlushInfo. Regardless of whether semaphores were submitted to the GPU or not, the
1013
+ client is still responsible for deleting any initialized semaphores.
1014
+ Regardleess of semaphore submission the context will still be flushed. It should be
1015
+ emphasized that a return value of GrSemaphoresSubmitted::kNo does not mean the flush did not
1016
+ happen. It simply means there were no semaphores submitted to the GPU. A caller should only
1017
+ take this as a failure if they passed in semaphores to be submitted.
1018
+
1019
+ Pending surface commands are flushed regardless of the return result.
1020
+
1021
+ @param info flush options
1022
+ @param access optional state change request after flush
1023
+ */
1024
+ GrSemaphoresSubmitted flush(const GrFlushInfo& info,
1025
+ const GrBackendSurfaceMutableState* newState = nullptr);
1026
+ #endif // SK_SUPPORT_GPU
1027
+
1028
+ void flush();
1029
+
1030
+ /** Inserts a list of GPU semaphores that the current GPU-backed API must wait on before
1031
+ executing any more commands on the GPU for this surface. If this call returns false, then
1032
+ the GPU back-end will not wait on any passed in semaphores, and the client will still own
1033
+ the semaphores, regardless of the value of deleteSemaphoresAfterWait.
1034
+
1035
+ If deleteSemaphoresAfterWait is false then Skia will not delete the semaphores. In this case
1036
+ it is the client's responsibility to not destroy or attempt to reuse the semaphores until it
1037
+ knows that Skia has finished waiting on them. This can be done by using finishedProcs
1038
+ on flush calls.
1039
+
1040
+ @param numSemaphores size of waitSemaphores array
1041
+ @param waitSemaphores array of semaphore containers
1042
+ @paramm deleteSemaphoresAfterWait who owns and should delete the semaphores
1043
+ @return true if GPU is waiting on semaphores
1044
+ */
1045
+ bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores,
1046
+ bool deleteSemaphoresAfterWait = true);
1047
+
1048
+ /** Initializes SkSurfaceCharacterization that can be used to perform GPU back-end
1049
+ processing in a separate thread. Typically this is used to divide drawing
1050
+ into multiple tiles. SkDeferredDisplayListRecorder records the drawing commands
1051
+ for each tile.
1052
+
1053
+ Return true if SkSurface supports characterization. raster surface returns false.
1054
+
1055
+ @param characterization properties for parallel drawing
1056
+ @return true if supported
1057
+
1058
+ example: https://fiddle.skia.org/c/@Surface_characterize
1059
+ */
1060
+ bool characterize(SkSurfaceCharacterization* characterization) const;
1061
+
1062
+ /** Draws the deferred display list created via a SkDeferredDisplayListRecorder.
1063
+ If the deferred display list is not compatible with this SkSurface, the draw is skipped
1064
+ and false is return.
1065
+
1066
+ The xOffset and yOffset parameters are experimental and, if not both zero, will cause
1067
+ the draw to be ignored.
1068
+ When implemented, if xOffset or yOffset are non-zero, the DDL will be drawn offset by that
1069
+ amount into the surface.
1070
+
1071
+ @param deferredDisplayList drawing commands
1072
+ @param xOffset x-offset at which to draw the DDL
1073
+ @param yOffset y-offset at which to draw the DDL
1074
+ @return false if deferredDisplayList is not compatible
1075
+
1076
+ example: https://fiddle.skia.org/c/@Surface_draw_2
1077
+ */
1078
+ bool draw(sk_sp<const SkDeferredDisplayList> deferredDisplayList,
1079
+ int xOffset = 0,
1080
+ int yOffset = 0);
1081
+
1082
+ protected:
1083
+ SkSurface(int width, int height, const SkSurfaceProps* surfaceProps);
1084
+ SkSurface(const SkImageInfo& imageInfo, const SkSurfaceProps* surfaceProps);
1085
+
1086
+ // called by subclass if their contents have changed
1087
+ void dirtyGenerationID() {
1088
+ fGenerationID = 0;
1089
+ }
1090
+
1091
+ private:
1092
+ const SkSurfaceProps fProps;
1093
+ const int fWidth;
1094
+ const int fHeight;
1095
+ uint32_t fGenerationID;
1096
+
1097
+ using INHERITED = SkRefCnt;
1098
+ };
1099
+
1100
+ #endif