@shopify/react-native-skia 0.1.115

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 (1704) hide show
  1. package/LICENSE.md +7 -0
  2. package/README.md +7 -0
  3. package/android/CMakeLists.txt +132 -0
  4. package/android/README.md +14 -0
  5. package/android/build.gradle +196 -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 +169 -0
  9. package/android/cpp/jni/JniSkiaManager.cpp +57 -0
  10. package/android/cpp/jni/SkiaOpenGLRenderer.cpp +340 -0
  11. package/android/cpp/jni/include/JniPlatformContext.h +75 -0
  12. package/android/cpp/jni/include/JniPlatformContextWrapper.h +54 -0
  13. package/android/cpp/jni/include/JniSkiaDrawView.h +82 -0
  14. package/android/cpp/jni/include/JniSkiaManager.h +81 -0
  15. package/android/cpp/jni/include/SkiaOpenGLRenderer.h +159 -0
  16. package/android/src/main/AndroidManifest.xml +6 -0
  17. package/android/src/main/java/com/shopify/reactnative/skia/PlatformContext.java +181 -0
  18. package/android/src/main/java/com/shopify/reactnative/skia/RNSkiaModule.java +88 -0
  19. package/android/src/main/java/com/shopify/reactnative/skia/RNSkiaPackage.java +24 -0
  20. package/android/src/main/java/com/shopify/reactnative/skia/RNSkiaViewManager.java +72 -0
  21. package/android/src/main/java/com/shopify/reactnative/skia/SkiaDrawView.java +137 -0
  22. package/android/src/main/java/com/shopify/reactnative/skia/SkiaManager.java +66 -0
  23. package/cpp/api/JsiSkApi.h +97 -0
  24. package/cpp/api/JsiSkCanvas.h +532 -0
  25. package/cpp/api/JsiSkColorFilter.h +43 -0
  26. package/cpp/api/JsiSkColorFilterFactory.h +98 -0
  27. package/cpp/api/JsiSkContourMeasure.h +102 -0
  28. package/cpp/api/JsiSkContourMeasureIter.h +90 -0
  29. package/cpp/api/JsiSkData.h +46 -0
  30. package/cpp/api/JsiSkDataFactory.h +92 -0
  31. package/cpp/api/JsiSkFont.h +326 -0
  32. package/cpp/api/JsiSkFontMgr.h +84 -0
  33. package/cpp/api/JsiSkFontMgrFactory.h +48 -0
  34. package/cpp/api/JsiSkHostObjects.h +83 -0
  35. package/cpp/api/JsiSkImage.h +141 -0
  36. package/cpp/api/JsiSkImageFactory.h +50 -0
  37. package/cpp/api/JsiSkImageFilter.h +47 -0
  38. package/cpp/api/JsiSkImageFilterFactory.h +217 -0
  39. package/cpp/api/JsiSkImageInfo.h +57 -0
  40. package/cpp/api/JsiSkMaskFilter.h +45 -0
  41. package/cpp/api/JsiSkMaskFilterFactory.h +42 -0
  42. package/cpp/api/JsiSkMatrix.h +64 -0
  43. package/cpp/api/JsiSkPaint.h +227 -0
  44. package/cpp/api/JsiSkPath.h +557 -0
  45. package/cpp/api/JsiSkPathEffect.h +45 -0
  46. package/cpp/api/JsiSkPathEffectFactory.h +123 -0
  47. package/cpp/api/JsiSkPathFactory.h +64 -0
  48. package/cpp/api/JsiSkPoint.h +81 -0
  49. package/cpp/api/JsiSkRRect.h +93 -0
  50. package/cpp/api/JsiSkRSXform.h +105 -0
  51. package/cpp/api/JsiSkRect.h +119 -0
  52. package/cpp/api/JsiSkRuntimeEffect.h +217 -0
  53. package/cpp/api/JsiSkRuntimeEffectFactory.h +41 -0
  54. package/cpp/api/JsiSkSVG.h +43 -0
  55. package/cpp/api/JsiSkSVGFactory.h +48 -0
  56. package/cpp/api/JsiSkShader.h +45 -0
  57. package/cpp/api/JsiSkShaderFactory.h +214 -0
  58. package/cpp/api/JsiSkSurface.h +67 -0
  59. package/cpp/api/JsiSkSurfaceFactory.h +44 -0
  60. package/cpp/api/JsiSkTextBlob.h +50 -0
  61. package/cpp/api/JsiSkTextBlobFactory.h +109 -0
  62. package/cpp/api/JsiSkTypeface.h +76 -0
  63. package/cpp/api/JsiSkTypefaceFactory.h +30 -0
  64. package/cpp/api/JsiSkVertices.h +147 -0
  65. package/cpp/jsi/JsiHostObject.cpp +154 -0
  66. package/cpp/jsi/JsiHostObject.h +241 -0
  67. package/cpp/rnskia/RNSkAnimation.h +73 -0
  68. package/cpp/rnskia/RNSkDispatchQueue.cpp +84 -0
  69. package/cpp/rnskia/RNSkDispatchQueue.h +47 -0
  70. package/cpp/rnskia/RNSkDrawView.cpp +333 -0
  71. package/cpp/rnskia/RNSkDrawView.h +242 -0
  72. package/cpp/rnskia/RNSkInfoParameter.h +100 -0
  73. package/cpp/rnskia/RNSkJsiViewApi.h +305 -0
  74. package/cpp/rnskia/RNSkManager.cpp +81 -0
  75. package/cpp/rnskia/RNSkManager.h +81 -0
  76. package/cpp/rnskia/RNSkPlatformContext.h +196 -0
  77. package/cpp/rnskia/RNSkValueApi.h +69 -0
  78. package/cpp/rnskia/values/RNSkClockValue.h +133 -0
  79. package/cpp/rnskia/values/RNSkDerivedValue.h +92 -0
  80. package/cpp/rnskia/values/RNSkReadonlyValue.h +140 -0
  81. package/cpp/rnskia/values/RNSkValue.h +112 -0
  82. package/cpp/skia/include/android/SkAndroidFrameworkUtils.h +61 -0
  83. package/cpp/skia/include/android/SkAnimatedImage.h +179 -0
  84. package/cpp/skia/include/c/sk_canvas.h +159 -0
  85. package/cpp/skia/include/c/sk_colorspace.h +25 -0
  86. package/cpp/skia/include/c/sk_data.h +65 -0
  87. package/cpp/skia/include/c/sk_image.h +71 -0
  88. package/cpp/skia/include/c/sk_imageinfo.h +62 -0
  89. package/cpp/skia/include/c/sk_maskfilter.h +47 -0
  90. package/cpp/skia/include/c/sk_matrix.h +49 -0
  91. package/cpp/skia/include/c/sk_paint.h +145 -0
  92. package/cpp/skia/include/c/sk_path.h +102 -0
  93. package/cpp/skia/include/c/sk_picture.h +70 -0
  94. package/cpp/skia/include/c/sk_shader.h +143 -0
  95. package/cpp/skia/include/c/sk_surface.h +73 -0
  96. package/cpp/skia/include/c/sk_types.h +278 -0
  97. package/cpp/skia/include/codec/SkAndroidCodec.h +263 -0
  98. package/cpp/skia/include/codec/SkCodec.h +992 -0
  99. package/cpp/skia/include/codec/SkCodecAnimation.h +61 -0
  100. package/cpp/skia/include/codec/SkEncodedOrigin.h +54 -0
  101. package/cpp/skia/include/config/SkUserConfig.h +89 -0
  102. package/cpp/skia/include/core/SkAnnotation.h +50 -0
  103. package/cpp/skia/include/core/SkBBHFactory.h +63 -0
  104. package/cpp/skia/include/core/SkBitmap.h +1212 -0
  105. package/cpp/skia/include/core/SkBlendMode.h +110 -0
  106. package/cpp/skia/include/core/SkBlender.h +33 -0
  107. package/cpp/skia/include/core/SkBlurTypes.h +22 -0
  108. package/cpp/skia/include/core/SkCanvas.h +2583 -0
  109. package/cpp/skia/include/core/SkCanvasVirtualEnforcer.h +61 -0
  110. package/cpp/skia/include/core/SkClipOp.h +19 -0
  111. package/cpp/skia/include/core/SkColor.h +438 -0
  112. package/cpp/skia/include/core/SkColorFilter.h +90 -0
  113. package/cpp/skia/include/core/SkColorPriv.h +152 -0
  114. package/cpp/skia/include/core/SkColorSpace.h +245 -0
  115. package/cpp/skia/include/core/SkContourMeasure.h +131 -0
  116. package/cpp/skia/include/core/SkCoverageMode.h +30 -0
  117. package/cpp/skia/include/core/SkCubicMap.h +45 -0
  118. package/cpp/skia/include/core/SkCustomMesh.h +202 -0
  119. package/cpp/skia/include/core/SkData.h +188 -0
  120. package/cpp/skia/include/core/SkDataTable.h +118 -0
  121. package/cpp/skia/include/core/SkDeferredDisplayList.h +110 -0
  122. package/cpp/skia/include/core/SkDeferredDisplayListRecorder.h +97 -0
  123. package/cpp/skia/include/core/SkDocument.h +91 -0
  124. package/cpp/skia/include/core/SkDrawLooper.h +135 -0
  125. package/cpp/skia/include/core/SkDrawable.h +160 -0
  126. package/cpp/skia/include/core/SkEncodedImageFormat.h +35 -0
  127. package/cpp/skia/include/core/SkExecutor.h +41 -0
  128. package/cpp/skia/include/core/SkFlattenable.h +113 -0
  129. package/cpp/skia/include/core/SkFont.h +534 -0
  130. package/cpp/skia/include/core/SkFontArguments.h +62 -0
  131. package/cpp/skia/include/core/SkFontMetrics.h +138 -0
  132. package/cpp/skia/include/core/SkFontMgr.h +157 -0
  133. package/cpp/skia/include/core/SkFontParameters.h +42 -0
  134. package/cpp/skia/include/core/SkFontStyle.h +81 -0
  135. package/cpp/skia/include/core/SkFontTypes.h +25 -0
  136. package/cpp/skia/include/core/SkGraphics.h +153 -0
  137. package/cpp/skia/include/core/SkICC.h +19 -0
  138. package/cpp/skia/include/core/SkImage.h +1302 -0
  139. package/cpp/skia/include/core/SkImageEncoder.h +72 -0
  140. package/cpp/skia/include/core/SkImageFilter.h +114 -0
  141. package/cpp/skia/include/core/SkImageGenerator.h +215 -0
  142. package/cpp/skia/include/core/SkImageInfo.h +721 -0
  143. package/cpp/skia/include/core/SkM44.h +426 -0
  144. package/cpp/skia/include/core/SkMallocPixelRef.h +42 -0
  145. package/cpp/skia/include/core/SkMaskFilter.h +50 -0
  146. package/cpp/skia/include/core/SkMath.h +54 -0
  147. package/cpp/skia/include/core/SkMatrix.h +1986 -0
  148. package/cpp/skia/include/core/SkMilestone.h +9 -0
  149. package/cpp/skia/include/core/SkOverdrawCanvas.h +68 -0
  150. package/cpp/skia/include/core/SkPaint.h +720 -0
  151. package/cpp/skia/include/core/SkPath.h +1891 -0
  152. package/cpp/skia/include/core/SkPathBuilder.h +268 -0
  153. package/cpp/skia/include/core/SkPathEffect.h +106 -0
  154. package/cpp/skia/include/core/SkPathMeasure.h +88 -0
  155. package/cpp/skia/include/core/SkPathTypes.h +59 -0
  156. package/cpp/skia/include/core/SkPicture.h +280 -0
  157. package/cpp/skia/include/core/SkPictureRecorder.h +115 -0
  158. package/cpp/skia/include/core/SkPixelRef.h +123 -0
  159. package/cpp/skia/include/core/SkPixmap.h +720 -0
  160. package/cpp/skia/include/core/SkPngChunkReader.h +45 -0
  161. package/cpp/skia/include/core/SkPoint.h +566 -0
  162. package/cpp/skia/include/core/SkPoint3.h +157 -0
  163. package/cpp/skia/include/core/SkPromiseImageTexture.h +46 -0
  164. package/cpp/skia/include/core/SkRRect.h +512 -0
  165. package/cpp/skia/include/core/SkRSXform.h +69 -0
  166. package/cpp/skia/include/core/SkRasterHandleAllocator.h +92 -0
  167. package/cpp/skia/include/core/SkRect.h +1378 -0
  168. package/cpp/skia/include/core/SkRefCnt.h +382 -0
  169. package/cpp/skia/include/core/SkRegion.h +672 -0
  170. package/cpp/skia/include/core/SkSamplingOptions.h +92 -0
  171. package/cpp/skia/include/core/SkScalar.h +194 -0
  172. package/cpp/skia/include/core/SkSerialProcs.h +73 -0
  173. package/cpp/skia/include/core/SkShader.h +148 -0
  174. package/cpp/skia/include/core/SkSize.h +90 -0
  175. package/cpp/skia/include/core/SkSpan.h +89 -0
  176. package/cpp/skia/include/core/SkStream.h +524 -0
  177. package/cpp/skia/include/core/SkString.h +302 -0
  178. package/cpp/skia/include/core/SkStringView.h +185 -0
  179. package/cpp/skia/include/core/SkStrokeRec.h +154 -0
  180. package/cpp/skia/include/core/SkSurface.h +1079 -0
  181. package/cpp/skia/include/core/SkSurfaceCharacterization.h +263 -0
  182. package/cpp/skia/include/core/SkSurfaceProps.h +92 -0
  183. package/cpp/skia/include/core/SkSwizzle.h +19 -0
  184. package/cpp/skia/include/core/SkTextBlob.h +503 -0
  185. package/cpp/skia/include/core/SkTileMode.h +41 -0
  186. package/cpp/skia/include/core/SkTime.h +63 -0
  187. package/cpp/skia/include/core/SkTraceMemoryDump.h +99 -0
  188. package/cpp/skia/include/core/SkTypeface.h +454 -0
  189. package/cpp/skia/include/core/SkTypes.h +621 -0
  190. package/cpp/skia/include/core/SkUnPreMultiply.h +56 -0
  191. package/cpp/skia/include/core/SkVertices.h +132 -0
  192. package/cpp/skia/include/core/SkYUVAInfo.h +304 -0
  193. package/cpp/skia/include/core/SkYUVAPixmaps.h +336 -0
  194. package/cpp/skia/include/docs/SkPDFDocument.h +196 -0
  195. package/cpp/skia/include/docs/SkXPSDocument.h +27 -0
  196. package/cpp/skia/include/effects/Sk1DPathEffect.h +35 -0
  197. package/cpp/skia/include/effects/Sk2DPathEffect.h +30 -0
  198. package/cpp/skia/include/effects/SkBlenders.h +27 -0
  199. package/cpp/skia/include/effects/SkBlurDrawLooper.h +26 -0
  200. package/cpp/skia/include/effects/SkBlurMaskFilter.h +35 -0
  201. package/cpp/skia/include/effects/SkColorMatrix.h +55 -0
  202. package/cpp/skia/include/effects/SkColorMatrixFilter.h +25 -0
  203. package/cpp/skia/include/effects/SkCornerPathEffect.h +28 -0
  204. package/cpp/skia/include/effects/SkDashPathEffect.h +39 -0
  205. package/cpp/skia/include/effects/SkDiscretePathEffect.h +37 -0
  206. package/cpp/skia/include/effects/SkGradientShader.h +264 -0
  207. package/cpp/skia/include/effects/SkHighContrastFilter.h +80 -0
  208. package/cpp/skia/include/effects/SkImageFilters.h +551 -0
  209. package/cpp/skia/include/effects/SkLayerDrawLooper.h +161 -0
  210. package/cpp/skia/include/effects/SkLumaColorFilter.h +34 -0
  211. package/cpp/skia/include/effects/SkOpPathEffect.h +39 -0
  212. package/cpp/skia/include/effects/SkOverdrawColorFilter.h +29 -0
  213. package/cpp/skia/include/effects/SkPerlinNoiseShader.h +54 -0
  214. package/cpp/skia/include/effects/SkRuntimeEffect.h +518 -0
  215. package/cpp/skia/include/effects/SkShaderMaskFilter.h +24 -0
  216. package/cpp/skia/include/effects/SkStrokeAndFillPathEffect.h +28 -0
  217. package/cpp/skia/include/effects/SkTableColorFilter.h +42 -0
  218. package/cpp/skia/include/effects/SkTableMaskFilter.h +37 -0
  219. package/cpp/skia/include/effects/SkTrimPathEffect.h +41 -0
  220. package/cpp/skia/include/encode/SkEncoder.h +42 -0
  221. package/cpp/skia/include/encode/SkJpegEncoder.h +97 -0
  222. package/cpp/skia/include/encode/SkPngEncoder.h +99 -0
  223. package/cpp/skia/include/encode/SkWebpEncoder.h +48 -0
  224. package/cpp/skia/include/gpu/GrBackendDrawableInfo.h +44 -0
  225. package/cpp/skia/include/gpu/GrBackendSemaphore.h +140 -0
  226. package/cpp/skia/include/gpu/GrBackendSurface.h +643 -0
  227. package/cpp/skia/include/gpu/GrBackendSurfaceMutableState.h +91 -0
  228. package/cpp/skia/include/gpu/GrConfig.h +53 -0
  229. package/cpp/skia/include/gpu/GrContextOptions.h +364 -0
  230. package/cpp/skia/include/gpu/GrContextThreadSafeProxy.h +159 -0
  231. package/cpp/skia/include/gpu/GrDirectContext.h +880 -0
  232. package/cpp/skia/include/gpu/GrDriverBugWorkarounds.h +52 -0
  233. package/cpp/skia/include/gpu/GrDriverBugWorkaroundsAutogen.h +45 -0
  234. package/cpp/skia/include/gpu/GrRecordingContext.h +275 -0
  235. package/cpp/skia/include/gpu/GrSurfaceInfo.h +166 -0
  236. package/cpp/skia/include/gpu/GrTypes.h +244 -0
  237. package/cpp/skia/include/gpu/GrYUVABackendTextures.h +124 -0
  238. package/cpp/skia/include/gpu/ShaderErrorHandler.h +36 -0
  239. package/cpp/skia/include/gpu/d3d/GrD3DBackendContext.h +35 -0
  240. package/cpp/skia/include/gpu/d3d/GrD3DTypes.h +248 -0
  241. package/cpp/skia/include/gpu/dawn/GrDawnTypes.h +95 -0
  242. package/cpp/skia/include/gpu/gl/GrGLAssembleHelpers.h +11 -0
  243. package/cpp/skia/include/gpu/gl/GrGLAssembleInterface.h +39 -0
  244. package/cpp/skia/include/gpu/gl/GrGLConfig.h +79 -0
  245. package/cpp/skia/include/gpu/gl/GrGLConfig_chrome.h +14 -0
  246. package/cpp/skia/include/gpu/gl/GrGLExtensions.h +78 -0
  247. package/cpp/skia/include/gpu/gl/GrGLFunctions.h +304 -0
  248. package/cpp/skia/include/gpu/gl/GrGLInterface.h +342 -0
  249. package/cpp/skia/include/gpu/gl/GrGLTypes.h +207 -0
  250. package/cpp/skia/include/gpu/gl/egl/GrGLMakeEGLInterface.h +14 -0
  251. package/cpp/skia/include/gpu/gl/glx/GrGLMakeGLXInterface.h +14 -0
  252. package/cpp/skia/include/gpu/mock/GrMockTypes.h +144 -0
  253. package/cpp/skia/include/gpu/mtl/GrMtlBackendContext.h +21 -0
  254. package/cpp/skia/include/gpu/mtl/GrMtlTypes.h +63 -0
  255. package/cpp/skia/include/gpu/vk/GrVkBackendContext.h +76 -0
  256. package/cpp/skia/include/gpu/vk/GrVkExtensions.h +63 -0
  257. package/cpp/skia/include/gpu/vk/GrVkMemoryAllocator.h +140 -0
  258. package/cpp/skia/include/gpu/vk/GrVkTypes.h +187 -0
  259. package/cpp/skia/include/gpu/vk/GrVkVulkan.h +32 -0
  260. package/cpp/skia/include/pathops/SkPathOps.h +113 -0
  261. package/cpp/skia/include/ports/SkCFObject.h +184 -0
  262. package/cpp/skia/include/ports/SkFontConfigInterface.h +115 -0
  263. package/cpp/skia/include/ports/SkFontMgr_FontConfigInterface.h +20 -0
  264. package/cpp/skia/include/ports/SkFontMgr_android.h +45 -0
  265. package/cpp/skia/include/ports/SkFontMgr_directory.h +21 -0
  266. package/cpp/skia/include/ports/SkFontMgr_empty.h +21 -0
  267. package/cpp/skia/include/ports/SkFontMgr_fontconfig.h +22 -0
  268. package/cpp/skia/include/ports/SkFontMgr_fuchsia.h +19 -0
  269. package/cpp/skia/include/ports/SkFontMgr_indirect.h +102 -0
  270. package/cpp/skia/include/ports/SkFontMgr_mac_ct.h +27 -0
  271. package/cpp/skia/include/ports/SkImageGeneratorCG.h +20 -0
  272. package/cpp/skia/include/ports/SkImageGeneratorNDK.h +40 -0
  273. package/cpp/skia/include/ports/SkImageGeneratorWIC.h +35 -0
  274. package/cpp/skia/include/ports/SkRemotableFontMgr.h +139 -0
  275. package/cpp/skia/include/ports/SkTypeface_mac.h +44 -0
  276. package/cpp/skia/include/ports/SkTypeface_win.h +79 -0
  277. package/cpp/skia/include/private/GrContext_Base.h +92 -0
  278. package/cpp/skia/include/private/GrD3DTypesMinimal.h +74 -0
  279. package/cpp/skia/include/private/GrDawnTypesPriv.h +26 -0
  280. package/cpp/skia/include/private/GrGLTypesPriv.h +107 -0
  281. package/cpp/skia/include/private/GrImageContext.h +55 -0
  282. package/cpp/skia/include/private/GrMockTypesPriv.h +31 -0
  283. package/cpp/skia/include/private/GrMtlTypesPriv.h +75 -0
  284. package/cpp/skia/include/private/GrSingleOwner.h +65 -0
  285. package/cpp/skia/include/private/GrTypesPriv.h +1354 -0
  286. package/cpp/skia/include/private/GrVkTypesPriv.h +107 -0
  287. package/cpp/skia/include/private/SkBitmaskEnum.h +59 -0
  288. package/cpp/skia/include/private/SkChecksum.h +66 -0
  289. package/cpp/skia/include/private/SkColorData.h +441 -0
  290. package/cpp/skia/include/private/SkDeque.h +141 -0
  291. package/cpp/skia/include/private/SkEncodedInfo.h +249 -0
  292. package/cpp/skia/include/private/SkFixed.h +141 -0
  293. package/cpp/skia/include/private/SkFloatBits.h +91 -0
  294. package/cpp/skia/include/private/SkFloatingPoint.h +272 -0
  295. package/cpp/skia/include/private/SkHalf.h +85 -0
  296. package/cpp/skia/include/private/SkIDChangeListener.h +75 -0
  297. package/cpp/skia/include/private/SkImageInfoPriv.h +193 -0
  298. package/cpp/skia/include/private/SkMacros.h +84 -0
  299. package/cpp/skia/include/private/SkMalloc.h +143 -0
  300. package/cpp/skia/include/private/SkMutex.h +56 -0
  301. package/cpp/skia/include/private/SkNoncopyable.h +30 -0
  302. package/cpp/skia/include/private/SkNx.h +430 -0
  303. package/cpp/skia/include/private/SkNx_neon.h +713 -0
  304. package/cpp/skia/include/private/SkNx_sse.h +823 -0
  305. package/cpp/skia/include/private/SkOnce.h +53 -0
  306. package/cpp/skia/include/private/SkOpts_spi.h +21 -0
  307. package/cpp/skia/include/private/SkPaintParamsKey.h +110 -0
  308. package/cpp/skia/include/private/SkPathRef.h +536 -0
  309. package/cpp/skia/include/private/SkSLDefines.h +56 -0
  310. package/cpp/skia/include/private/SkSLIRNode.h +63 -0
  311. package/cpp/skia/include/private/SkSLLayout.h +143 -0
  312. package/cpp/skia/include/private/SkSLModifiers.h +141 -0
  313. package/cpp/skia/include/private/SkSLProgramElement.h +77 -0
  314. package/cpp/skia/include/private/SkSLProgramKind.h +31 -0
  315. package/cpp/skia/include/private/SkSLSampleUsage.h +89 -0
  316. package/cpp/skia/include/private/SkSLStatement.h +87 -0
  317. package/cpp/skia/include/private/SkSLString.h +80 -0
  318. package/cpp/skia/include/private/SkSLSymbol.h +90 -0
  319. package/cpp/skia/include/private/SkSafe32.h +34 -0
  320. package/cpp/skia/include/private/SkSafe_math.h +52 -0
  321. package/cpp/skia/include/private/SkSemaphore.h +83 -0
  322. package/cpp/skia/include/private/SkShaderCodeDictionary.h +63 -0
  323. package/cpp/skia/include/private/SkShadowFlags.h +25 -0
  324. package/cpp/skia/include/private/SkSpinlock.h +57 -0
  325. package/cpp/skia/include/private/SkTArray.h +640 -0
  326. package/cpp/skia/include/private/SkTDArray.h +385 -0
  327. package/cpp/skia/include/private/SkTFitsIn.h +99 -0
  328. package/cpp/skia/include/private/SkTHash.h +548 -0
  329. package/cpp/skia/include/private/SkTLogic.h +86 -0
  330. package/cpp/skia/include/private/SkTOptional.h +362 -0
  331. package/cpp/skia/include/private/SkTPin.h +23 -0
  332. package/cpp/skia/include/private/SkTemplates.h +453 -0
  333. package/cpp/skia/include/private/SkThreadAnnotations.h +91 -0
  334. package/cpp/skia/include/private/SkThreadID.h +20 -0
  335. package/cpp/skia/include/private/SkTo.h +28 -0
  336. package/cpp/skia/include/private/SkUniquePaintParamsID.h +35 -0
  337. package/cpp/skia/include/private/SkVx.h +943 -0
  338. package/cpp/skia/include/private/SkWeakRefCnt.h +170 -0
  339. package/cpp/skia/include/private/chromium/GrSlug.h +41 -0
  340. package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +143 -0
  341. package/cpp/skia/include/sksl/DSL.h +34 -0
  342. package/cpp/skia/include/sksl/DSLBlock.h +67 -0
  343. package/cpp/skia/include/sksl/DSLCase.h +68 -0
  344. package/cpp/skia/include/sksl/DSLCore.h +488 -0
  345. package/cpp/skia/include/sksl/DSLExpression.h +299 -0
  346. package/cpp/skia/include/sksl/DSLFunction.h +116 -0
  347. package/cpp/skia/include/sksl/DSLLayout.h +94 -0
  348. package/cpp/skia/include/sksl/DSLModifiers.h +64 -0
  349. package/cpp/skia/include/sksl/DSLRuntimeEffects.h +32 -0
  350. package/cpp/skia/include/sksl/DSLStatement.h +111 -0
  351. package/cpp/skia/include/sksl/DSLSymbols.h +71 -0
  352. package/cpp/skia/include/sksl/DSLType.h +259 -0
  353. package/cpp/skia/include/sksl/DSLVar.h +310 -0
  354. package/cpp/skia/include/sksl/DSLWrapper.h +77 -0
  355. package/cpp/skia/include/sksl/SkSLDebugTrace.h +28 -0
  356. package/cpp/skia/include/sksl/SkSLErrorReporter.h +115 -0
  357. package/cpp/skia/include/svg/SkSVGCanvas.h +37 -0
  358. package/cpp/skia/include/third_party/skcms/LICENSE +29 -0
  359. package/cpp/skia/include/third_party/skcms/skcms.h +394 -0
  360. package/cpp/skia/include/third_party/vulkan/LICENSE +29 -0
  361. package/cpp/skia/include/third_party/vulkan/vulkan/vk_platform.h +84 -0
  362. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan.h +93 -0
  363. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_android.h +112 -0
  364. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_core.h +12620 -0
  365. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_ios.h +47 -0
  366. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_macos.h +47 -0
  367. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_win32.h +315 -0
  368. package/cpp/skia/include/third_party/vulkan/vulkan/vulkan_xcb.h +55 -0
  369. package/cpp/skia/include/utils/SkAnimCodecPlayer.h +60 -0
  370. package/cpp/skia/include/utils/SkBase64.h +51 -0
  371. package/cpp/skia/include/utils/SkCamera.h +107 -0
  372. package/cpp/skia/include/utils/SkCanvasStateUtils.h +78 -0
  373. package/cpp/skia/include/utils/SkCustomTypeface.h +48 -0
  374. package/cpp/skia/include/utils/SkEventTracer.h +79 -0
  375. package/cpp/skia/include/utils/SkNWayCanvas.h +92 -0
  376. package/cpp/skia/include/utils/SkNoDrawCanvas.h +80 -0
  377. package/cpp/skia/include/utils/SkNullCanvas.h +18 -0
  378. package/cpp/skia/include/utils/SkOrderedFontMgr.h +53 -0
  379. package/cpp/skia/include/utils/SkPaintFilterCanvas.h +107 -0
  380. package/cpp/skia/include/utils/SkParse.h +32 -0
  381. package/cpp/skia/include/utils/SkParsePath.h +25 -0
  382. package/cpp/skia/include/utils/SkRandom.h +169 -0
  383. package/cpp/skia/include/utils/SkShadowUtils.h +85 -0
  384. package/cpp/skia/include/utils/SkTextUtils.h +38 -0
  385. package/cpp/skia/include/utils/SkTraceEventPhase.h +19 -0
  386. package/cpp/skia/include/utils/mac/SkCGUtils.h +78 -0
  387. package/cpp/skia/modules/skresources/include/SkResources.h +254 -0
  388. package/cpp/skia/modules/svg/include/SkSVGAttribute.h +113 -0
  389. package/cpp/skia/modules/svg/include/SkSVGAttributeParser.h +134 -0
  390. package/cpp/skia/modules/svg/include/SkSVGCircle.h +43 -0
  391. package/cpp/skia/modules/svg/include/SkSVGClipPath.h +35 -0
  392. package/cpp/skia/modules/svg/include/SkSVGContainer.h +36 -0
  393. package/cpp/skia/modules/svg/include/SkSVGDOM.h +96 -0
  394. package/cpp/skia/modules/svg/include/SkSVGDefs.h +23 -0
  395. package/cpp/skia/modules/svg/include/SkSVGEllipse.h +41 -0
  396. package/cpp/skia/modules/svg/include/SkSVGFe.h +85 -0
  397. package/cpp/skia/modules/svg/include/SkSVGFeBlend.h +45 -0
  398. package/cpp/skia/modules/svg/include/SkSVGFeColorMatrix.h +46 -0
  399. package/cpp/skia/modules/svg/include/SkSVGFeComposite.h +46 -0
  400. package/cpp/skia/modules/svg/include/SkSVGFeDisplacementMap.h +46 -0
  401. package/cpp/skia/modules/svg/include/SkSVGFeFlood.h +32 -0
  402. package/cpp/skia/modules/svg/include/SkSVGFeGaussianBlur.h +41 -0
  403. package/cpp/skia/modules/svg/include/SkSVGFeImage.h +35 -0
  404. package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +89 -0
  405. package/cpp/skia/modules/svg/include/SkSVGFeLighting.h +121 -0
  406. package/cpp/skia/modules/svg/include/SkSVGFeMorphology.h +47 -0
  407. package/cpp/skia/modules/svg/include/SkSVGFeOffset.h +35 -0
  408. package/cpp/skia/modules/svg/include/SkSVGFeTurbulence.h +40 -0
  409. package/cpp/skia/modules/svg/include/SkSVGFilter.h +39 -0
  410. package/cpp/skia/modules/svg/include/SkSVGFilterContext.h +69 -0
  411. package/cpp/skia/modules/svg/include/SkSVGG.h +23 -0
  412. package/cpp/skia/modules/svg/include/SkSVGGradient.h +48 -0
  413. package/cpp/skia/modules/svg/include/SkSVGHiddenContainer.h +23 -0
  414. package/cpp/skia/modules/svg/include/SkSVGIDMapper.h +19 -0
  415. package/cpp/skia/modules/svg/include/SkSVGImage.h +58 -0
  416. package/cpp/skia/modules/svg/include/SkSVGLine.h +42 -0
  417. package/cpp/skia/modules/svg/include/SkSVGLinearGradient.h +37 -0
  418. package/cpp/skia/modules/svg/include/SkSVGMask.h +43 -0
  419. package/cpp/skia/modules/svg/include/SkSVGNode.h +223 -0
  420. package/cpp/skia/modules/svg/include/SkSVGPath.h +36 -0
  421. package/cpp/skia/modules/svg/include/SkSVGPattern.h +55 -0
  422. package/cpp/skia/modules/svg/include/SkSVGPoly.h +45 -0
  423. package/cpp/skia/modules/svg/include/SkSVGRadialGradient.h +38 -0
  424. package/cpp/skia/modules/svg/include/SkSVGRect.h +46 -0
  425. package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +188 -0
  426. package/cpp/skia/modules/svg/include/SkSVGSVG.h +52 -0
  427. package/cpp/skia/modules/svg/include/SkSVGShape.h +33 -0
  428. package/cpp/skia/modules/svg/include/SkSVGStop.h +34 -0
  429. package/cpp/skia/modules/svg/include/SkSVGText.h +122 -0
  430. package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +36 -0
  431. package/cpp/skia/modules/svg/include/SkSVGTypes.h +691 -0
  432. package/cpp/skia/modules/svg/include/SkSVGUse.h +42 -0
  433. package/cpp/skia/modules/svg/include/SkSVGValue.h +85 -0
  434. package/cpp/skia/readme.txt +1 -0
  435. package/cpp/utils/RNSkLog.h +53 -0
  436. package/cpp/utils/RNSkMeasureTime.h +32 -0
  437. package/cpp/utils/RNSkTimingInfo.h +91 -0
  438. package/ios/RNSkia-iOS/DisplayLink.h +17 -0
  439. package/ios/RNSkia-iOS/DisplayLink.mm +36 -0
  440. package/ios/RNSkia-iOS/PlatformContext.h +50 -0
  441. package/ios/RNSkia-iOS/PlatformContext.mm +52 -0
  442. package/ios/RNSkia-iOS/RNSkDrawViewImpl.h +57 -0
  443. package/ios/RNSkia-iOS/RNSkDrawViewImpl.mm +98 -0
  444. package/ios/RNSkia-iOS/SkiaDrawView.h +23 -0
  445. package/ios/RNSkia-iOS/SkiaDrawView.mm +165 -0
  446. package/ios/RNSkia-iOS/SkiaDrawViewManager.h +7 -0
  447. package/ios/RNSkia-iOS/SkiaDrawViewManager.mm +42 -0
  448. package/ios/RNSkia-iOS/SkiaManager.h +17 -0
  449. package/ios/RNSkia-iOS/SkiaManager.mm +50 -0
  450. package/ios/RNSkiaModule.h +11 -0
  451. package/ios/RNSkiaModule.mm +42 -0
  452. package/ios/Rnskia.xcodeproj/project.pbxproj +281 -0
  453. package/ios/Rnskia.xcworkspace/contents.xcworkspacedata +7 -0
  454. package/lib/commonjs/external/index.js +19 -0
  455. package/lib/commonjs/external/index.js.map +1 -0
  456. package/lib/commonjs/external/reanimated/index.js +19 -0
  457. package/lib/commonjs/external/reanimated/index.js.map +1 -0
  458. package/lib/commonjs/external/reanimated/useSharedValueEffect.js +86 -0
  459. package/lib/commonjs/external/reanimated/useSharedValueEffect.js.map +1 -0
  460. package/lib/commonjs/index.js +73 -0
  461. package/lib/commonjs/index.js.map +1 -0
  462. package/lib/commonjs/renderer/Canvas.js +186 -0
  463. package/lib/commonjs/renderer/Canvas.js.map +1 -0
  464. package/lib/commonjs/renderer/DependencyManager.js +70 -0
  465. package/lib/commonjs/renderer/DependencyManager.js.map +1 -0
  466. package/lib/commonjs/renderer/DrawingContext.js +6 -0
  467. package/lib/commonjs/renderer/DrawingContext.js.map +1 -0
  468. package/lib/commonjs/renderer/HostConfig.js +272 -0
  469. package/lib/commonjs/renderer/HostConfig.js.map +1 -0
  470. package/lib/commonjs/renderer/components/Blend.js +46 -0
  471. package/lib/commonjs/renderer/components/Blend.js.map +1 -0
  472. package/lib/commonjs/renderer/components/Compose.js +41 -0
  473. package/lib/commonjs/renderer/components/Compose.js.map +1 -0
  474. package/lib/commonjs/renderer/components/Defs.js +30 -0
  475. package/lib/commonjs/renderer/components/Defs.js.map +1 -0
  476. package/lib/commonjs/renderer/components/Group.js +73 -0
  477. package/lib/commonjs/renderer/components/Group.js.map +1 -0
  478. package/lib/commonjs/renderer/components/Mask.js +58 -0
  479. package/lib/commonjs/renderer/components/Mask.js.map +1 -0
  480. package/lib/commonjs/renderer/components/Paint.js +54 -0
  481. package/lib/commonjs/renderer/components/Paint.js.map +1 -0
  482. package/lib/commonjs/renderer/components/backdrop/BackdropBlur.js +33 -0
  483. package/lib/commonjs/renderer/components/backdrop/BackdropBlur.js.map +1 -0
  484. package/lib/commonjs/renderer/components/backdrop/BackdropFilter.js +54 -0
  485. package/lib/commonjs/renderer/components/backdrop/BackdropFilter.js.map +1 -0
  486. package/lib/commonjs/renderer/components/backdrop/index.js +32 -0
  487. package/lib/commonjs/renderer/components/backdrop/index.js.map +1 -0
  488. package/lib/commonjs/renderer/components/colorFilters/BlendColor.js +40 -0
  489. package/lib/commonjs/renderer/components/colorFilters/BlendColor.js.map +1 -0
  490. package/lib/commonjs/renderer/components/colorFilters/Compose.js +24 -0
  491. package/lib/commonjs/renderer/components/colorFilters/Compose.js.map +1 -0
  492. package/lib/commonjs/renderer/components/colorFilters/Lerp.js +40 -0
  493. package/lib/commonjs/renderer/components/colorFilters/Lerp.js.map +1 -0
  494. package/lib/commonjs/renderer/components/colorFilters/LinearToSRGBGamma.js +33 -0
  495. package/lib/commonjs/renderer/components/colorFilters/LinearToSRGBGamma.js.map +1 -0
  496. package/lib/commonjs/renderer/components/colorFilters/LumaColorFilter.js +33 -0
  497. package/lib/commonjs/renderer/components/colorFilters/LumaColorFilter.js.map +1 -0
  498. package/lib/commonjs/renderer/components/colorFilters/Matrix.js +41 -0
  499. package/lib/commonjs/renderer/components/colorFilters/Matrix.js.map +1 -0
  500. package/lib/commonjs/renderer/components/colorFilters/SRGBToLinearGamma.js +33 -0
  501. package/lib/commonjs/renderer/components/colorFilters/SRGBToLinearGamma.js.map +1 -0
  502. package/lib/commonjs/renderer/components/colorFilters/index.js +84 -0
  503. package/lib/commonjs/renderer/components/colorFilters/index.js.map +1 -0
  504. package/lib/commonjs/renderer/components/image/BoxFit.js +162 -0
  505. package/lib/commonjs/renderer/components/image/BoxFit.js.map +1 -0
  506. package/lib/commonjs/renderer/components/image/Image.js +55 -0
  507. package/lib/commonjs/renderer/components/image/Image.js.map +1 -0
  508. package/lib/commonjs/renderer/components/image/ImageSVG.js +45 -0
  509. package/lib/commonjs/renderer/components/image/ImageSVG.js.map +1 -0
  510. package/lib/commonjs/renderer/components/image/ImageShader.js +82 -0
  511. package/lib/commonjs/renderer/components/image/ImageShader.js.map +1 -0
  512. package/lib/commonjs/renderer/components/image/index.js +58 -0
  513. package/lib/commonjs/renderer/components/image/index.js.map +1 -0
  514. package/lib/commonjs/renderer/components/imageFilters/Blur.js +43 -0
  515. package/lib/commonjs/renderer/components/imageFilters/Blur.js.map +1 -0
  516. package/lib/commonjs/renderer/components/imageFilters/DisplacementMap.js +53 -0
  517. package/lib/commonjs/renderer/components/imageFilters/DisplacementMap.js.map +1 -0
  518. package/lib/commonjs/renderer/components/imageFilters/DropShadow.js +45 -0
  519. package/lib/commonjs/renderer/components/imageFilters/DropShadow.js.map +1 -0
  520. package/lib/commonjs/renderer/components/imageFilters/InnerShadow.js +60 -0
  521. package/lib/commonjs/renderer/components/imageFilters/InnerShadow.js.map +1 -0
  522. package/lib/commonjs/renderer/components/imageFilters/Morphology.js +43 -0
  523. package/lib/commonjs/renderer/components/imageFilters/Morphology.js.map +1 -0
  524. package/lib/commonjs/renderer/components/imageFilters/Offset.js +39 -0
  525. package/lib/commonjs/renderer/components/imageFilters/Offset.js.map +1 -0
  526. package/lib/commonjs/renderer/components/imageFilters/getInput.js +33 -0
  527. package/lib/commonjs/renderer/components/imageFilters/getInput.js.map +1 -0
  528. package/lib/commonjs/renderer/components/imageFilters/index.js +84 -0
  529. package/lib/commonjs/renderer/components/imageFilters/index.js.map +1 -0
  530. package/lib/commonjs/renderer/components/index.js +214 -0
  531. package/lib/commonjs/renderer/components/index.js.map +1 -0
  532. package/lib/commonjs/renderer/components/maskFilters/Blur.js +42 -0
  533. package/lib/commonjs/renderer/components/maskFilters/Blur.js.map +1 -0
  534. package/lib/commonjs/renderer/components/maskFilters/index.js +19 -0
  535. package/lib/commonjs/renderer/components/maskFilters/index.js.map +1 -0
  536. package/lib/commonjs/renderer/components/pathEffects/Corner.js +46 -0
  537. package/lib/commonjs/renderer/components/pathEffects/Corner.js.map +1 -0
  538. package/lib/commonjs/renderer/components/pathEffects/Dash.js +43 -0
  539. package/lib/commonjs/renderer/components/pathEffects/Dash.js.map +1 -0
  540. package/lib/commonjs/renderer/components/pathEffects/Discrete.js +47 -0
  541. package/lib/commonjs/renderer/components/pathEffects/Discrete.js.map +1 -0
  542. package/lib/commonjs/renderer/components/pathEffects/Line2D.js +47 -0
  543. package/lib/commonjs/renderer/components/pathEffects/Line2D.js.map +1 -0
  544. package/lib/commonjs/renderer/components/pathEffects/Path1D.js +53 -0
  545. package/lib/commonjs/renderer/components/pathEffects/Path1D.js.map +1 -0
  546. package/lib/commonjs/renderer/components/pathEffects/Path2D.js +49 -0
  547. package/lib/commonjs/renderer/components/pathEffects/Path2D.js.map +1 -0
  548. package/lib/commonjs/renderer/components/pathEffects/Sum.js +32 -0
  549. package/lib/commonjs/renderer/components/pathEffects/Sum.js.map +1 -0
  550. package/lib/commonjs/renderer/components/pathEffects/index.js +97 -0
  551. package/lib/commonjs/renderer/components/pathEffects/index.js.map +1 -0
  552. package/lib/commonjs/renderer/components/shaders/Color.js +32 -0
  553. package/lib/commonjs/renderer/components/shaders/Color.js.map +1 -0
  554. package/lib/commonjs/renderer/components/shaders/FractalNoise.js +42 -0
  555. package/lib/commonjs/renderer/components/shaders/FractalNoise.js.map +1 -0
  556. package/lib/commonjs/renderer/components/shaders/Gradient.js +32 -0
  557. package/lib/commonjs/renderer/components/shaders/Gradient.js.map +1 -0
  558. package/lib/commonjs/renderer/components/shaders/LinearGradient.js +43 -0
  559. package/lib/commonjs/renderer/components/shaders/LinearGradient.js.map +1 -0
  560. package/lib/commonjs/renderer/components/shaders/RadialGradient.js +43 -0
  561. package/lib/commonjs/renderer/components/shaders/RadialGradient.js.map +1 -0
  562. package/lib/commonjs/renderer/components/shaders/Shader.js +80 -0
  563. package/lib/commonjs/renderer/components/shaders/Shader.js.map +1 -0
  564. package/lib/commonjs/renderer/components/shaders/ShaderLib.js +52 -0
  565. package/lib/commonjs/renderer/components/shaders/ShaderLib.js.map +1 -0
  566. package/lib/commonjs/renderer/components/shaders/SweepGradient.js +44 -0
  567. package/lib/commonjs/renderer/components/shaders/SweepGradient.js.map +1 -0
  568. package/lib/commonjs/renderer/components/shaders/Turbulence.js +42 -0
  569. package/lib/commonjs/renderer/components/shaders/Turbulence.js.map +1 -0
  570. package/lib/commonjs/renderer/components/shaders/TwoPointConicalGradient.js +45 -0
  571. package/lib/commonjs/renderer/components/shaders/TwoPointConicalGradient.js.map +1 -0
  572. package/lib/commonjs/renderer/components/shaders/index.js +123 -0
  573. package/lib/commonjs/renderer/components/shaders/index.js.map +1 -0
  574. package/lib/commonjs/renderer/components/shapes/Circle.js +42 -0
  575. package/lib/commonjs/renderer/components/shapes/Circle.js.map +1 -0
  576. package/lib/commonjs/renderer/components/shapes/DiffRect.js +35 -0
  577. package/lib/commonjs/renderer/components/shapes/DiffRect.js.map +1 -0
  578. package/lib/commonjs/renderer/components/shapes/Fill.js +31 -0
  579. package/lib/commonjs/renderer/components/shapes/Fill.js.map +1 -0
  580. package/lib/commonjs/renderer/components/shapes/FitBox.js +38 -0
  581. package/lib/commonjs/renderer/components/shapes/FitBox.js.map +1 -0
  582. package/lib/commonjs/renderer/components/shapes/Line.js +35 -0
  583. package/lib/commonjs/renderer/components/shapes/Line.js.map +1 -0
  584. package/lib/commonjs/renderer/components/shapes/Oval.js +38 -0
  585. package/lib/commonjs/renderer/components/shapes/Oval.js.map +1 -0
  586. package/lib/commonjs/renderer/components/shapes/Patch.js +52 -0
  587. package/lib/commonjs/renderer/components/shapes/Patch.js.map +1 -0
  588. package/lib/commonjs/renderer/components/shapes/Path.js +58 -0
  589. package/lib/commonjs/renderer/components/shapes/Path.js.map +1 -0
  590. package/lib/commonjs/renderer/components/shapes/Points.js +45 -0
  591. package/lib/commonjs/renderer/components/shapes/Points.js.map +1 -0
  592. package/lib/commonjs/renderer/components/shapes/Rect.js +34 -0
  593. package/lib/commonjs/renderer/components/shapes/Rect.js.map +1 -0
  594. package/lib/commonjs/renderer/components/shapes/RoundedRect.js +37 -0
  595. package/lib/commonjs/renderer/components/shapes/RoundedRect.js.map +1 -0
  596. package/lib/commonjs/renderer/components/shapes/Vertices.js +54 -0
  597. package/lib/commonjs/renderer/components/shapes/Vertices.js.map +1 -0
  598. package/lib/commonjs/renderer/components/shapes/index.js +162 -0
  599. package/lib/commonjs/renderer/components/shapes/index.js.map +1 -0
  600. package/lib/commonjs/renderer/components/text/Glyphs.js +60 -0
  601. package/lib/commonjs/renderer/components/text/Glyphs.js.map +1 -0
  602. package/lib/commonjs/renderer/components/text/Text.js +45 -0
  603. package/lib/commonjs/renderer/components/text/Text.js.map +1 -0
  604. package/lib/commonjs/renderer/components/text/TextBlob.js +40 -0
  605. package/lib/commonjs/renderer/components/text/TextBlob.js.map +1 -0
  606. package/lib/commonjs/renderer/components/text/TextPath.js +95 -0
  607. package/lib/commonjs/renderer/components/text/TextPath.js.map +1 -0
  608. package/lib/commonjs/renderer/components/text/index.js +58 -0
  609. package/lib/commonjs/renderer/components/text/index.js.map +1 -0
  610. package/lib/commonjs/renderer/index.js +45 -0
  611. package/lib/commonjs/renderer/index.js.map +1 -0
  612. package/lib/commonjs/renderer/nodes/Container.js +28 -0
  613. package/lib/commonjs/renderer/nodes/Container.js.map +1 -0
  614. package/lib/commonjs/renderer/nodes/Declaration.js +47 -0
  615. package/lib/commonjs/renderer/nodes/Declaration.js.map +1 -0
  616. package/lib/commonjs/renderer/nodes/Drawing.js +75 -0
  617. package/lib/commonjs/renderer/nodes/Drawing.js.map +1 -0
  618. package/lib/commonjs/renderer/nodes/Node.js +78 -0
  619. package/lib/commonjs/renderer/nodes/Node.js.map +1 -0
  620. package/lib/commonjs/renderer/nodes/index.js +58 -0
  621. package/lib/commonjs/renderer/nodes/index.js.map +1 -0
  622. package/lib/commonjs/renderer/processors/Animations/Animations.js +52 -0
  623. package/lib/commonjs/renderer/processors/Animations/Animations.js.map +1 -0
  624. package/lib/commonjs/renderer/processors/Animations/index.js +19 -0
  625. package/lib/commonjs/renderer/processors/Animations/index.js.map +1 -0
  626. package/lib/commonjs/renderer/processors/Circles.js +25 -0
  627. package/lib/commonjs/renderer/processors/Circles.js.map +1 -0
  628. package/lib/commonjs/renderer/processors/Clips.js +24 -0
  629. package/lib/commonjs/renderer/processors/Clips.js.map +1 -0
  630. package/lib/commonjs/renderer/processors/Font.js +39 -0
  631. package/lib/commonjs/renderer/processors/Font.js.map +1 -0
  632. package/lib/commonjs/renderer/processors/Paint.js +91 -0
  633. package/lib/commonjs/renderer/processors/Paint.js.map +1 -0
  634. package/lib/commonjs/renderer/processors/Paths.js +26 -0
  635. package/lib/commonjs/renderer/processors/Paths.js.map +1 -0
  636. package/lib/commonjs/renderer/processors/Radius.js +19 -0
  637. package/lib/commonjs/renderer/processors/Radius.js.map +1 -0
  638. package/lib/commonjs/renderer/processors/Rects.js +98 -0
  639. package/lib/commonjs/renderer/processors/Rects.js.map +1 -0
  640. package/lib/commonjs/renderer/processors/Transform.js +56 -0
  641. package/lib/commonjs/renderer/processors/Transform.js.map +1 -0
  642. package/lib/commonjs/renderer/processors/index.js +136 -0
  643. package/lib/commonjs/renderer/processors/index.js.map +1 -0
  644. package/lib/commonjs/renderer/processors/math/Coordinates.js +43 -0
  645. package/lib/commonjs/renderer/processors/math/Coordinates.js.map +1 -0
  646. package/lib/commonjs/renderer/processors/math/Math.js +11 -0
  647. package/lib/commonjs/renderer/processors/math/Math.js.map +1 -0
  648. package/lib/commonjs/renderer/processors/math/Matrix3.js +81 -0
  649. package/lib/commonjs/renderer/processors/math/Matrix3.js.map +1 -0
  650. package/lib/commonjs/renderer/processors/math/Transforms.js +22 -0
  651. package/lib/commonjs/renderer/processors/math/Transforms.js.map +1 -0
  652. package/lib/commonjs/renderer/processors/math/Vector.js +61 -0
  653. package/lib/commonjs/renderer/processors/math/Vector.js.map +1 -0
  654. package/lib/commonjs/renderer/processors/math/index.js +71 -0
  655. package/lib/commonjs/renderer/processors/math/index.js.map +1 -0
  656. package/lib/commonjs/renderer/typeddash.js +17 -0
  657. package/lib/commonjs/renderer/typeddash.js.map +1 -0
  658. package/lib/commonjs/skia/Canvas.js +22 -0
  659. package/lib/commonjs/skia/Canvas.js.map +1 -0
  660. package/lib/commonjs/skia/Color.js +77 -0
  661. package/lib/commonjs/skia/Color.js.map +1 -0
  662. package/lib/commonjs/skia/ColorFilter/ColorFilter.js +11 -0
  663. package/lib/commonjs/skia/ColorFilter/ColorFilter.js.map +1 -0
  664. package/lib/commonjs/skia/ColorFilter/ColorFilterFactory.js +6 -0
  665. package/lib/commonjs/skia/ColorFilter/ColorFilterFactory.js.map +1 -0
  666. package/lib/commonjs/skia/ColorFilter/index.js +32 -0
  667. package/lib/commonjs/skia/ColorFilter/index.js.map +1 -0
  668. package/lib/commonjs/skia/ContourMeasure.js +6 -0
  669. package/lib/commonjs/skia/ContourMeasure.js.map +1 -0
  670. package/lib/commonjs/skia/Data/Data.js +53 -0
  671. package/lib/commonjs/skia/Data/Data.js.map +1 -0
  672. package/lib/commonjs/skia/Data/DataFactory.js +6 -0
  673. package/lib/commonjs/skia/Data/DataFactory.js.map +1 -0
  674. package/lib/commonjs/skia/Data/index.js +32 -0
  675. package/lib/commonjs/skia/Data/index.js.map +1 -0
  676. package/lib/commonjs/skia/Font/Font.js +81 -0
  677. package/lib/commonjs/skia/Font/Font.js.map +1 -0
  678. package/lib/commonjs/skia/Font/index.js +32 -0
  679. package/lib/commonjs/skia/Font/index.js.map +1 -0
  680. package/lib/commonjs/skia/Font/useFont.js +36 -0
  681. package/lib/commonjs/skia/Font/useFont.js.map +1 -0
  682. package/lib/commonjs/skia/FontMgr/FontMgr.js +6 -0
  683. package/lib/commonjs/skia/FontMgr/FontMgr.js.map +1 -0
  684. package/lib/commonjs/skia/FontMgr/FontMgrFactory.js +6 -0
  685. package/lib/commonjs/skia/FontMgr/FontMgrFactory.js.map +1 -0
  686. package/lib/commonjs/skia/FontMgr/index.js +19 -0
  687. package/lib/commonjs/skia/FontMgr/index.js.map +1 -0
  688. package/lib/commonjs/skia/Image/Image.js +32 -0
  689. package/lib/commonjs/skia/Image/Image.js.map +1 -0
  690. package/lib/commonjs/skia/Image/ImageFactory.js +46 -0
  691. package/lib/commonjs/skia/Image/ImageFactory.js.map +1 -0
  692. package/lib/commonjs/skia/Image/index.js +45 -0
  693. package/lib/commonjs/skia/Image/index.js.map +1 -0
  694. package/lib/commonjs/skia/Image/useImage.js +18 -0
  695. package/lib/commonjs/skia/Image/useImage.js.map +1 -0
  696. package/lib/commonjs/skia/ImageFilter/ImageFilter.js +20 -0
  697. package/lib/commonjs/skia/ImageFilter/ImageFilter.js.map +1 -0
  698. package/lib/commonjs/skia/ImageFilter/ImageFilterFactory.js +16 -0
  699. package/lib/commonjs/skia/ImageFilter/ImageFilterFactory.js.map +1 -0
  700. package/lib/commonjs/skia/ImageFilter/index.js +32 -0
  701. package/lib/commonjs/skia/ImageFilter/index.js.map +1 -0
  702. package/lib/commonjs/skia/JsiInstance.js +2 -0
  703. package/lib/commonjs/skia/JsiInstance.js.map +1 -0
  704. package/lib/commonjs/skia/MaskFilter.js +20 -0
  705. package/lib/commonjs/skia/MaskFilter.js.map +1 -0
  706. package/lib/commonjs/skia/Matrix.js +21 -0
  707. package/lib/commonjs/skia/Matrix.js.map +1 -0
  708. package/lib/commonjs/skia/NativeSetup.js +19 -0
  709. package/lib/commonjs/skia/NativeSetup.js.map +1 -0
  710. package/lib/commonjs/skia/Paint/BlendMode.js +69 -0
  711. package/lib/commonjs/skia/Paint/BlendMode.js.map +1 -0
  712. package/lib/commonjs/skia/Paint/Paint.js +36 -0
  713. package/lib/commonjs/skia/Paint/Paint.js.map +1 -0
  714. package/lib/commonjs/skia/Paint/index.js +45 -0
  715. package/lib/commonjs/skia/Paint/index.js.map +1 -0
  716. package/lib/commonjs/skia/Paint/usePaint.js +28 -0
  717. package/lib/commonjs/skia/Paint/usePaint.js.map +1 -0
  718. package/lib/commonjs/skia/Path/Path.js +35 -0
  719. package/lib/commonjs/skia/Path/Path.js.map +1 -0
  720. package/lib/commonjs/skia/Path/PathFactory.js +6 -0
  721. package/lib/commonjs/skia/Path/PathFactory.js.map +1 -0
  722. package/lib/commonjs/skia/Path/index.js +45 -0
  723. package/lib/commonjs/skia/Path/index.js.map +1 -0
  724. package/lib/commonjs/skia/Path/usePath.js +60 -0
  725. package/lib/commonjs/skia/Path/usePath.js.map +1 -0
  726. package/lib/commonjs/skia/PathEffect.js +19 -0
  727. package/lib/commonjs/skia/PathEffect.js.map +1 -0
  728. package/lib/commonjs/skia/Point.js +15 -0
  729. package/lib/commonjs/skia/Point.js.map +1 -0
  730. package/lib/commonjs/skia/RRect.js +6 -0
  731. package/lib/commonjs/skia/RRect.js.map +1 -0
  732. package/lib/commonjs/skia/RSXform.js +6 -0
  733. package/lib/commonjs/skia/RSXform.js.map +1 -0
  734. package/lib/commonjs/skia/Rect.js +2 -0
  735. package/lib/commonjs/skia/Rect.js.map +1 -0
  736. package/lib/commonjs/skia/RuntimeEffect/RuntimeEffect.js +6 -0
  737. package/lib/commonjs/skia/RuntimeEffect/RuntimeEffect.js.map +1 -0
  738. package/lib/commonjs/skia/RuntimeEffect/RuntimeEffectFactory.js +6 -0
  739. package/lib/commonjs/skia/RuntimeEffect/RuntimeEffectFactory.js.map +1 -0
  740. package/lib/commonjs/skia/RuntimeEffect/index.js +32 -0
  741. package/lib/commonjs/skia/RuntimeEffect/index.js.map +1 -0
  742. package/lib/commonjs/skia/SVG/SVG.js +6 -0
  743. package/lib/commonjs/skia/SVG/SVG.js.map +1 -0
  744. package/lib/commonjs/skia/SVG/SVGFactory.js +6 -0
  745. package/lib/commonjs/skia/SVG/SVGFactory.js.map +1 -0
  746. package/lib/commonjs/skia/SVG/index.js +45 -0
  747. package/lib/commonjs/skia/SVG/index.js.map +1 -0
  748. package/lib/commonjs/skia/SVG/useSvg.js +15 -0
  749. package/lib/commonjs/skia/SVG/useSvg.js.map +1 -0
  750. package/lib/commonjs/skia/Shader/Shader.js +11 -0
  751. package/lib/commonjs/skia/Shader/Shader.js.map +1 -0
  752. package/lib/commonjs/skia/Shader/ShaderFactory.js +6 -0
  753. package/lib/commonjs/skia/Shader/ShaderFactory.js.map +1 -0
  754. package/lib/commonjs/skia/Shader/index.js +45 -0
  755. package/lib/commonjs/skia/Shader/index.js.map +1 -0
  756. package/lib/commonjs/skia/Shader/useShader.js +15 -0
  757. package/lib/commonjs/skia/Shader/useShader.js.map +1 -0
  758. package/lib/commonjs/skia/Skia.js +49 -0
  759. package/lib/commonjs/skia/Skia.js.map +1 -0
  760. package/lib/commonjs/skia/Surface/Surface.js +6 -0
  761. package/lib/commonjs/skia/Surface/Surface.js.map +1 -0
  762. package/lib/commonjs/skia/Surface/SurfaceFactory.js +6 -0
  763. package/lib/commonjs/skia/Surface/SurfaceFactory.js.map +1 -0
  764. package/lib/commonjs/skia/Surface/index.js +32 -0
  765. package/lib/commonjs/skia/Surface/index.js.map +1 -0
  766. package/lib/commonjs/skia/TextBlob.js +6 -0
  767. package/lib/commonjs/skia/TextBlob.js.map +1 -0
  768. package/lib/commonjs/skia/Typeface/Typeface.js +6 -0
  769. package/lib/commonjs/skia/Typeface/Typeface.js.map +1 -0
  770. package/lib/commonjs/skia/Typeface/TypefaceFactory.js +6 -0
  771. package/lib/commonjs/skia/Typeface/TypefaceFactory.js.map +1 -0
  772. package/lib/commonjs/skia/Typeface/index.js +45 -0
  773. package/lib/commonjs/skia/Typeface/index.js.map +1 -0
  774. package/lib/commonjs/skia/Typeface/useTypeface.js +18 -0
  775. package/lib/commonjs/skia/Typeface/useTypeface.js.map +1 -0
  776. package/lib/commonjs/skia/Vertices/Vertices.js +15 -0
  777. package/lib/commonjs/skia/Vertices/Vertices.js.map +1 -0
  778. package/lib/commonjs/skia/Vertices/index.js +19 -0
  779. package/lib/commonjs/skia/Vertices/index.js.map +1 -0
  780. package/lib/commonjs/skia/index.js +311 -0
  781. package/lib/commonjs/skia/index.js.map +1 -0
  782. package/lib/commonjs/values/animation/decay/decay.js +42 -0
  783. package/lib/commonjs/values/animation/decay/decay.js.map +1 -0
  784. package/lib/commonjs/values/animation/decay/index.js +14 -0
  785. package/lib/commonjs/values/animation/decay/index.js.map +1 -0
  786. package/lib/commonjs/values/animation/decay/runDecay.js +48 -0
  787. package/lib/commonjs/values/animation/decay/runDecay.js.map +1 -0
  788. package/lib/commonjs/values/animation/decay/types.js +6 -0
  789. package/lib/commonjs/values/animation/decay/types.js.map +1 -0
  790. package/lib/commonjs/values/animation/functions/index.js +28 -0
  791. package/lib/commonjs/values/animation/functions/index.js.map +1 -0
  792. package/lib/commonjs/values/animation/functions/interpolate.js +139 -0
  793. package/lib/commonjs/values/animation/functions/interpolate.js.map +1 -0
  794. package/lib/commonjs/values/animation/functions/interpolateColors.js +47 -0
  795. package/lib/commonjs/values/animation/functions/interpolateColors.js.map +1 -0
  796. package/lib/commonjs/values/animation/index.js +58 -0
  797. package/lib/commonjs/values/animation/index.js.map +1 -0
  798. package/lib/commonjs/values/animation/spring/Spring.js +77 -0
  799. package/lib/commonjs/values/animation/spring/Spring.js.map +1 -0
  800. package/lib/commonjs/values/animation/spring/functions/index.js +14 -0
  801. package/lib/commonjs/values/animation/spring/functions/index.js.map +1 -0
  802. package/lib/commonjs/values/animation/spring/functions/spring.js +94 -0
  803. package/lib/commonjs/values/animation/spring/functions/spring.js.map +1 -0
  804. package/lib/commonjs/values/animation/spring/index.js +30 -0
  805. package/lib/commonjs/values/animation/spring/index.js.map +1 -0
  806. package/lib/commonjs/values/animation/spring/runSpring.js +32 -0
  807. package/lib/commonjs/values/animation/spring/runSpring.js.map +1 -0
  808. package/lib/commonjs/values/animation/spring/types.js +2 -0
  809. package/lib/commonjs/values/animation/spring/types.js.map +1 -0
  810. package/lib/commonjs/values/animation/spring/useSpring.js +24 -0
  811. package/lib/commonjs/values/animation/spring/useSpring.js.map +1 -0
  812. package/lib/commonjs/values/animation/timing/Easing.js +108 -0
  813. package/lib/commonjs/values/animation/timing/Easing.js.map +1 -0
  814. package/lib/commonjs/values/animation/timing/createTiming.js +59 -0
  815. package/lib/commonjs/values/animation/timing/createTiming.js.map +1 -0
  816. package/lib/commonjs/values/animation/timing/functions/bezier.js +147 -0
  817. package/lib/commonjs/values/animation/timing/functions/bezier.js.map +1 -0
  818. package/lib/commonjs/values/animation/timing/functions/getResolvedParams.js +56 -0
  819. package/lib/commonjs/values/animation/timing/functions/getResolvedParams.js.map +1 -0
  820. package/lib/commonjs/values/animation/timing/functions/index.js +54 -0
  821. package/lib/commonjs/values/animation/timing/functions/index.js.map +1 -0
  822. package/lib/commonjs/values/animation/timing/functions/timing.js +50 -0
  823. package/lib/commonjs/values/animation/timing/functions/timing.js.map +1 -0
  824. package/lib/commonjs/values/animation/timing/functions/types.js +2 -0
  825. package/lib/commonjs/values/animation/timing/functions/types.js.map +1 -0
  826. package/lib/commonjs/values/animation/timing/index.js +38 -0
  827. package/lib/commonjs/values/animation/timing/index.js.map +1 -0
  828. package/lib/commonjs/values/animation/timing/runTiming.js +33 -0
  829. package/lib/commonjs/values/animation/timing/runTiming.js.map +1 -0
  830. package/lib/commonjs/values/animation/timing/useLoop.js +22 -0
  831. package/lib/commonjs/values/animation/timing/useLoop.js.map +1 -0
  832. package/lib/commonjs/values/animation/timing/useTiming.js +66 -0
  833. package/lib/commonjs/values/animation/timing/useTiming.js.map +1 -0
  834. package/lib/commonjs/values/animation/types.js +2 -0
  835. package/lib/commonjs/values/animation/types.js.map +1 -0
  836. package/lib/commonjs/values/api.js +20 -0
  837. package/lib/commonjs/values/api.js.map +1 -0
  838. package/lib/commonjs/values/hooks/index.js +58 -0
  839. package/lib/commonjs/values/hooks/index.js.map +1 -0
  840. package/lib/commonjs/values/hooks/useClockValue.js +27 -0
  841. package/lib/commonjs/values/hooks/useClockValue.js.map +1 -0
  842. package/lib/commonjs/values/hooks/useDerivedValue.js +25 -0
  843. package/lib/commonjs/values/hooks/useDerivedValue.js.map +1 -0
  844. package/lib/commonjs/values/hooks/useValue.js +23 -0
  845. package/lib/commonjs/values/hooks/useValue.js.map +1 -0
  846. package/lib/commonjs/values/hooks/useValueEffect.js +22 -0
  847. package/lib/commonjs/values/hooks/useValueEffect.js.map +1 -0
  848. package/lib/commonjs/values/index.js +58 -0
  849. package/lib/commonjs/values/index.js.map +1 -0
  850. package/lib/commonjs/values/types.js +2 -0
  851. package/lib/commonjs/values/types.js.map +1 -0
  852. package/lib/commonjs/views/SkiaView.js +163 -0
  853. package/lib/commonjs/views/SkiaView.js.map +1 -0
  854. package/lib/commonjs/views/index.js +58 -0
  855. package/lib/commonjs/views/index.js.map +1 -0
  856. package/lib/commonjs/views/types.js +16 -0
  857. package/lib/commonjs/views/types.js.map +1 -0
  858. package/lib/commonjs/views/useDrawCallback.js +23 -0
  859. package/lib/commonjs/views/useDrawCallback.js.map +1 -0
  860. package/lib/commonjs/views/useTouchHandler.js +75 -0
  861. package/lib/commonjs/views/useTouchHandler.js.map +1 -0
  862. package/lib/module/external/index.js +2 -0
  863. package/lib/module/external/index.js.map +1 -0
  864. package/lib/module/external/reanimated/index.js +2 -0
  865. package/lib/module/external/reanimated/index.js.map +1 -0
  866. package/lib/module/external/reanimated/useSharedValueEffect.js +81 -0
  867. package/lib/module/external/reanimated/useSharedValueEffect.js.map +1 -0
  868. package/lib/module/index.js +7 -0
  869. package/lib/module/index.js.map +1 -0
  870. package/lib/module/renderer/Canvas.js +149 -0
  871. package/lib/module/renderer/Canvas.js.map +1 -0
  872. package/lib/module/renderer/DependencyManager.js +60 -0
  873. package/lib/module/renderer/DependencyManager.js.map +1 -0
  874. package/lib/module/renderer/DrawingContext.js +2 -0
  875. package/lib/module/renderer/DrawingContext.js.map +1 -0
  876. package/lib/module/renderer/HostConfig.js +259 -0
  877. package/lib/module/renderer/HostConfig.js.map +1 -0
  878. package/lib/module/renderer/components/Blend.js +28 -0
  879. package/lib/module/renderer/components/Blend.js.map +1 -0
  880. package/lib/module/renderer/components/Compose.js +24 -0
  881. package/lib/module/renderer/components/Compose.js.map +1 -0
  882. package/lib/module/renderer/components/Defs.js +16 -0
  883. package/lib/module/renderer/components/Defs.js.map +1 -0
  884. package/lib/module/renderer/components/Group.js +58 -0
  885. package/lib/module/renderer/components/Group.js.map +1 -0
  886. package/lib/module/renderer/components/Mask.js +40 -0
  887. package/lib/module/renderer/components/Mask.js.map +1 -0
  888. package/lib/module/renderer/components/Paint.js +36 -0
  889. package/lib/module/renderer/components/Paint.js.map +1 -0
  890. package/lib/module/renderer/components/backdrop/BackdropBlur.js +19 -0
  891. package/lib/module/renderer/components/backdrop/BackdropBlur.js.map +1 -0
  892. package/lib/module/renderer/components/backdrop/BackdropFilter.js +39 -0
  893. package/lib/module/renderer/components/backdrop/BackdropFilter.js.map +1 -0
  894. package/lib/module/renderer/components/backdrop/index.js +3 -0
  895. package/lib/module/renderer/components/backdrop/index.js.map +1 -0
  896. package/lib/module/renderer/components/colorFilters/BlendColor.js +21 -0
  897. package/lib/module/renderer/components/colorFilters/BlendColor.js.map +1 -0
  898. package/lib/module/renderer/components/colorFilters/Compose.js +14 -0
  899. package/lib/module/renderer/components/colorFilters/Compose.js.map +1 -0
  900. package/lib/module/renderer/components/colorFilters/Lerp.js +21 -0
  901. package/lib/module/renderer/components/colorFilters/Lerp.js.map +1 -0
  902. package/lib/module/renderer/components/colorFilters/LinearToSRGBGamma.js +17 -0
  903. package/lib/module/renderer/components/colorFilters/LinearToSRGBGamma.js.map +1 -0
  904. package/lib/module/renderer/components/colorFilters/LumaColorFilter.js +17 -0
  905. package/lib/module/renderer/components/colorFilters/LumaColorFilter.js.map +1 -0
  906. package/lib/module/renderer/components/colorFilters/Matrix.js +20 -0
  907. package/lib/module/renderer/components/colorFilters/Matrix.js.map +1 -0
  908. package/lib/module/renderer/components/colorFilters/SRGBToLinearGamma.js +17 -0
  909. package/lib/module/renderer/components/colorFilters/SRGBToLinearGamma.js.map +1 -0
  910. package/lib/module/renderer/components/colorFilters/index.js +7 -0
  911. package/lib/module/renderer/components/colorFilters/index.js.map +1 -0
  912. package/lib/module/renderer/components/image/BoxFit.js +145 -0
  913. package/lib/module/renderer/components/image/BoxFit.js.map +1 -0
  914. package/lib/module/renderer/components/image/Image.js +39 -0
  915. package/lib/module/renderer/components/image/Image.js.map +1 -0
  916. package/lib/module/renderer/components/image/ImageSVG.js +30 -0
  917. package/lib/module/renderer/components/image/ImageSVG.js.map +1 -0
  918. package/lib/module/renderer/components/image/ImageShader.js +66 -0
  919. package/lib/module/renderer/components/image/ImageShader.js.map +1 -0
  920. package/lib/module/renderer/components/image/index.js +5 -0
  921. package/lib/module/renderer/components/image/index.js.map +1 -0
  922. package/lib/module/renderer/components/imageFilters/Blur.js +25 -0
  923. package/lib/module/renderer/components/imageFilters/Blur.js.map +1 -0
  924. package/lib/module/renderer/components/imageFilters/DisplacementMap.js +32 -0
  925. package/lib/module/renderer/components/imageFilters/DisplacementMap.js.map +1 -0
  926. package/lib/module/renderer/components/imageFilters/DropShadow.js +28 -0
  927. package/lib/module/renderer/components/imageFilters/DropShadow.js.map +1 -0
  928. package/lib/module/renderer/components/imageFilters/InnerShadow.js +38 -0
  929. package/lib/module/renderer/components/imageFilters/InnerShadow.js.map +1 -0
  930. package/lib/module/renderer/components/imageFilters/Morphology.js +26 -0
  931. package/lib/module/renderer/components/imageFilters/Morphology.js.map +1 -0
  932. package/lib/module/renderer/components/imageFilters/Offset.js +23 -0
  933. package/lib/module/renderer/components/imageFilters/Offset.js.map +1 -0
  934. package/lib/module/renderer/components/imageFilters/getInput.js +23 -0
  935. package/lib/module/renderer/components/imageFilters/getInput.js.map +1 -0
  936. package/lib/module/renderer/components/imageFilters/index.js +7 -0
  937. package/lib/module/renderer/components/imageFilters/index.js.map +1 -0
  938. package/lib/module/renderer/components/index.js +17 -0
  939. package/lib/module/renderer/components/index.js.map +1 -0
  940. package/lib/module/renderer/components/maskFilters/Blur.js +25 -0
  941. package/lib/module/renderer/components/maskFilters/Blur.js.map +1 -0
  942. package/lib/module/renderer/components/maskFilters/index.js +2 -0
  943. package/lib/module/renderer/components/maskFilters/index.js.map +1 -0
  944. package/lib/module/renderer/components/pathEffects/Corner.js +29 -0
  945. package/lib/module/renderer/components/pathEffects/Corner.js.map +1 -0
  946. package/lib/module/renderer/components/pathEffects/Dash.js +26 -0
  947. package/lib/module/renderer/components/pathEffects/Dash.js.map +1 -0
  948. package/lib/module/renderer/components/pathEffects/Discrete.js +30 -0
  949. package/lib/module/renderer/components/pathEffects/Discrete.js.map +1 -0
  950. package/lib/module/renderer/components/pathEffects/Line2D.js +30 -0
  951. package/lib/module/renderer/components/pathEffects/Line2D.js.map +1 -0
  952. package/lib/module/renderer/components/pathEffects/Path1D.js +34 -0
  953. package/lib/module/renderer/components/pathEffects/Path1D.js.map +1 -0
  954. package/lib/module/renderer/components/pathEffects/Path2D.js +31 -0
  955. package/lib/module/renderer/components/pathEffects/Path2D.js.map +1 -0
  956. package/lib/module/renderer/components/pathEffects/Sum.js +16 -0
  957. package/lib/module/renderer/components/pathEffects/Sum.js.map +1 -0
  958. package/lib/module/renderer/components/pathEffects/index.js +8 -0
  959. package/lib/module/renderer/components/pathEffects/index.js.map +1 -0
  960. package/lib/module/renderer/components/shaders/Color.js +17 -0
  961. package/lib/module/renderer/components/shaders/Color.js.map +1 -0
  962. package/lib/module/renderer/components/shaders/FractalNoise.js +27 -0
  963. package/lib/module/renderer/components/shaders/FractalNoise.js.map +1 -0
  964. package/lib/module/renderer/components/shaders/Gradient.js +20 -0
  965. package/lib/module/renderer/components/shaders/Gradient.js.map +1 -0
  966. package/lib/module/renderer/components/shaders/LinearGradient.js +27 -0
  967. package/lib/module/renderer/components/shaders/LinearGradient.js.map +1 -0
  968. package/lib/module/renderer/components/shaders/RadialGradient.js +27 -0
  969. package/lib/module/renderer/components/shaders/RadialGradient.js.map +1 -0
  970. package/lib/module/renderer/components/shaders/Shader.js +64 -0
  971. package/lib/module/renderer/components/shaders/Shader.js.map +1 -0
  972. package/lib/module/renderer/components/shaders/ShaderLib.js +45 -0
  973. package/lib/module/renderer/components/shaders/ShaderLib.js.map +1 -0
  974. package/lib/module/renderer/components/shaders/SweepGradient.js +28 -0
  975. package/lib/module/renderer/components/shaders/SweepGradient.js.map +1 -0
  976. package/lib/module/renderer/components/shaders/Turbulence.js +27 -0
  977. package/lib/module/renderer/components/shaders/Turbulence.js.map +1 -0
  978. package/lib/module/renderer/components/shaders/TwoPointConicalGradient.js +29 -0
  979. package/lib/module/renderer/components/shaders/TwoPointConicalGradient.js.map +1 -0
  980. package/lib/module/renderer/components/shaders/index.js +10 -0
  981. package/lib/module/renderer/components/shaders/index.js.map +1 -0
  982. package/lib/module/renderer/components/shapes/Circle.js +26 -0
  983. package/lib/module/renderer/components/shapes/Circle.js.map +1 -0
  984. package/lib/module/renderer/components/shapes/DiffRect.js +21 -0
  985. package/lib/module/renderer/components/shapes/DiffRect.js.map +1 -0
  986. package/lib/module/renderer/components/shapes/Fill.js +17 -0
  987. package/lib/module/renderer/components/shapes/Fill.js.map +1 -0
  988. package/lib/module/renderer/components/shapes/FitBox.js +22 -0
  989. package/lib/module/renderer/components/shapes/FitBox.js.map +1 -0
  990. package/lib/module/renderer/components/shapes/Line.js +21 -0
  991. package/lib/module/renderer/components/shapes/Line.js.map +1 -0
  992. package/lib/module/renderer/components/shapes/Oval.js +23 -0
  993. package/lib/module/renderer/components/shapes/Oval.js.map +1 -0
  994. package/lib/module/renderer/components/shapes/Patch.js +35 -0
  995. package/lib/module/renderer/components/shapes/Patch.js.map +1 -0
  996. package/lib/module/renderer/components/shapes/Path.js +43 -0
  997. package/lib/module/renderer/components/shapes/Path.js.map +1 -0
  998. package/lib/module/renderer/components/shapes/Points.js +27 -0
  999. package/lib/module/renderer/components/shapes/Points.js.map +1 -0
  1000. package/lib/module/renderer/components/shapes/Rect.js +19 -0
  1001. package/lib/module/renderer/components/shapes/Rect.js.map +1 -0
  1002. package/lib/module/renderer/components/shapes/RoundedRect.js +22 -0
  1003. package/lib/module/renderer/components/shapes/RoundedRect.js.map +1 -0
  1004. package/lib/module/renderer/components/shapes/Vertices.js +36 -0
  1005. package/lib/module/renderer/components/shapes/Vertices.js.map +1 -0
  1006. package/lib/module/renderer/components/shapes/index.js +13 -0
  1007. package/lib/module/renderer/components/shapes/index.js.map +1 -0
  1008. package/lib/module/renderer/components/text/Glyphs.js +45 -0
  1009. package/lib/module/renderer/components/text/Glyphs.js.map +1 -0
  1010. package/lib/module/renderer/components/text/Text.js +30 -0
  1011. package/lib/module/renderer/components/text/Text.js.map +1 -0
  1012. package/lib/module/renderer/components/text/TextBlob.js +26 -0
  1013. package/lib/module/renderer/components/text/TextBlob.js.map +1 -0
  1014. package/lib/module/renderer/components/text/TextPath.js +76 -0
  1015. package/lib/module/renderer/components/text/TextPath.js.map +1 -0
  1016. package/lib/module/renderer/components/text/index.js +5 -0
  1017. package/lib/module/renderer/components/text/index.js.map +1 -0
  1018. package/lib/module/renderer/index.js +4 -0
  1019. package/lib/module/renderer/index.js.map +1 -0
  1020. package/lib/module/renderer/nodes/Container.js +18 -0
  1021. package/lib/module/renderer/nodes/Container.js.map +1 -0
  1022. package/lib/module/renderer/nodes/Declaration.js +33 -0
  1023. package/lib/module/renderer/nodes/Declaration.js.map +1 -0
  1024. package/lib/module/renderer/nodes/Drawing.js +53 -0
  1025. package/lib/module/renderer/nodes/Drawing.js.map +1 -0
  1026. package/lib/module/renderer/nodes/Node.js +67 -0
  1027. package/lib/module/renderer/nodes/Node.js.map +1 -0
  1028. package/lib/module/renderer/nodes/index.js +5 -0
  1029. package/lib/module/renderer/nodes/index.js.map +1 -0
  1030. package/lib/module/renderer/processors/Animations/Animations.js +36 -0
  1031. package/lib/module/renderer/processors/Animations/Animations.js.map +1 -0
  1032. package/lib/module/renderer/processors/Animations/index.js +2 -0
  1033. package/lib/module/renderer/processors/Animations/index.js.map +1 -0
  1034. package/lib/module/renderer/processors/Circles.js +16 -0
  1035. package/lib/module/renderer/processors/Circles.js.map +1 -0
  1036. package/lib/module/renderer/processors/Clips.js +13 -0
  1037. package/lib/module/renderer/processors/Clips.js.map +1 -0
  1038. package/lib/module/renderer/processors/Font.js +26 -0
  1039. package/lib/module/renderer/processors/Font.js.map +1 -0
  1040. package/lib/module/renderer/processors/Paint.js +75 -0
  1041. package/lib/module/renderer/processors/Paint.js.map +1 -0
  1042. package/lib/module/renderer/processors/Paths.js +13 -0
  1043. package/lib/module/renderer/processors/Paths.js.map +1 -0
  1044. package/lib/module/renderer/processors/Radius.js +9 -0
  1045. package/lib/module/renderer/processors/Radius.js.map +1 -0
  1046. package/lib/module/renderer/processors/Rects.js +55 -0
  1047. package/lib/module/renderer/processors/Rects.js.map +1 -0
  1048. package/lib/module/renderer/processors/Transform.js +41 -0
  1049. package/lib/module/renderer/processors/Transform.js.map +1 -0
  1050. package/lib/module/renderer/processors/index.js +11 -0
  1051. package/lib/module/renderer/processors/index.js.map +1 -0
  1052. package/lib/module/renderer/processors/math/Coordinates.js +19 -0
  1053. package/lib/module/renderer/processors/math/Coordinates.js.map +1 -0
  1054. package/lib/module/renderer/processors/math/Math.js +2 -0
  1055. package/lib/module/renderer/processors/math/Math.js.map +1 -0
  1056. package/lib/module/renderer/processors/math/Matrix3.js +71 -0
  1057. package/lib/module/renderer/processors/math/Matrix3.js.map +1 -0
  1058. package/lib/module/renderer/processors/math/Transforms.js +12 -0
  1059. package/lib/module/renderer/processors/math/Transforms.js.map +1 -0
  1060. package/lib/module/renderer/processors/math/Vector.js +30 -0
  1061. package/lib/module/renderer/processors/math/Vector.js.map +1 -0
  1062. package/lib/module/renderer/processors/math/index.js +6 -0
  1063. package/lib/module/renderer/processors/math/index.js.map +1 -0
  1064. package/lib/module/renderer/typeddash.js +5 -0
  1065. package/lib/module/renderer/typeddash.js.map +1 -0
  1066. package/lib/module/skia/Canvas.js +14 -0
  1067. package/lib/module/skia/Canvas.js.map +1 -0
  1068. package/lib/module/skia/Color.js +48 -0
  1069. package/lib/module/skia/Color.js.map +1 -0
  1070. package/lib/module/skia/ColorFilter/ColorFilter.js +2 -0
  1071. package/lib/module/skia/ColorFilter/ColorFilter.js.map +1 -0
  1072. package/lib/module/skia/ColorFilter/ColorFilterFactory.js +2 -0
  1073. package/lib/module/skia/ColorFilter/ColorFilterFactory.js.map +1 -0
  1074. package/lib/module/skia/ColorFilter/index.js +3 -0
  1075. package/lib/module/skia/ColorFilter/index.js.map +1 -0
  1076. package/lib/module/skia/ContourMeasure.js +2 -0
  1077. package/lib/module/skia/ContourMeasure.js.map +1 -0
  1078. package/lib/module/skia/Data/Data.js +35 -0
  1079. package/lib/module/skia/Data/Data.js.map +1 -0
  1080. package/lib/module/skia/Data/DataFactory.js +2 -0
  1081. package/lib/module/skia/Data/DataFactory.js.map +1 -0
  1082. package/lib/module/skia/Data/index.js +3 -0
  1083. package/lib/module/skia/Data/index.js.map +1 -0
  1084. package/lib/module/skia/Font/Font.js +68 -0
  1085. package/lib/module/skia/Font/Font.js.map +1 -0
  1086. package/lib/module/skia/Font/index.js +3 -0
  1087. package/lib/module/skia/Font/index.js.map +1 -0
  1088. package/lib/module/skia/Font/useFont.js +24 -0
  1089. package/lib/module/skia/Font/useFont.js.map +1 -0
  1090. package/lib/module/skia/FontMgr/FontMgr.js +2 -0
  1091. package/lib/module/skia/FontMgr/FontMgr.js.map +1 -0
  1092. package/lib/module/skia/FontMgr/FontMgrFactory.js +2 -0
  1093. package/lib/module/skia/FontMgr/FontMgrFactory.js.map +1 -0
  1094. package/lib/module/skia/FontMgr/index.js +2 -0
  1095. package/lib/module/skia/FontMgr/index.js.map +1 -0
  1096. package/lib/module/skia/Image/Image.js +23 -0
  1097. package/lib/module/skia/Image/Image.js.map +1 -0
  1098. package/lib/module/skia/Image/ImageFactory.js +37 -0
  1099. package/lib/module/skia/Image/ImageFactory.js.map +1 -0
  1100. package/lib/module/skia/Image/index.js +4 -0
  1101. package/lib/module/skia/Image/index.js.map +1 -0
  1102. package/lib/module/skia/Image/useImage.js +8 -0
  1103. package/lib/module/skia/Image/useImage.js.map +1 -0
  1104. package/lib/module/skia/ImageFilter/ImageFilter.js +11 -0
  1105. package/lib/module/skia/ImageFilter/ImageFilter.js.map +1 -0
  1106. package/lib/module/skia/ImageFilter/ImageFilterFactory.js +9 -0
  1107. package/lib/module/skia/ImageFilter/ImageFilterFactory.js.map +1 -0
  1108. package/lib/module/skia/ImageFilter/index.js +3 -0
  1109. package/lib/module/skia/ImageFilter/index.js.map +1 -0
  1110. package/lib/module/skia/JsiInstance.js +2 -0
  1111. package/lib/module/skia/JsiInstance.js.map +1 -0
  1112. package/lib/module/skia/MaskFilter.js +11 -0
  1113. package/lib/module/skia/MaskFilter.js.map +1 -0
  1114. package/lib/module/skia/Matrix.js +14 -0
  1115. package/lib/module/skia/Matrix.js.map +1 -0
  1116. package/lib/module/skia/NativeSetup.js +17 -0
  1117. package/lib/module/skia/NativeSetup.js.map +1 -0
  1118. package/lib/module/skia/Paint/BlendMode.js +61 -0
  1119. package/lib/module/skia/Paint/BlendMode.js.map +1 -0
  1120. package/lib/module/skia/Paint/Paint.js +25 -0
  1121. package/lib/module/skia/Paint/Paint.js.map +1 -0
  1122. package/lib/module/skia/Paint/index.js +4 -0
  1123. package/lib/module/skia/Paint/index.js.map +1 -0
  1124. package/lib/module/skia/Paint/usePaint.js +17 -0
  1125. package/lib/module/skia/Paint/usePaint.js.map +1 -0
  1126. package/lib/module/skia/Path/Path.js +24 -0
  1127. package/lib/module/skia/Path/Path.js.map +1 -0
  1128. package/lib/module/skia/Path/PathFactory.js +2 -0
  1129. package/lib/module/skia/Path/PathFactory.js.map +1 -0
  1130. package/lib/module/skia/Path/index.js +4 -0
  1131. package/lib/module/skia/Path/index.js.map +1 -0
  1132. package/lib/module/skia/Path/usePath.js +44 -0
  1133. package/lib/module/skia/Path/usePath.js.map +1 -0
  1134. package/lib/module/skia/PathEffect.js +9 -0
  1135. package/lib/module/skia/PathEffect.js.map +1 -0
  1136. package/lib/module/skia/Point.js +8 -0
  1137. package/lib/module/skia/Point.js.map +1 -0
  1138. package/lib/module/skia/RRect.js +2 -0
  1139. package/lib/module/skia/RRect.js.map +1 -0
  1140. package/lib/module/skia/RSXform.js +2 -0
  1141. package/lib/module/skia/RSXform.js.map +1 -0
  1142. package/lib/module/skia/Rect.js +2 -0
  1143. package/lib/module/skia/Rect.js.map +1 -0
  1144. package/lib/module/skia/RuntimeEffect/RuntimeEffect.js +2 -0
  1145. package/lib/module/skia/RuntimeEffect/RuntimeEffect.js.map +1 -0
  1146. package/lib/module/skia/RuntimeEffect/RuntimeEffectFactory.js +2 -0
  1147. package/lib/module/skia/RuntimeEffect/RuntimeEffectFactory.js.map +1 -0
  1148. package/lib/module/skia/RuntimeEffect/index.js +3 -0
  1149. package/lib/module/skia/RuntimeEffect/index.js.map +1 -0
  1150. package/lib/module/skia/SVG/SVG.js +2 -0
  1151. package/lib/module/skia/SVG/SVG.js.map +1 -0
  1152. package/lib/module/skia/SVG/SVGFactory.js +2 -0
  1153. package/lib/module/skia/SVG/SVGFactory.js.map +1 -0
  1154. package/lib/module/skia/SVG/index.js +4 -0
  1155. package/lib/module/skia/SVG/index.js.map +1 -0
  1156. package/lib/module/skia/SVG/useSvg.js +4 -0
  1157. package/lib/module/skia/SVG/useSvg.js.map +1 -0
  1158. package/lib/module/skia/Shader/Shader.js +2 -0
  1159. package/lib/module/skia/Shader/Shader.js.map +1 -0
  1160. package/lib/module/skia/Shader/ShaderFactory.js +2 -0
  1161. package/lib/module/skia/Shader/ShaderFactory.js.map +1 -0
  1162. package/lib/module/skia/Shader/index.js +4 -0
  1163. package/lib/module/skia/Shader/index.js.map +1 -0
  1164. package/lib/module/skia/Shader/useShader.js +4 -0
  1165. package/lib/module/skia/Shader/useShader.js.map +1 -0
  1166. package/lib/module/skia/Skia.js +39 -0
  1167. package/lib/module/skia/Skia.js.map +1 -0
  1168. package/lib/module/skia/Surface/Surface.js +2 -0
  1169. package/lib/module/skia/Surface/Surface.js.map +1 -0
  1170. package/lib/module/skia/Surface/SurfaceFactory.js +2 -0
  1171. package/lib/module/skia/Surface/SurfaceFactory.js.map +1 -0
  1172. package/lib/module/skia/Surface/index.js +3 -0
  1173. package/lib/module/skia/Surface/index.js.map +1 -0
  1174. package/lib/module/skia/TextBlob.js +2 -0
  1175. package/lib/module/skia/TextBlob.js.map +1 -0
  1176. package/lib/module/skia/Typeface/Typeface.js +2 -0
  1177. package/lib/module/skia/Typeface/Typeface.js.map +1 -0
  1178. package/lib/module/skia/Typeface/TypefaceFactory.js +2 -0
  1179. package/lib/module/skia/Typeface/TypefaceFactory.js.map +1 -0
  1180. package/lib/module/skia/Typeface/index.js +4 -0
  1181. package/lib/module/skia/Typeface/index.js.map +1 -0
  1182. package/lib/module/skia/Typeface/useTypeface.js +8 -0
  1183. package/lib/module/skia/Typeface/useTypeface.js.map +1 -0
  1184. package/lib/module/skia/Vertices/Vertices.js +8 -0
  1185. package/lib/module/skia/Vertices/Vertices.js.map +1 -0
  1186. package/lib/module/skia/Vertices/index.js +2 -0
  1187. package/lib/module/skia/Vertices/index.js.map +1 -0
  1188. package/lib/module/skia/index.js +23 -0
  1189. package/lib/module/skia/index.js.map +1 -0
  1190. package/lib/module/values/animation/decay/decay.js +33 -0
  1191. package/lib/module/values/animation/decay/decay.js.map +1 -0
  1192. package/lib/module/values/animation/decay/index.js +2 -0
  1193. package/lib/module/values/animation/decay/index.js.map +1 -0
  1194. package/lib/module/values/animation/decay/runDecay.js +38 -0
  1195. package/lib/module/values/animation/decay/runDecay.js.map +1 -0
  1196. package/lib/module/values/animation/decay/types.js +2 -0
  1197. package/lib/module/values/animation/decay/types.js.map +1 -0
  1198. package/lib/module/values/animation/functions/index.js +3 -0
  1199. package/lib/module/values/animation/functions/index.js.map +1 -0
  1200. package/lib/module/values/animation/functions/interpolate.js +132 -0
  1201. package/lib/module/values/animation/functions/interpolate.js.map +1 -0
  1202. package/lib/module/values/animation/functions/interpolateColors.js +32 -0
  1203. package/lib/module/values/animation/functions/interpolateColors.js.map +1 -0
  1204. package/lib/module/values/animation/index.js +5 -0
  1205. package/lib/module/values/animation/index.js.map +1 -0
  1206. package/lib/module/values/animation/spring/Spring.js +69 -0
  1207. package/lib/module/values/animation/spring/Spring.js.map +1 -0
  1208. package/lib/module/values/animation/spring/functions/index.js +2 -0
  1209. package/lib/module/values/animation/spring/functions/index.js.map +1 -0
  1210. package/lib/module/values/animation/spring/functions/spring.js +85 -0
  1211. package/lib/module/values/animation/spring/functions/spring.js.map +1 -0
  1212. package/lib/module/values/animation/spring/index.js +4 -0
  1213. package/lib/module/values/animation/spring/index.js.map +1 -0
  1214. package/lib/module/values/animation/spring/runSpring.js +21 -0
  1215. package/lib/module/values/animation/spring/runSpring.js.map +1 -0
  1216. package/lib/module/values/animation/spring/types.js +2 -0
  1217. package/lib/module/values/animation/spring/types.js.map +1 -0
  1218. package/lib/module/values/animation/spring/useSpring.js +13 -0
  1219. package/lib/module/values/animation/spring/useSpring.js.map +1 -0
  1220. package/lib/module/values/animation/timing/Easing.js +98 -0
  1221. package/lib/module/values/animation/timing/Easing.js.map +1 -0
  1222. package/lib/module/values/animation/timing/createTiming.js +49 -0
  1223. package/lib/module/values/animation/timing/createTiming.js.map +1 -0
  1224. package/lib/module/values/animation/timing/functions/bezier.js +141 -0
  1225. package/lib/module/values/animation/timing/functions/bezier.js.map +1 -0
  1226. package/lib/module/values/animation/timing/functions/getResolvedParams.js +48 -0
  1227. package/lib/module/values/animation/timing/functions/getResolvedParams.js.map +1 -0
  1228. package/lib/module/values/animation/timing/functions/index.js +5 -0
  1229. package/lib/module/values/animation/timing/functions/index.js.map +1 -0
  1230. package/lib/module/values/animation/timing/functions/timing.js +41 -0
  1231. package/lib/module/values/animation/timing/functions/timing.js.map +1 -0
  1232. package/lib/module/values/animation/timing/functions/types.js +2 -0
  1233. package/lib/module/values/animation/timing/functions/types.js.map +1 -0
  1234. package/lib/module/values/animation/timing/index.js +5 -0
  1235. package/lib/module/values/animation/timing/index.js.map +1 -0
  1236. package/lib/module/values/animation/timing/runTiming.js +23 -0
  1237. package/lib/module/values/animation/timing/runTiming.js.map +1 -0
  1238. package/lib/module/values/animation/timing/useLoop.js +13 -0
  1239. package/lib/module/values/animation/timing/useLoop.js.map +1 -0
  1240. package/lib/module/values/animation/timing/useTiming.js +54 -0
  1241. package/lib/module/values/animation/timing/useTiming.js.map +1 -0
  1242. package/lib/module/values/animation/types.js +2 -0
  1243. package/lib/module/values/animation/types.js.map +1 -0
  1244. package/lib/module/values/api.js +11 -0
  1245. package/lib/module/values/api.js.map +1 -0
  1246. package/lib/module/values/hooks/index.js +5 -0
  1247. package/lib/module/values/hooks/index.js.map +1 -0
  1248. package/lib/module/values/hooks/useClockValue.js +17 -0
  1249. package/lib/module/values/hooks/useClockValue.js.map +1 -0
  1250. package/lib/module/values/hooks/useDerivedValue.js +14 -0
  1251. package/lib/module/values/hooks/useDerivedValue.js.map +1 -0
  1252. package/lib/module/values/hooks/useValue.js +13 -0
  1253. package/lib/module/values/hooks/useValue.js.map +1 -0
  1254. package/lib/module/values/hooks/useValueEffect.js +13 -0
  1255. package/lib/module/values/hooks/useValueEffect.js.map +1 -0
  1256. package/lib/module/values/index.js +5 -0
  1257. package/lib/module/values/index.js.map +1 -0
  1258. package/lib/module/values/types.js +2 -0
  1259. package/lib/module/values/types.js.map +1 -0
  1260. package/lib/module/views/SkiaView.js +149 -0
  1261. package/lib/module/views/SkiaView.js.map +1 -0
  1262. package/lib/module/views/index.js +5 -0
  1263. package/lib/module/views/index.js.map +1 -0
  1264. package/lib/module/views/types.js +9 -0
  1265. package/lib/module/views/types.js.map +1 -0
  1266. package/lib/module/views/useDrawCallback.js +14 -0
  1267. package/lib/module/views/useDrawCallback.js.map +1 -0
  1268. package/lib/module/views/useTouchHandler.js +64 -0
  1269. package/lib/module/views/useTouchHandler.js.map +1 -0
  1270. package/lib/typescript/index.d.ts +1 -0
  1271. package/lib/typescript/scripts/install-npm.d.ts +1 -0
  1272. package/lib/typescript/src/external/index.d.ts +1 -0
  1273. package/lib/typescript/src/external/reanimated/index.d.ts +1 -0
  1274. package/lib/typescript/src/external/reanimated/useSharedValueEffect.d.ts +11 -0
  1275. package/lib/typescript/src/index.d.ts +6 -0
  1276. package/lib/typescript/src/renderer/Canvas.d.ts +26 -0
  1277. package/lib/typescript/src/renderer/DependencyManager.d.ts +21 -0
  1278. package/lib/typescript/src/renderer/DrawingContext.d.ts +13 -0
  1279. package/lib/typescript/src/renderer/HostConfig.d.ts +27 -0
  1280. package/lib/typescript/src/renderer/components/Blend.d.ts +9 -0
  1281. package/lib/typescript/src/renderer/components/Compose.d.ts +6 -0
  1282. package/lib/typescript/src/renderer/components/Defs.d.ts +5 -0
  1283. package/lib/typescript/src/renderer/components/Group.d.ts +9 -0
  1284. package/lib/typescript/src/renderer/components/Mask.d.ts +15 -0
  1285. package/lib/typescript/src/renderer/components/Paint.d.ts +9 -0
  1286. package/lib/typescript/src/renderer/components/backdrop/BackdropBlur.d.ts +8 -0
  1287. package/lib/typescript/src/renderer/components/backdrop/BackdropFilter.d.ts +7 -0
  1288. package/lib/typescript/src/renderer/components/backdrop/index.d.ts +2 -0
  1289. package/lib/typescript/src/renderer/components/colorFilters/BlendColor.d.ts +10 -0
  1290. package/lib/typescript/src/renderer/components/colorFilters/Compose.d.ts +3 -0
  1291. package/lib/typescript/src/renderer/components/colorFilters/Lerp.d.ts +7 -0
  1292. package/lib/typescript/src/renderer/components/colorFilters/LinearToSRGBGamma.d.ts +5 -0
  1293. package/lib/typescript/src/renderer/components/colorFilters/LumaColorFilter.d.ts +5 -0
  1294. package/lib/typescript/src/renderer/components/colorFilters/Matrix.d.ts +9 -0
  1295. package/lib/typescript/src/renderer/components/colorFilters/SRGBToLinearGamma.d.ts +5 -0
  1296. package/lib/typescript/src/renderer/components/colorFilters/index.d.ts +6 -0
  1297. package/lib/typescript/src/renderer/components/image/BoxFit.d.ts +23 -0
  1298. package/lib/typescript/src/renderer/components/image/Image.d.ts +19 -0
  1299. package/lib/typescript/src/renderer/components/image/ImageSVG.d.ts +7 -0
  1300. package/lib/typescript/src/renderer/components/image/ImageShader.d.ts +26 -0
  1301. package/lib/typescript/src/renderer/components/image/index.d.ts +4 -0
  1302. package/lib/typescript/src/renderer/components/imageFilters/Blur.d.ts +15 -0
  1303. package/lib/typescript/src/renderer/components/imageFilters/DisplacementMap.d.ts +10 -0
  1304. package/lib/typescript/src/renderer/components/imageFilters/DropShadow.d.ts +11 -0
  1305. package/lib/typescript/src/renderer/components/imageFilters/InnerShadow.d.ts +12 -0
  1306. package/lib/typescript/src/renderer/components/imageFilters/Morphology.d.ts +13 -0
  1307. package/lib/typescript/src/renderer/components/imageFilters/Offset.d.ts +14 -0
  1308. package/lib/typescript/src/renderer/components/imageFilters/getInput.d.ts +2 -0
  1309. package/lib/typescript/src/renderer/components/imageFilters/index.d.ts +6 -0
  1310. package/lib/typescript/src/renderer/components/index.d.ts +16 -0
  1311. package/lib/typescript/src/renderer/components/maskFilters/Blur.d.ts +16 -0
  1312. package/lib/typescript/src/renderer/components/maskFilters/index.d.ts +1 -0
  1313. package/lib/typescript/src/renderer/components/pathEffects/Corner.d.ts +7 -0
  1314. package/lib/typescript/src/renderer/components/pathEffects/Dash.d.ts +8 -0
  1315. package/lib/typescript/src/renderer/components/pathEffects/Discrete.d.ts +14 -0
  1316. package/lib/typescript/src/renderer/components/pathEffects/Line2D.d.ts +9 -0
  1317. package/lib/typescript/src/renderer/components/pathEffects/Path1D.d.ts +13 -0
  1318. package/lib/typescript/src/renderer/components/pathEffects/Path2D.d.ts +10 -0
  1319. package/lib/typescript/src/renderer/components/pathEffects/Sum.d.ts +6 -0
  1320. package/lib/typescript/src/renderer/components/pathEffects/index.d.ts +7 -0
  1321. package/lib/typescript/src/renderer/components/shaders/Color.d.ts +7 -0
  1322. package/lib/typescript/src/renderer/components/shaders/FractalNoise.d.ts +18 -0
  1323. package/lib/typescript/src/renderer/components/shaders/Gradient.d.ts +17 -0
  1324. package/lib/typescript/src/renderer/components/shaders/LinearGradient.d.ts +8 -0
  1325. package/lib/typescript/src/renderer/components/shaders/RadialGradient.d.ts +8 -0
  1326. package/lib/typescript/src/renderer/components/shaders/Shader.d.ts +21 -0
  1327. package/lib/typescript/src/renderer/components/shaders/ShaderLib.d.ts +4 -0
  1328. package/lib/typescript/src/renderer/components/shaders/SweepGradient.d.ts +9 -0
  1329. package/lib/typescript/src/renderer/components/shaders/Turbulence.d.ts +18 -0
  1330. package/lib/typescript/src/renderer/components/shaders/TwoPointConicalGradient.d.ts +10 -0
  1331. package/lib/typescript/src/renderer/components/shaders/index.d.ts +9 -0
  1332. package/lib/typescript/src/renderer/components/shapes/Circle.d.ts +12 -0
  1333. package/lib/typescript/src/renderer/components/shapes/DiffRect.d.ts +9 -0
  1334. package/lib/typescript/src/renderer/components/shapes/Fill.d.ts +5 -0
  1335. package/lib/typescript/src/renderer/components/shapes/FitBox.d.ts +16 -0
  1336. package/lib/typescript/src/renderer/components/shapes/Line.d.ts +7 -0
  1337. package/lib/typescript/src/renderer/components/shapes/Oval.d.ts +10 -0
  1338. package/lib/typescript/src/renderer/components/shapes/Patch.d.ts +21 -0
  1339. package/lib/typescript/src/renderer/components/shapes/Path.d.ts +21 -0
  1340. package/lib/typescript/src/renderer/components/shapes/Points.d.ts +15 -0
  1341. package/lib/typescript/src/renderer/components/shapes/Rect.d.ts +4 -0
  1342. package/lib/typescript/src/renderer/components/shapes/RoundedRect.d.ts +9 -0
  1343. package/lib/typescript/src/renderer/components/shapes/Vertices.d.ts +18 -0
  1344. package/lib/typescript/src/renderer/components/shapes/index.d.ts +12 -0
  1345. package/lib/typescript/src/renderer/components/text/Glyphs.d.ts +20 -0
  1346. package/lib/typescript/src/renderer/components/text/Text.d.ts +15 -0
  1347. package/lib/typescript/src/renderer/components/text/TextBlob.d.ts +15 -0
  1348. package/lib/typescript/src/renderer/components/text/TextPath.d.ts +15 -0
  1349. package/lib/typescript/src/renderer/components/text/index.d.ts +4 -0
  1350. package/lib/typescript/src/renderer/index.d.ts +3 -0
  1351. package/lib/typescript/src/renderer/nodes/Container.d.ts +8 -0
  1352. package/lib/typescript/src/renderer/nodes/Declaration.d.ts +19 -0
  1353. package/lib/typescript/src/renderer/nodes/Drawing.d.ts +21 -0
  1354. package/lib/typescript/src/renderer/nodes/Node.d.ts +23 -0
  1355. package/lib/typescript/src/renderer/nodes/index.d.ts +4 -0
  1356. package/lib/typescript/src/renderer/processors/Animations/Animations.d.ts +9 -0
  1357. package/lib/typescript/src/renderer/processors/Animations/index.d.ts +1 -0
  1358. package/lib/typescript/src/renderer/processors/Circles.d.ts +13 -0
  1359. package/lib/typescript/src/renderer/processors/Clips.d.ts +5 -0
  1360. package/lib/typescript/src/renderer/processors/Font.d.ts +12 -0
  1361. package/lib/typescript/src/renderer/processors/Paint.d.ts +21 -0
  1362. package/lib/typescript/src/renderer/processors/Paths.d.ts +4 -0
  1363. package/lib/typescript/src/renderer/processors/Radius.d.ts +3 -0
  1364. package/lib/typescript/src/renderer/processors/Rects.d.ts +61 -0
  1365. package/lib/typescript/src/renderer/processors/Transform.d.ts +91 -0
  1366. package/lib/typescript/src/renderer/processors/index.d.ts +10 -0
  1367. package/lib/typescript/src/renderer/processors/math/Coordinates.d.ts +29 -0
  1368. package/lib/typescript/src/renderer/processors/math/Math.d.ts +1 -0
  1369. package/lib/typescript/src/renderer/processors/math/Matrix3.d.ts +13 -0
  1370. package/lib/typescript/src/renderer/processors/math/Transforms.d.ts +5 -0
  1371. package/lib/typescript/src/renderer/processors/math/Vector.d.ts +35 -0
  1372. package/lib/typescript/src/renderer/processors/math/index.d.ts +5 -0
  1373. package/lib/typescript/src/renderer/typeddash.d.ts +2 -0
  1374. package/lib/typescript/src/skia/Canvas.d.ts +375 -0
  1375. package/lib/typescript/src/skia/Color.d.ts +10 -0
  1376. package/lib/typescript/src/skia/ColorFilter/ColorFilter.d.ts +3 -0
  1377. package/lib/typescript/src/skia/ColorFilter/ColorFilterFactory.d.ts +43 -0
  1378. package/lib/typescript/src/skia/ColorFilter/index.d.ts +2 -0
  1379. package/lib/typescript/src/skia/ContourMeasure.d.ts +42 -0
  1380. package/lib/typescript/src/skia/Data/Data.d.ts +9 -0
  1381. package/lib/typescript/src/skia/Data/DataFactory.d.ts +18 -0
  1382. package/lib/typescript/src/skia/Data/index.d.ts +2 -0
  1383. package/lib/typescript/src/skia/Font/Font.d.ts +187 -0
  1384. package/lib/typescript/src/skia/Font/index.d.ts +2 -0
  1385. package/lib/typescript/src/skia/Font/useFont.d.ts +6 -0
  1386. package/lib/typescript/src/skia/FontMgr/FontMgr.d.ts +18 -0
  1387. package/lib/typescript/src/skia/FontMgr/FontMgrFactory.d.ts +4 -0
  1388. package/lib/typescript/src/skia/FontMgr/index.d.ts +1 -0
  1389. package/lib/typescript/src/skia/Image/Image.d.ts +75 -0
  1390. package/lib/typescript/src/skia/Image/ImageFactory.d.ts +62 -0
  1391. package/lib/typescript/src/skia/Image/index.d.ts +3 -0
  1392. package/lib/typescript/src/skia/Image/useImage.d.ts +5 -0
  1393. package/lib/typescript/src/skia/ImageFilter/ImageFilter.d.ts +23 -0
  1394. package/lib/typescript/src/skia/ImageFilter/ImageFilterFactory.d.ts +114 -0
  1395. package/lib/typescript/src/skia/ImageFilter/index.d.ts +2 -0
  1396. package/lib/typescript/src/skia/JsiInstance.d.ts +3 -0
  1397. package/lib/typescript/src/skia/MaskFilter.d.ts +21 -0
  1398. package/lib/typescript/src/skia/Matrix.d.ts +22 -0
  1399. package/lib/typescript/src/skia/NativeSetup.d.ts +1 -0
  1400. package/lib/typescript/src/skia/Paint/BlendMode.d.ts +58 -0
  1401. package/lib/typescript/src/skia/Paint/Paint.d.ts +127 -0
  1402. package/lib/typescript/src/skia/Paint/index.d.ts +3 -0
  1403. package/lib/typescript/src/skia/Paint/usePaint.d.ts +6 -0
  1404. package/lib/typescript/src/skia/Path/Path.d.ts +443 -0
  1405. package/lib/typescript/src/skia/Path/PathFactory.d.ts +18 -0
  1406. package/lib/typescript/src/skia/Path/index.d.ts +3 -0
  1407. package/lib/typescript/src/skia/Path/usePath.d.ts +22 -0
  1408. package/lib/typescript/src/skia/PathEffect.d.ts +75 -0
  1409. package/lib/typescript/src/skia/Point.d.ts +9 -0
  1410. package/lib/typescript/src/skia/RRect.d.ts +6 -0
  1411. package/lib/typescript/src/skia/RSXform.d.ts +2 -0
  1412. package/lib/typescript/src/skia/Rect.d.ts +6 -0
  1413. package/lib/typescript/src/skia/RuntimeEffect/RuntimeEffect.d.ts +47 -0
  1414. package/lib/typescript/src/skia/RuntimeEffect/RuntimeEffectFactory.d.ts +10 -0
  1415. package/lib/typescript/src/skia/RuntimeEffect/index.d.ts +2 -0
  1416. package/lib/typescript/src/skia/SVG/SVG.d.ts +2 -0
  1417. package/lib/typescript/src/skia/SVG/SVGFactory.d.ts +6 -0
  1418. package/lib/typescript/src/skia/SVG/index.d.ts +3 -0
  1419. package/lib/typescript/src/skia/SVG/useSvg.d.ts +2 -0
  1420. package/lib/typescript/src/skia/Shader/Shader.d.ts +3 -0
  1421. package/lib/typescript/src/skia/Shader/ShaderFactory.d.ts +104 -0
  1422. package/lib/typescript/src/skia/Shader/index.d.ts +3 -0
  1423. package/lib/typescript/src/skia/Shader/useShader.d.ts +1 -0
  1424. package/lib/typescript/src/skia/Skia.d.ts +101 -0
  1425. package/lib/typescript/src/skia/Surface/Surface.d.ts +25 -0
  1426. package/lib/typescript/src/skia/Surface/SurfaceFactory.d.ts +11 -0
  1427. package/lib/typescript/src/skia/Surface/index.d.ts +2 -0
  1428. package/lib/typescript/src/skia/TextBlob.d.ts +44 -0
  1429. package/lib/typescript/src/skia/Typeface/Typeface.d.ts +5 -0
  1430. package/lib/typescript/src/skia/Typeface/TypefaceFactory.d.ts +5 -0
  1431. package/lib/typescript/src/skia/Typeface/index.d.ts +3 -0
  1432. package/lib/typescript/src/skia/Typeface/useTypeface.d.ts +5 -0
  1433. package/lib/typescript/src/skia/Vertices/Vertices.d.ts +17 -0
  1434. package/lib/typescript/src/skia/Vertices/index.d.ts +1 -0
  1435. package/lib/typescript/src/skia/index.d.ts +22 -0
  1436. package/lib/typescript/src/values/animation/decay/decay.d.ts +2 -0
  1437. package/lib/typescript/src/values/animation/decay/index.d.ts +1 -0
  1438. package/lib/typescript/src/values/animation/decay/runDecay.d.ts +10 -0
  1439. package/lib/typescript/src/values/animation/decay/types.d.ts +21 -0
  1440. package/lib/typescript/src/values/animation/functions/index.d.ts +2 -0
  1441. package/lib/typescript/src/values/animation/functions/interpolate.d.ts +7 -0
  1442. package/lib/typescript/src/values/animation/functions/interpolateColors.d.ts +3 -0
  1443. package/lib/typescript/src/values/animation/index.d.ts +4 -0
  1444. package/lib/typescript/src/values/animation/spring/Spring.d.ts +65 -0
  1445. package/lib/typescript/src/values/animation/spring/functions/index.d.ts +1 -0
  1446. package/lib/typescript/src/values/animation/spring/functions/spring.d.ts +10 -0
  1447. package/lib/typescript/src/values/animation/spring/index.d.ts +3 -0
  1448. package/lib/typescript/src/values/animation/spring/runSpring.d.ts +16 -0
  1449. package/lib/typescript/src/values/animation/spring/types.d.ts +6 -0
  1450. package/lib/typescript/src/values/animation/spring/useSpring.d.ts +10 -0
  1451. package/lib/typescript/src/values/animation/timing/Easing.d.ts +19 -0
  1452. package/lib/typescript/src/values/animation/timing/createTiming.d.ts +17 -0
  1453. package/lib/typescript/src/values/animation/timing/functions/bezier.d.ts +1 -0
  1454. package/lib/typescript/src/values/animation/timing/functions/getResolvedParams.d.ts +7 -0
  1455. package/lib/typescript/src/values/animation/timing/functions/index.d.ts +4 -0
  1456. package/lib/typescript/src/values/animation/timing/functions/timing.d.ts +17 -0
  1457. package/lib/typescript/src/values/animation/timing/functions/types.d.ts +7 -0
  1458. package/lib/typescript/src/values/animation/timing/index.d.ts +4 -0
  1459. package/lib/typescript/src/values/animation/timing/runTiming.d.ts +16 -0
  1460. package/lib/typescript/src/values/animation/timing/useLoop.d.ts +8 -0
  1461. package/lib/typescript/src/values/animation/timing/useTiming.d.ts +10 -0
  1462. package/lib/typescript/src/values/animation/types.d.ts +18 -0
  1463. package/lib/typescript/src/values/api.d.ts +29 -0
  1464. package/lib/typescript/src/values/hooks/index.d.ts +4 -0
  1465. package/lib/typescript/src/values/hooks/useClockValue.d.ts +6 -0
  1466. package/lib/typescript/src/values/hooks/useDerivedValue.d.ts +8 -0
  1467. package/lib/typescript/src/values/hooks/useValue.d.ts +7 -0
  1468. package/lib/typescript/src/values/hooks/useValueEffect.d.ts +7 -0
  1469. package/lib/typescript/src/values/index.d.ts +4 -0
  1470. package/lib/typescript/src/values/types.d.ts +36 -0
  1471. package/lib/typescript/src/views/SkiaView.d.ts +55 -0
  1472. package/lib/typescript/src/views/index.d.ts +4 -0
  1473. package/lib/typescript/src/views/types.d.ts +67 -0
  1474. package/lib/typescript/src/views/useDrawCallback.d.ts +8 -0
  1475. package/lib/typescript/src/views/useTouchHandler.d.ts +12 -0
  1476. package/libs/android/arm64-v8a/libskia.a +0 -0
  1477. package/libs/android/arm64-v8a/libskshaper.a +0 -0
  1478. package/libs/android/arm64-v8a/libsvg.a +0 -0
  1479. package/libs/android/armeabi-v7a/libskia.a +0 -0
  1480. package/libs/android/armeabi-v7a/libskshaper.a +0 -0
  1481. package/libs/android/armeabi-v7a/libsvg.a +0 -0
  1482. package/libs/android/x86/libskia.a +0 -0
  1483. package/libs/android/x86/libskshaper.a +0 -0
  1484. package/libs/android/x86/libsvg.a +0 -0
  1485. package/libs/android/x86_64/libskia.a +0 -0
  1486. package/libs/android/x86_64/libskshaper.a +0 -0
  1487. package/libs/android/x86_64/libsvg.a +0 -0
  1488. package/libs/ios/libskia.xcframework/Info.plist +42 -0
  1489. package/libs/ios/libskia.xcframework/ios-arm64_arm64e/libskia.a +0 -0
  1490. package/libs/ios/libskia.xcframework/ios-arm64_arm64e_x86_64-simulator/libskia.a +0 -0
  1491. package/libs/ios/libskshaper.xcframework/Info.plist +42 -0
  1492. package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e/libskshaper.a +0 -0
  1493. package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e_x86_64-simulator/libskshaper.a +0 -0
  1494. package/libs/ios/libsvg.xcframework/Info.plist +42 -0
  1495. package/libs/ios/libsvg.xcframework/ios-arm64_arm64e/libsvg.a +0 -0
  1496. package/libs/ios/libsvg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsvg.a +0 -0
  1497. package/package.json +100 -0
  1498. package/react-native-skia.podspec +71 -0
  1499. package/scripts/install-npm.js +23 -0
  1500. package/src/external/index.ts +1 -0
  1501. package/src/external/reanimated/index.ts +1 -0
  1502. package/src/external/reanimated/useSharedValueEffect.ts +81 -0
  1503. package/src/index.ts +7 -0
  1504. package/src/renderer/Canvas.tsx +190 -0
  1505. package/src/renderer/DependencyManager.tsx +59 -0
  1506. package/src/renderer/DrawingContext.ts +16 -0
  1507. package/src/renderer/HostConfig.ts +321 -0
  1508. package/src/renderer/components/Blend.tsx +28 -0
  1509. package/src/renderer/components/Compose.tsx +28 -0
  1510. package/src/renderer/components/Defs.tsx +19 -0
  1511. package/src/renderer/components/Group.tsx +61 -0
  1512. package/src/renderer/components/Mask.tsx +43 -0
  1513. package/src/renderer/components/Paint.tsx +59 -0
  1514. package/src/renderer/components/backdrop/BackdropBlur.tsx +23 -0
  1515. package/src/renderer/components/backdrop/BackdropFilter.tsx +47 -0
  1516. package/src/renderer/components/backdrop/index.ts +2 -0
  1517. package/src/renderer/components/colorFilters/BlendColor.tsx +30 -0
  1518. package/src/renderer/components/colorFilters/Compose.ts +17 -0
  1519. package/src/renderer/components/colorFilters/Lerp.tsx +27 -0
  1520. package/src/renderer/components/colorFilters/LinearToSRGBGamma.tsx +21 -0
  1521. package/src/renderer/components/colorFilters/LumaColorFilter.tsx +19 -0
  1522. package/src/renderer/components/colorFilters/Matrix.tsx +47 -0
  1523. package/src/renderer/components/colorFilters/SRGBToLinearGamma.tsx +21 -0
  1524. package/src/renderer/components/colorFilters/index.ts +6 -0
  1525. package/src/renderer/components/image/BoxFit.ts +131 -0
  1526. package/src/renderer/components/image/Image.tsx +50 -0
  1527. package/src/renderer/components/image/ImageSVG.tsx +24 -0
  1528. package/src/renderer/components/image/ImageShader.tsx +81 -0
  1529. package/src/renderer/components/image/index.ts +4 -0
  1530. package/src/renderer/components/imageFilters/Blur.tsx +35 -0
  1531. package/src/renderer/components/imageFilters/DisplacementMap.tsx +35 -0
  1532. package/src/renderer/components/imageFilters/DropShadow.tsx +31 -0
  1533. package/src/renderer/components/imageFilters/InnerShadow.tsx +50 -0
  1534. package/src/renderer/components/imageFilters/Morphology.tsx +34 -0
  1535. package/src/renderer/components/imageFilters/Offset.tsx +27 -0
  1536. package/src/renderer/components/imageFilters/getInput.ts +19 -0
  1537. package/src/renderer/components/imageFilters/index.ts +6 -0
  1538. package/src/renderer/components/index.ts +17 -0
  1539. package/src/renderer/components/maskFilters/Blur.tsx +33 -0
  1540. package/src/renderer/components/maskFilters/index.ts +1 -0
  1541. package/src/renderer/components/pathEffects/Corner.tsx +32 -0
  1542. package/src/renderer/components/pathEffects/Dash.tsx +28 -0
  1543. package/src/renderer/components/pathEffects/Discrete.tsx +35 -0
  1544. package/src/renderer/components/pathEffects/Line2D.tsx +34 -0
  1545. package/src/renderer/components/pathEffects/Path1D.tsx +44 -0
  1546. package/src/renderer/components/pathEffects/Path2D.tsx +36 -0
  1547. package/src/renderer/components/pathEffects/Sum.tsx +20 -0
  1548. package/src/renderer/components/pathEffects/index.ts +7 -0
  1549. package/src/renderer/components/shaders/Color.tsx +18 -0
  1550. package/src/renderer/components/shaders/FractalNoise.tsx +37 -0
  1551. package/src/renderer/components/shaders/Gradient.ts +29 -0
  1552. package/src/renderer/components/shaders/LinearGradient.tsx +33 -0
  1553. package/src/renderer/components/shaders/RadialGradient.tsx +33 -0
  1554. package/src/renderer/components/shaders/Shader.tsx +84 -0
  1555. package/src/renderer/components/shaders/ShaderLib.ts +46 -0
  1556. package/src/renderer/components/shaders/SweepGradient.tsx +36 -0
  1557. package/src/renderer/components/shaders/Turbulence.tsx +37 -0
  1558. package/src/renderer/components/shaders/TwoPointConicalGradient.tsx +39 -0
  1559. package/src/renderer/components/shaders/index.ts +9 -0
  1560. package/src/renderer/components/shapes/Circle.tsx +25 -0
  1561. package/src/renderer/components/shapes/DiffRect.tsx +21 -0
  1562. package/src/renderer/components/shapes/Fill.tsx +15 -0
  1563. package/src/renderer/components/shapes/FitBox.tsx +26 -0
  1564. package/src/renderer/components/shapes/Line.tsx +16 -0
  1565. package/src/renderer/components/shapes/Oval.tsx +25 -0
  1566. package/src/renderer/components/shapes/Patch.tsx +68 -0
  1567. package/src/renderer/components/shapes/Path.tsx +49 -0
  1568. package/src/renderer/components/shapes/Points.tsx +28 -0
  1569. package/src/renderer/components/shapes/Rect.tsx +20 -0
  1570. package/src/renderer/components/shapes/RoundedRect.tsx +25 -0
  1571. package/src/renderer/components/shapes/Vertices.tsx +44 -0
  1572. package/src/renderer/components/shapes/index.ts +12 -0
  1573. package/src/renderer/components/text/Glyphs.tsx +49 -0
  1574. package/src/renderer/components/text/Text.tsx +32 -0
  1575. package/src/renderer/components/text/TextBlob.tsx +26 -0
  1576. package/src/renderer/components/text/TextPath.tsx +70 -0
  1577. package/src/renderer/components/text/index.ts +4 -0
  1578. package/src/renderer/index.ts +3 -0
  1579. package/src/renderer/nodes/Container.tsx +17 -0
  1580. package/src/renderer/nodes/Declaration.tsx +53 -0
  1581. package/src/renderer/nodes/Drawing.tsx +76 -0
  1582. package/src/renderer/nodes/Node.ts +60 -0
  1583. package/src/renderer/nodes/index.ts +4 -0
  1584. package/src/renderer/processors/Animations/Animations.ts +48 -0
  1585. package/src/renderer/processors/Animations/index.ts +1 -0
  1586. package/src/renderer/processors/Circles.ts +25 -0
  1587. package/src/renderer/processors/Clips.ts +19 -0
  1588. package/src/renderer/processors/Font.ts +25 -0
  1589. package/src/renderer/processors/Paint.ts +105 -0
  1590. package/src/renderer/processors/Paths.ts +19 -0
  1591. package/src/renderer/processors/Radius.ts +11 -0
  1592. package/src/renderer/processors/Rects.ts +86 -0
  1593. package/src/renderer/processors/Transform.ts +44 -0
  1594. package/src/renderer/processors/index.ts +10 -0
  1595. package/src/renderer/processors/math/Coordinates.ts +32 -0
  1596. package/src/renderer/processors/math/Math.ts +2 -0
  1597. package/src/renderer/processors/math/Matrix3.ts +150 -0
  1598. package/src/renderer/processors/math/Transforms.ts +7 -0
  1599. package/src/renderer/processors/math/Vector.ts +37 -0
  1600. package/src/renderer/processors/math/index.ts +5 -0
  1601. package/src/renderer/typeddash.ts +5 -0
  1602. package/src/skia/Canvas.ts +488 -0
  1603. package/src/skia/Color.ts +51 -0
  1604. package/src/skia/ColorFilter/ColorFilter.ts +7 -0
  1605. package/src/skia/ColorFilter/ColorFilterFactory.ts +52 -0
  1606. package/src/skia/ColorFilter/index.ts +2 -0
  1607. package/src/skia/ContourMeasure.tsx +49 -0
  1608. package/src/skia/Data/Data.ts +61 -0
  1609. package/src/skia/Data/DataFactory.ts +19 -0
  1610. package/src/skia/Data/index.ts +2 -0
  1611. package/src/skia/Font/Font.ts +230 -0
  1612. package/src/skia/Font/index.ts +2 -0
  1613. package/src/skia/Font/useFont.ts +27 -0
  1614. package/src/skia/FontMgr/FontMgr.ts +24 -0
  1615. package/src/skia/FontMgr/FontMgrFactory.ts +17 -0
  1616. package/src/skia/FontMgr/index.ts +1 -0
  1617. package/src/skia/Image/Image.ts +96 -0
  1618. package/src/skia/Image/ImageFactory.ts +78 -0
  1619. package/src/skia/Image/index.ts +3 -0
  1620. package/src/skia/Image/useImage.ts +9 -0
  1621. package/src/skia/ImageFilter/ImageFilter.ts +31 -0
  1622. package/src/skia/ImageFilter/ImageFilterFactory.ts +172 -0
  1623. package/src/skia/ImageFilter/index.ts +2 -0
  1624. package/src/skia/JsiInstance.ts +3 -0
  1625. package/src/skia/MaskFilter.ts +27 -0
  1626. package/src/skia/Matrix.ts +23 -0
  1627. package/src/skia/NativeSetup.ts +18 -0
  1628. package/src/skia/Paint/BlendMode.ts +61 -0
  1629. package/src/skia/Paint/Paint.ts +153 -0
  1630. package/src/skia/Paint/index.ts +3 -0
  1631. package/src/skia/Paint/usePaint.ts +23 -0
  1632. package/src/skia/Path/Path.ts +538 -0
  1633. package/src/skia/Path/PathFactory.ts +20 -0
  1634. package/src/skia/Path/index.ts +3 -0
  1635. package/src/skia/Path/usePath.ts +54 -0
  1636. package/src/skia/PathEffect.ts +93 -0
  1637. package/src/skia/Point.ts +10 -0
  1638. package/src/skia/RRect.ts +7 -0
  1639. package/src/skia/RSXform.ts +3 -0
  1640. package/src/skia/Rect.ts +6 -0
  1641. package/src/skia/RuntimeEffect/RuntimeEffect.ts +63 -0
  1642. package/src/skia/RuntimeEffect/RuntimeEffectFactory.ts +12 -0
  1643. package/src/skia/RuntimeEffect/index.ts +2 -0
  1644. package/src/skia/SVG/SVG.ts +3 -0
  1645. package/src/skia/SVG/SVGFactory.ts +8 -0
  1646. package/src/skia/SVG/index.ts +3 -0
  1647. package/src/skia/SVG/useSvg.ts +6 -0
  1648. package/src/skia/Shader/Shader.ts +6 -0
  1649. package/src/skia/Shader/ShaderFactory.ts +169 -0
  1650. package/src/skia/Shader/index.ts +3 -0
  1651. package/src/skia/Shader/useShader.ts +6 -0
  1652. package/src/skia/Skia.ts +120 -0
  1653. package/src/skia/Surface/Surface.ts +27 -0
  1654. package/src/skia/Surface/SurfaceFactory.ts +12 -0
  1655. package/src/skia/Surface/index.ts +2 -0
  1656. package/src/skia/TextBlob.ts +52 -0
  1657. package/src/skia/Typeface/Typeface.ts +6 -0
  1658. package/src/skia/Typeface/TypefaceFactory.ts +7 -0
  1659. package/src/skia/Typeface/index.ts +3 -0
  1660. package/src/skia/Typeface/useTypeface.ts +9 -0
  1661. package/src/skia/Vertices/Vertices.tsx +20 -0
  1662. package/src/skia/Vertices/index.ts +1 -0
  1663. package/src/skia/index.ts +22 -0
  1664. package/src/values/animation/decay/decay.ts +35 -0
  1665. package/src/values/animation/decay/index.ts +1 -0
  1666. package/src/values/animation/decay/runDecay.ts +37 -0
  1667. package/src/values/animation/decay/types.ts +24 -0
  1668. package/src/values/animation/functions/index.ts +2 -0
  1669. package/src/values/animation/functions/interpolate.ts +169 -0
  1670. package/src/values/animation/functions/interpolateColors.ts +62 -0
  1671. package/src/values/animation/index.ts +4 -0
  1672. package/src/values/animation/spring/Spring.ts +61 -0
  1673. package/src/values/animation/spring/functions/index.ts +1 -0
  1674. package/src/values/animation/spring/functions/spring.ts +86 -0
  1675. package/src/values/animation/spring/index.ts +3 -0
  1676. package/src/values/animation/spring/runSpring.ts +37 -0
  1677. package/src/values/animation/spring/types.ts +6 -0
  1678. package/src/values/animation/spring/useSpring.ts +28 -0
  1679. package/src/values/animation/timing/Easing.ts +102 -0
  1680. package/src/values/animation/timing/createTiming.ts +62 -0
  1681. package/src/values/animation/timing/functions/__tests__/timing.spec.ts +29 -0
  1682. package/src/values/animation/timing/functions/bezier.ts +165 -0
  1683. package/src/values/animation/timing/functions/getResolvedParams.ts +50 -0
  1684. package/src/values/animation/timing/functions/index.ts +4 -0
  1685. package/src/values/animation/timing/functions/timing.ts +44 -0
  1686. package/src/values/animation/timing/functions/types.ts +8 -0
  1687. package/src/values/animation/timing/index.ts +4 -0
  1688. package/src/values/animation/timing/runTiming.ts +33 -0
  1689. package/src/values/animation/timing/useLoop.ts +18 -0
  1690. package/src/values/animation/timing/useTiming.ts +68 -0
  1691. package/src/values/animation/types.ts +23 -0
  1692. package/src/values/api.ts +49 -0
  1693. package/src/values/hooks/index.ts +4 -0
  1694. package/src/values/hooks/useClockValue.ts +18 -0
  1695. package/src/values/hooks/useDerivedValue.ts +18 -0
  1696. package/src/values/hooks/useValue.ts +14 -0
  1697. package/src/values/hooks/useValueEffect.ts +18 -0
  1698. package/src/values/index.ts +4 -0
  1699. package/src/values/types.ts +40 -0
  1700. package/src/views/SkiaView.tsx +161 -0
  1701. package/src/views/index.ts +4 -0
  1702. package/src/views/types.ts +80 -0
  1703. package/src/views/useDrawCallback.ts +19 -0
  1704. package/src/views/useTouchHandler.ts +80 -0
@@ -0,0 +1,2583 @@
1
+ /*
2
+ * Copyright 2006 The Android Open Source Project
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 SkCanvas_DEFINED
9
+ #define SkCanvas_DEFINED
10
+
11
+ #include "include/core/SkBlendMode.h"
12
+ #include "include/core/SkClipOp.h"
13
+ #include "include/core/SkColor.h"
14
+ #include "include/core/SkFontTypes.h"
15
+ #include "include/core/SkImageInfo.h"
16
+ #include "include/core/SkM44.h"
17
+ #include "include/core/SkMatrix.h"
18
+ #include "include/core/SkPaint.h"
19
+ #include "include/core/SkPoint.h"
20
+ #include "include/core/SkRasterHandleAllocator.h"
21
+ #include "include/core/SkRect.h"
22
+ #include "include/core/SkRefCnt.h"
23
+ #include "include/core/SkSamplingOptions.h"
24
+ #include "include/core/SkScalar.h"
25
+ #include "include/core/SkSize.h"
26
+ #include "include/core/SkString.h"
27
+ #include "include/core/SkSurfaceProps.h"
28
+ #include "include/core/SkTypes.h"
29
+ #include "include/private/SkDeque.h"
30
+ #include "include/private/SkMacros.h"
31
+
32
+ #include <cstring>
33
+ #include <memory>
34
+ #include <vector>
35
+
36
+ #ifndef SK_SUPPORT_LEGACY_GETTOTALMATRIX
37
+ #define SK_SUPPORT_LEGACY_GETTOTALMATRIX
38
+ #endif
39
+
40
+ class AutoLayerForImageFilter;
41
+ class GrBackendRenderTarget;
42
+ class GrRecordingContext;
43
+ class GrSlug;
44
+ class SkBaseDevice;
45
+ class SkBitmap;
46
+ class SkData;
47
+ class SkDrawable;
48
+ struct SkDrawShadowRec;
49
+ class SkFont;
50
+ class SkGlyphRunBuilder;
51
+ class SkGlyphRunList;
52
+ class SkImage;
53
+ class SkImageFilter;
54
+ class SkPaintFilterCanvas;
55
+ class SkPath;
56
+ class SkPicture;
57
+ class SkPixmap;
58
+ class SkRegion;
59
+ class SkRRect;
60
+ struct SkRSXform;
61
+ struct SkCustomMesh;
62
+ class SkSpecialImage;
63
+ class SkSurface;
64
+ class SkSurface_Base;
65
+ class SkTextBlob;
66
+ class SkVertices;
67
+
68
+ namespace skstd {
69
+ template<typename T> class optional;
70
+ }
71
+
72
+ /** \class SkCanvas
73
+ SkCanvas provides an interface for drawing, and how the drawing is clipped and transformed.
74
+ SkCanvas contains a stack of SkMatrix and clip values.
75
+
76
+ SkCanvas and SkPaint together provide the state to draw into SkSurface or SkBaseDevice.
77
+ Each SkCanvas draw call transforms the geometry of the object by the concatenation of all
78
+ SkMatrix values in the stack. The transformed geometry is clipped by the intersection
79
+ of all of clip values in the stack. The SkCanvas draw calls use SkPaint to supply drawing
80
+ state such as color, SkTypeface, text size, stroke width, SkShader and so on.
81
+
82
+ To draw to a pixel-based destination, create raster surface or GPU surface.
83
+ Request SkCanvas from SkSurface to obtain the interface to draw.
84
+ SkCanvas generated by raster surface draws to memory visible to the CPU.
85
+ SkCanvas generated by GPU surface uses Vulkan or OpenGL to draw to the GPU.
86
+
87
+ To draw to a document, obtain SkCanvas from SVG canvas, document PDF, or SkPictureRecorder.
88
+ SkDocument based SkCanvas and other SkCanvas subclasses reference SkBaseDevice describing the
89
+ destination.
90
+
91
+ SkCanvas can be constructed to draw to SkBitmap without first creating raster surface.
92
+ This approach may be deprecated in the future.
93
+ */
94
+ class SK_API SkCanvas {
95
+ public:
96
+
97
+ /** Allocates raster SkCanvas that will draw directly into pixels.
98
+
99
+ SkCanvas is returned if all parameters are valid.
100
+ Valid parameters include:
101
+ info dimensions are zero or positive;
102
+ info contains SkColorType and SkAlphaType supported by raster surface;
103
+ pixels is not nullptr;
104
+ rowBytes is zero or large enough to contain info width pixels of SkColorType.
105
+
106
+ Pass zero for rowBytes to compute rowBytes from info width and size of pixel.
107
+ If rowBytes is greater than zero, it must be equal to or greater than
108
+ info width times bytes required for SkColorType.
109
+
110
+ Pixel buffer size should be info height times computed rowBytes.
111
+ Pixels are not initialized.
112
+ To access pixels after drawing, call flush() or peekPixels().
113
+
114
+ @param info width, height, SkColorType, SkAlphaType, SkColorSpace, of raster surface;
115
+ width, or height, or both, may be zero
116
+ @param pixels pointer to destination pixels buffer
117
+ @param rowBytes interval from one SkSurface row to the next, or zero
118
+ @param props LCD striping orientation and setting for device independent fonts;
119
+ may be nullptr
120
+ @return SkCanvas if all parameters are valid; otherwise, nullptr
121
+ */
122
+ static std::unique_ptr<SkCanvas> MakeRasterDirect(const SkImageInfo& info, void* pixels,
123
+ size_t rowBytes,
124
+ const SkSurfaceProps* props = nullptr);
125
+
126
+ /** Allocates raster SkCanvas specified by inline image specification. Subsequent SkCanvas
127
+ calls draw into pixels.
128
+ SkColorType is set to kN32_SkColorType.
129
+ SkAlphaType is set to kPremul_SkAlphaType.
130
+ To access pixels after drawing, call flush() or peekPixels().
131
+
132
+ SkCanvas is returned if all parameters are valid.
133
+ Valid parameters include:
134
+ width and height are zero or positive;
135
+ pixels is not nullptr;
136
+ rowBytes is zero or large enough to contain width pixels of kN32_SkColorType.
137
+
138
+ Pass zero for rowBytes to compute rowBytes from width and size of pixel.
139
+ If rowBytes is greater than zero, it must be equal to or greater than
140
+ width times bytes required for SkColorType.
141
+
142
+ Pixel buffer size should be height times rowBytes.
143
+
144
+ @param width pixel column count on raster surface created; must be zero or greater
145
+ @param height pixel row count on raster surface created; must be zero or greater
146
+ @param pixels pointer to destination pixels buffer; buffer size should be height
147
+ times rowBytes
148
+ @param rowBytes interval from one SkSurface row to the next, or zero
149
+ @return SkCanvas if all parameters are valid; otherwise, nullptr
150
+ */
151
+ static std::unique_ptr<SkCanvas> MakeRasterDirectN32(int width, int height, SkPMColor* pixels,
152
+ size_t rowBytes) {
153
+ return MakeRasterDirect(SkImageInfo::MakeN32Premul(width, height), pixels, rowBytes);
154
+ }
155
+
156
+ /** Creates an empty SkCanvas with no backing device or pixels, with
157
+ a width and height of zero.
158
+
159
+ @return empty SkCanvas
160
+
161
+ example: https://fiddle.skia.org/c/@Canvas_empty_constructor
162
+ */
163
+ SkCanvas();
164
+
165
+ /** Creates SkCanvas of the specified dimensions without a SkSurface.
166
+ Used by subclasses with custom implementations for draw member functions.
167
+
168
+ If props equals nullptr, SkSurfaceProps are created with
169
+ SkSurfaceProps::InitType settings, which choose the pixel striping
170
+ direction and order. Since a platform may dynamically change its direction when
171
+ the device is rotated, and since a platform may have multiple monitors with
172
+ different characteristics, it is best not to rely on this legacy behavior.
173
+
174
+ @param width zero or greater
175
+ @param height zero or greater
176
+ @param props LCD striping orientation and setting for device independent fonts;
177
+ may be nullptr
178
+ @return SkCanvas placeholder with dimensions
179
+
180
+ example: https://fiddle.skia.org/c/@Canvas_int_int_const_SkSurfaceProps_star
181
+ */
182
+ SkCanvas(int width, int height, const SkSurfaceProps* props = nullptr);
183
+
184
+ /** Private. For internal use only.
185
+ */
186
+ explicit SkCanvas(sk_sp<SkBaseDevice> device);
187
+
188
+ /** Constructs a canvas that draws into bitmap.
189
+ Sets kUnknown_SkPixelGeometry in constructed SkSurface.
190
+
191
+ SkBitmap is copied so that subsequently editing bitmap will not affect
192
+ constructed SkCanvas.
193
+
194
+ May be deprecated in the future.
195
+
196
+ @param bitmap width, height, SkColorType, SkAlphaType, and pixel
197
+ storage of raster surface
198
+ @return SkCanvas that can be used to draw into bitmap
199
+
200
+ example: https://fiddle.skia.org/c/@Canvas_copy_const_SkBitmap
201
+ */
202
+ explicit SkCanvas(const SkBitmap& bitmap);
203
+
204
+ #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
205
+ /** Private.
206
+ */
207
+ enum class ColorBehavior {
208
+ kLegacy, //!< placeholder
209
+ };
210
+
211
+ /** Private. For use by Android framework only.
212
+
213
+ @param bitmap specifies a bitmap for the canvas to draw into
214
+ @param behavior specializes this constructor; value is unused
215
+ @return SkCanvas that can be used to draw into bitmap
216
+ */
217
+ SkCanvas(const SkBitmap& bitmap, ColorBehavior behavior);
218
+ #endif
219
+
220
+ /** Constructs a canvas that draws into bitmap.
221
+ Use props to match the device characteristics, like LCD striping.
222
+
223
+ bitmap is copied so that subsequently editing bitmap will not affect
224
+ constructed SkCanvas.
225
+
226
+ @param bitmap width, height, SkColorType, SkAlphaType,
227
+ and pixel storage of raster surface
228
+ @param props order and orientation of RGB striping; and whether to use
229
+ device independent fonts
230
+ @return SkCanvas that can be used to draw into bitmap
231
+
232
+ example: https://fiddle.skia.org/c/@Canvas_const_SkBitmap_const_SkSurfaceProps
233
+ */
234
+ SkCanvas(const SkBitmap& bitmap, const SkSurfaceProps& props);
235
+
236
+ /** Draws saved layers, if any.
237
+ Frees up resources used by SkCanvas.
238
+
239
+ example: https://fiddle.skia.org/c/@Canvas_destructor
240
+ */
241
+ virtual ~SkCanvas();
242
+
243
+ /** Returns SkImageInfo for SkCanvas. If SkCanvas is not associated with raster surface or
244
+ GPU surface, returned SkColorType is set to kUnknown_SkColorType.
245
+
246
+ @return dimensions and SkColorType of SkCanvas
247
+
248
+ example: https://fiddle.skia.org/c/@Canvas_imageInfo
249
+ */
250
+ SkImageInfo imageInfo() const;
251
+
252
+ /** Copies SkSurfaceProps, if SkCanvas is associated with raster surface or
253
+ GPU surface, and returns true. Otherwise, returns false and leave props unchanged.
254
+
255
+ @param props storage for writable SkSurfaceProps
256
+ @return true if SkSurfaceProps was copied
257
+
258
+ example: https://fiddle.skia.org/c/@Canvas_getProps
259
+ */
260
+ bool getProps(SkSurfaceProps* props) const;
261
+
262
+ /** Triggers the immediate execution of all pending draw operations.
263
+ If SkCanvas is associated with GPU surface, resolves all pending GPU operations.
264
+ If SkCanvas is associated with raster surface, has no effect; raster draw
265
+ operations are never deferred.
266
+
267
+ DEPRECATED: Replace usage with GrDirectContext::flush()
268
+ */
269
+ void flush();
270
+
271
+ /** Gets the size of the base or root layer in global canvas coordinates. The
272
+ origin of the base layer is always (0,0). The area available for drawing may be
273
+ smaller (due to clipping or saveLayer).
274
+
275
+ @return integral width and height of base layer
276
+
277
+ example: https://fiddle.skia.org/c/@Canvas_getBaseLayerSize
278
+ */
279
+ virtual SkISize getBaseLayerSize() const;
280
+
281
+ /** Creates SkSurface matching info and props, and associates it with SkCanvas.
282
+ Returns nullptr if no match found.
283
+
284
+ If props is nullptr, matches SkSurfaceProps in SkCanvas. If props is nullptr and SkCanvas
285
+ does not have SkSurfaceProps, creates SkSurface with default SkSurfaceProps.
286
+
287
+ @param info width, height, SkColorType, SkAlphaType, and SkColorSpace
288
+ @param props SkSurfaceProps to match; may be nullptr to match SkCanvas
289
+ @return SkSurface matching info and props, or nullptr if no match is available
290
+
291
+ example: https://fiddle.skia.org/c/@Canvas_makeSurface
292
+ */
293
+ sk_sp<SkSurface> makeSurface(const SkImageInfo& info, const SkSurfaceProps* props = nullptr);
294
+
295
+ /** Returns GPU context of the GPU surface associated with SkCanvas.
296
+
297
+ @return GPU context, if available; nullptr otherwise
298
+
299
+ example: https://fiddle.skia.org/c/@Canvas_recordingContext
300
+ */
301
+ virtual GrRecordingContext* recordingContext();
302
+
303
+ /** Sometimes a canvas is owned by a surface. If it is, getSurface() will return a bare
304
+ * pointer to that surface, else this will return nullptr.
305
+ */
306
+ SkSurface* getSurface() const;
307
+
308
+ /** Returns the pixel base address, SkImageInfo, rowBytes, and origin if the pixels
309
+ can be read directly. The returned address is only valid
310
+ while SkCanvas is in scope and unchanged. Any SkCanvas call or SkSurface call
311
+ may invalidate the returned address and other returned values.
312
+
313
+ If pixels are inaccessible, info, rowBytes, and origin are unchanged.
314
+
315
+ @param info storage for writable pixels' SkImageInfo; may be nullptr
316
+ @param rowBytes storage for writable pixels' row bytes; may be nullptr
317
+ @param origin storage for SkCanvas top layer origin, its top-left corner;
318
+ may be nullptr
319
+ @return address of pixels, or nullptr if inaccessible
320
+
321
+ example: https://fiddle.skia.org/c/@Canvas_accessTopLayerPixels_a
322
+ example: https://fiddle.skia.org/c/@Canvas_accessTopLayerPixels_b
323
+ */
324
+ void* accessTopLayerPixels(SkImageInfo* info, size_t* rowBytes, SkIPoint* origin = nullptr);
325
+
326
+ /** Returns custom context that tracks the SkMatrix and clip.
327
+
328
+ Use SkRasterHandleAllocator to blend Skia drawing with custom drawing, typically performed
329
+ by the host platform user interface. The custom context returned is generated by
330
+ SkRasterHandleAllocator::MakeCanvas, which creates a custom canvas with raster storage for
331
+ the drawing destination.
332
+
333
+ @return context of custom allocation
334
+
335
+ example: https://fiddle.skia.org/c/@Canvas_accessTopRasterHandle
336
+ */
337
+ SkRasterHandleAllocator::Handle accessTopRasterHandle() const;
338
+
339
+ /** Returns true if SkCanvas has direct access to its pixels.
340
+
341
+ Pixels are readable when SkBaseDevice is raster. Pixels are not readable when SkCanvas
342
+ is returned from GPU surface, returned by SkDocument::beginPage, returned by
343
+ SkPictureRecorder::beginRecording, or SkCanvas is the base of a utility class
344
+ like DebugCanvas.
345
+
346
+ pixmap is valid only while SkCanvas is in scope and unchanged. Any
347
+ SkCanvas or SkSurface call may invalidate the pixmap values.
348
+
349
+ @param pixmap storage for pixel state if pixels are readable; otherwise, ignored
350
+ @return true if SkCanvas has direct access to pixels
351
+
352
+ example: https://fiddle.skia.org/c/@Canvas_peekPixels
353
+ */
354
+ bool peekPixels(SkPixmap* pixmap);
355
+
356
+ /** Copies SkRect of pixels from SkCanvas into dstPixels. SkMatrix and clip are
357
+ ignored.
358
+
359
+ Source SkRect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()).
360
+ Destination SkRect corners are (0, 0) and (dstInfo.width(), dstInfo.height()).
361
+ Copies each readable pixel intersecting both rectangles, without scaling,
362
+ converting to dstInfo.colorType() and dstInfo.alphaType() if required.
363
+
364
+ Pixels are readable when SkBaseDevice is raster, or backed by a GPU.
365
+ Pixels are not readable when SkCanvas is returned by SkDocument::beginPage,
366
+ returned by SkPictureRecorder::beginRecording, or SkCanvas is the base of a utility
367
+ class like DebugCanvas.
368
+
369
+ The destination pixel storage must be allocated by the caller.
370
+
371
+ Pixel values are converted only if SkColorType and SkAlphaType
372
+ do not match. Only pixels within both source and destination rectangles
373
+ are copied. dstPixels contents outside SkRect intersection are unchanged.
374
+
375
+ Pass negative values for srcX or srcY to offset pixels across or down destination.
376
+
377
+ Does not copy, and returns false if:
378
+ - Source and destination rectangles do not intersect.
379
+ - SkCanvas pixels could not be converted to dstInfo.colorType() or dstInfo.alphaType().
380
+ - SkCanvas pixels are not readable; for instance, SkCanvas is document-based.
381
+ - dstRowBytes is too small to contain one row of pixels.
382
+
383
+ @param dstInfo width, height, SkColorType, and SkAlphaType of dstPixels
384
+ @param dstPixels storage for pixels; dstInfo.height() times dstRowBytes, or larger
385
+ @param dstRowBytes size of one destination row; dstInfo.width() times pixel size, or larger
386
+ @param srcX offset into readable pixels on x-axis; may be negative
387
+ @param srcY offset into readable pixels on y-axis; may be negative
388
+ @return true if pixels were copied
389
+ */
390
+ bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
391
+ int srcX, int srcY);
392
+
393
+ /** Copies SkRect of pixels from SkCanvas into pixmap. SkMatrix and clip are
394
+ ignored.
395
+
396
+ Source SkRect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()).
397
+ Destination SkRect corners are (0, 0) and (pixmap.width(), pixmap.height()).
398
+ Copies each readable pixel intersecting both rectangles, without scaling,
399
+ converting to pixmap.colorType() and pixmap.alphaType() if required.
400
+
401
+ Pixels are readable when SkBaseDevice is raster, or backed by a GPU.
402
+ Pixels are not readable when SkCanvas is returned by SkDocument::beginPage,
403
+ returned by SkPictureRecorder::beginRecording, or SkCanvas is the base of a utility
404
+ class like DebugCanvas.
405
+
406
+ Caller must allocate pixel storage in pixmap if needed.
407
+
408
+ Pixel values are converted only if SkColorType and SkAlphaType
409
+ do not match. Only pixels within both source and destination SkRect
410
+ are copied. pixmap pixels contents outside SkRect intersection are unchanged.
411
+
412
+ Pass negative values for srcX or srcY to offset pixels across or down pixmap.
413
+
414
+ Does not copy, and returns false if:
415
+ - Source and destination rectangles do not intersect.
416
+ - SkCanvas pixels could not be converted to pixmap.colorType() or pixmap.alphaType().
417
+ - SkCanvas pixels are not readable; for instance, SkCanvas is document-based.
418
+ - SkPixmap pixels could not be allocated.
419
+ - pixmap.rowBytes() is too small to contain one row of pixels.
420
+
421
+ @param pixmap storage for pixels copied from SkCanvas
422
+ @param srcX offset into readable pixels on x-axis; may be negative
423
+ @param srcY offset into readable pixels on y-axis; may be negative
424
+ @return true if pixels were copied
425
+
426
+ example: https://fiddle.skia.org/c/@Canvas_readPixels_2
427
+ */
428
+ bool readPixels(const SkPixmap& pixmap, int srcX, int srcY);
429
+
430
+ /** Copies SkRect of pixels from SkCanvas into bitmap. SkMatrix and clip are
431
+ ignored.
432
+
433
+ Source SkRect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()).
434
+ Destination SkRect corners are (0, 0) and (bitmap.width(), bitmap.height()).
435
+ Copies each readable pixel intersecting both rectangles, without scaling,
436
+ converting to bitmap.colorType() and bitmap.alphaType() if required.
437
+
438
+ Pixels are readable when SkBaseDevice is raster, or backed by a GPU.
439
+ Pixels are not readable when SkCanvas is returned by SkDocument::beginPage,
440
+ returned by SkPictureRecorder::beginRecording, or SkCanvas is the base of a utility
441
+ class like DebugCanvas.
442
+
443
+ Caller must allocate pixel storage in bitmap if needed.
444
+
445
+ SkBitmap values are converted only if SkColorType and SkAlphaType
446
+ do not match. Only pixels within both source and destination rectangles
447
+ are copied. SkBitmap pixels outside SkRect intersection are unchanged.
448
+
449
+ Pass negative values for srcX or srcY to offset pixels across or down bitmap.
450
+
451
+ Does not copy, and returns false if:
452
+ - Source and destination rectangles do not intersect.
453
+ - SkCanvas pixels could not be converted to bitmap.colorType() or bitmap.alphaType().
454
+ - SkCanvas pixels are not readable; for instance, SkCanvas is document-based.
455
+ - bitmap pixels could not be allocated.
456
+ - bitmap.rowBytes() is too small to contain one row of pixels.
457
+
458
+ @param bitmap storage for pixels copied from SkCanvas
459
+ @param srcX offset into readable pixels on x-axis; may be negative
460
+ @param srcY offset into readable pixels on y-axis; may be negative
461
+ @return true if pixels were copied
462
+
463
+ example: https://fiddle.skia.org/c/@Canvas_readPixels_3
464
+ */
465
+ bool readPixels(const SkBitmap& bitmap, int srcX, int srcY);
466
+
467
+ /** Copies SkRect from pixels to SkCanvas. SkMatrix and clip are ignored.
468
+ Source SkRect corners are (0, 0) and (info.width(), info.height()).
469
+ Destination SkRect corners are (x, y) and
470
+ (imageInfo().width(), imageInfo().height()).
471
+
472
+ Copies each readable pixel intersecting both rectangles, without scaling,
473
+ converting to imageInfo().colorType() and imageInfo().alphaType() if required.
474
+
475
+ Pixels are writable when SkBaseDevice is raster, or backed by a GPU.
476
+ Pixels are not writable when SkCanvas is returned by SkDocument::beginPage,
477
+ returned by SkPictureRecorder::beginRecording, or SkCanvas is the base of a utility
478
+ class like DebugCanvas.
479
+
480
+ Pixel values are converted only if SkColorType and SkAlphaType
481
+ do not match. Only pixels within both source and destination rectangles
482
+ are copied. SkCanvas pixels outside SkRect intersection are unchanged.
483
+
484
+ Pass negative values for x or y to offset pixels to the left or
485
+ above SkCanvas pixels.
486
+
487
+ Does not copy, and returns false if:
488
+ - Source and destination rectangles do not intersect.
489
+ - pixels could not be converted to SkCanvas imageInfo().colorType() or
490
+ imageInfo().alphaType().
491
+ - SkCanvas pixels are not writable; for instance, SkCanvas is document-based.
492
+ - rowBytes is too small to contain one row of pixels.
493
+
494
+ @param info width, height, SkColorType, and SkAlphaType of pixels
495
+ @param pixels pixels to copy, of size info.height() times rowBytes, or larger
496
+ @param rowBytes size of one row of pixels; info.width() times pixel size, or larger
497
+ @param x offset into SkCanvas writable pixels on x-axis; may be negative
498
+ @param y offset into SkCanvas writable pixels on y-axis; may be negative
499
+ @return true if pixels were written to SkCanvas
500
+
501
+ example: https://fiddle.skia.org/c/@Canvas_writePixels
502
+ */
503
+ bool writePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes, int x, int y);
504
+
505
+ /** Copies SkRect from pixels to SkCanvas. SkMatrix and clip are ignored.
506
+ Source SkRect corners are (0, 0) and (bitmap.width(), bitmap.height()).
507
+
508
+ Destination SkRect corners are (x, y) and
509
+ (imageInfo().width(), imageInfo().height()).
510
+
511
+ Copies each readable pixel intersecting both rectangles, without scaling,
512
+ converting to imageInfo().colorType() and imageInfo().alphaType() if required.
513
+
514
+ Pixels are writable when SkBaseDevice is raster, or backed by a GPU.
515
+ Pixels are not writable when SkCanvas is returned by SkDocument::beginPage,
516
+ returned by SkPictureRecorder::beginRecording, or SkCanvas is the base of a utility
517
+ class like DebugCanvas.
518
+
519
+ Pixel values are converted only if SkColorType and SkAlphaType
520
+ do not match. Only pixels within both source and destination rectangles
521
+ are copied. SkCanvas pixels outside SkRect intersection are unchanged.
522
+
523
+ Pass negative values for x or y to offset pixels to the left or
524
+ above SkCanvas pixels.
525
+
526
+ Does not copy, and returns false if:
527
+ - Source and destination rectangles do not intersect.
528
+ - bitmap does not have allocated pixels.
529
+ - bitmap pixels could not be converted to SkCanvas imageInfo().colorType() or
530
+ imageInfo().alphaType().
531
+ - SkCanvas pixels are not writable; for instance, SkCanvas is document based.
532
+ - bitmap pixels are inaccessible; for instance, bitmap wraps a texture.
533
+
534
+ @param bitmap contains pixels copied to SkCanvas
535
+ @param x offset into SkCanvas writable pixels on x-axis; may be negative
536
+ @param y offset into SkCanvas writable pixels on y-axis; may be negative
537
+ @return true if pixels were written to SkCanvas
538
+
539
+ example: https://fiddle.skia.org/c/@Canvas_writePixels_2
540
+ example: https://fiddle.skia.org/c/@State_Stack_a
541
+ example: https://fiddle.skia.org/c/@State_Stack_b
542
+ */
543
+ bool writePixels(const SkBitmap& bitmap, int x, int y);
544
+
545
+ /** Saves SkMatrix and clip.
546
+ Calling restore() discards changes to SkMatrix and clip,
547
+ restoring the SkMatrix and clip to their state when save() was called.
548
+
549
+ SkMatrix may be changed by translate(), scale(), rotate(), skew(), concat(), setMatrix(),
550
+ and resetMatrix(). Clip may be changed by clipRect(), clipRRect(), clipPath(), clipRegion().
551
+
552
+ Saved SkCanvas state is put on a stack; multiple calls to save() should be balance
553
+ by an equal number of calls to restore().
554
+
555
+ Call restoreToCount() with result to restore this and subsequent saves.
556
+
557
+ @return depth of saved stack
558
+
559
+ example: https://fiddle.skia.org/c/@Canvas_save
560
+ */
561
+ int save();
562
+
563
+ /** Saves SkMatrix and clip, and allocates a SkBitmap for subsequent drawing.
564
+ Calling restore() discards changes to SkMatrix and clip, and draws the SkBitmap.
565
+
566
+ SkMatrix may be changed by translate(), scale(), rotate(), skew(), concat(),
567
+ setMatrix(), and resetMatrix(). Clip may be changed by clipRect(), clipRRect(),
568
+ clipPath(), clipRegion().
569
+
570
+ SkRect bounds suggests but does not define the SkBitmap size. To clip drawing to
571
+ a specific rectangle, use clipRect().
572
+
573
+ Optional SkPaint paint applies alpha, SkColorFilter, SkImageFilter, and
574
+ SkBlendMode when restore() is called.
575
+
576
+ Call restoreToCount() with returned value to restore this and subsequent saves.
577
+
578
+ @param bounds hint to limit the size of the layer; may be nullptr
579
+ @param paint graphics state for layer; may be nullptr
580
+ @return depth of saved stack
581
+
582
+ example: https://fiddle.skia.org/c/@Canvas_saveLayer
583
+ example: https://fiddle.skia.org/c/@Canvas_saveLayer_4
584
+ */
585
+ int saveLayer(const SkRect* bounds, const SkPaint* paint);
586
+
587
+ /** Saves SkMatrix and clip, and allocates a SkBitmap for subsequent drawing.
588
+ Calling restore() discards changes to SkMatrix and clip, and draws the SkBitmap.
589
+
590
+ SkMatrix may be changed by translate(), scale(), rotate(), skew(), concat(),
591
+ setMatrix(), and resetMatrix(). Clip may be changed by clipRect(), clipRRect(),
592
+ clipPath(), clipRegion().
593
+
594
+ SkRect bounds suggests but does not define the layer size. To clip drawing to
595
+ a specific rectangle, use clipRect().
596
+
597
+ Optional SkPaint paint applies alpha, SkColorFilter, SkImageFilter, and
598
+ SkBlendMode when restore() is called.
599
+
600
+ Call restoreToCount() with returned value to restore this and subsequent saves.
601
+
602
+ @param bounds hint to limit the size of layer; may be nullptr
603
+ @param paint graphics state for layer; may be nullptr
604
+ @return depth of saved stack
605
+ */
606
+ int saveLayer(const SkRect& bounds, const SkPaint* paint) {
607
+ return this->saveLayer(&bounds, paint);
608
+ }
609
+
610
+ /** Saves SkMatrix and clip, and allocates SkBitmap for subsequent drawing.
611
+
612
+ Calling restore() discards changes to SkMatrix and clip,
613
+ and blends layer with alpha opacity onto prior layer.
614
+
615
+ SkMatrix may be changed by translate(), scale(), rotate(), skew(), concat(),
616
+ setMatrix(), and resetMatrix(). Clip may be changed by clipRect(), clipRRect(),
617
+ clipPath(), clipRegion().
618
+
619
+ SkRect bounds suggests but does not define layer size. To clip drawing to
620
+ a specific rectangle, use clipRect().
621
+
622
+ alpha of zero is fully transparent, 255 is fully opaque.
623
+
624
+ Call restoreToCount() with returned value to restore this and subsequent saves.
625
+
626
+ @param bounds hint to limit the size of layer; may be nullptr
627
+ @param alpha opacity of layer
628
+ @return depth of saved stack
629
+
630
+ example: https://fiddle.skia.org/c/@Canvas_saveLayerAlpha
631
+ */
632
+ int saveLayerAlpha(const SkRect* bounds, U8CPU alpha);
633
+
634
+ /** \enum SkCanvas::SaveLayerFlagsSet
635
+ SaveLayerFlags provides options that may be used in any combination in SaveLayerRec,
636
+ defining how layer allocated by saveLayer() operates. It may be set to zero,
637
+ kPreserveLCDText_SaveLayerFlag, kInitWithPrevious_SaveLayerFlag, or both flags.
638
+ */
639
+ enum SaveLayerFlagsSet {
640
+ kPreserveLCDText_SaveLayerFlag = 1 << 1,
641
+ kInitWithPrevious_SaveLayerFlag = 1 << 2, //!< initializes with previous contents
642
+ // instead of matching previous layer's colortype, use F16
643
+ kF16ColorType = 1 << 4,
644
+ };
645
+
646
+ typedef uint32_t SaveLayerFlags;
647
+
648
+ /** \struct SkCanvas::SaveLayerRec
649
+ SaveLayerRec contains the state used to create the layer.
650
+ */
651
+ struct SaveLayerRec {
652
+ /** Sets fBounds, fPaint, and fBackdrop to nullptr. Clears fSaveLayerFlags.
653
+
654
+ @return empty SaveLayerRec
655
+ */
656
+ SaveLayerRec() {}
657
+
658
+ /** Sets fBounds, fPaint, and fSaveLayerFlags; sets fBackdrop to nullptr.
659
+
660
+ @param bounds layer dimensions; may be nullptr
661
+ @param paint applied to layer when overlaying prior layer; may be nullptr
662
+ @param saveLayerFlags SaveLayerRec options to modify layer
663
+ @return SaveLayerRec with empty fBackdrop
664
+ */
665
+ SaveLayerRec(const SkRect* bounds, const SkPaint* paint, SaveLayerFlags saveLayerFlags = 0)
666
+ : SaveLayerRec(bounds, paint, nullptr, 1.f, saveLayerFlags) {}
667
+
668
+ /** Sets fBounds, fPaint, fBackdrop, and fSaveLayerFlags.
669
+
670
+ @param bounds layer dimensions; may be nullptr
671
+ @param paint applied to layer when overlaying prior layer;
672
+ may be nullptr
673
+ @param backdrop If not null, this causes the current layer to be filtered by
674
+ backdrop, and then drawn into the new layer
675
+ (respecting the current clip).
676
+ If null, the new layer is initialized with transparent-black.
677
+ @param saveLayerFlags SaveLayerRec options to modify layer
678
+ @return SaveLayerRec fully specified
679
+ */
680
+ SaveLayerRec(const SkRect* bounds, const SkPaint* paint, const SkImageFilter* backdrop,
681
+ SaveLayerFlags saveLayerFlags)
682
+ : SaveLayerRec(bounds, paint, backdrop, 1.f, saveLayerFlags) {}
683
+
684
+ /** hints at layer size limit */
685
+ const SkRect* fBounds = nullptr;
686
+
687
+ /** modifies overlay */
688
+ const SkPaint* fPaint = nullptr;
689
+
690
+ /**
691
+ * If not null, this triggers the same initialization behavior as setting
692
+ * kInitWithPrevious_SaveLayerFlag on fSaveLayerFlags: the current layer is copied into
693
+ * the new layer, rather than initializing the new layer with transparent-black.
694
+ * This is then filtered by fBackdrop (respecting the current clip).
695
+ */
696
+ const SkImageFilter* fBackdrop = nullptr;
697
+
698
+ /** preserves LCD text, creates with prior layer contents */
699
+ SaveLayerFlags fSaveLayerFlags = 0;
700
+
701
+ private:
702
+ friend class SkCanvas;
703
+ friend class SkCanvasPriv;
704
+
705
+ SaveLayerRec(const SkRect* bounds, const SkPaint* paint, const SkImageFilter* backdrop,
706
+ SkScalar backdropScale, SaveLayerFlags saveLayerFlags)
707
+ : fBounds(bounds)
708
+ , fPaint(paint)
709
+ , fBackdrop(backdrop)
710
+ , fSaveLayerFlags(saveLayerFlags)
711
+ , fExperimentalBackdropScale(backdropScale) {}
712
+
713
+ // Relative scale factor that the image content used to initialize the layer when the
714
+ // kInitFromPrevious flag or a backdrop filter is used.
715
+ SkScalar fExperimentalBackdropScale = 1.f;
716
+ };
717
+
718
+ /** Saves SkMatrix and clip, and allocates SkBitmap for subsequent drawing.
719
+
720
+ Calling restore() discards changes to SkMatrix and clip,
721
+ and blends SkBitmap with alpha opacity onto the prior layer.
722
+
723
+ SkMatrix may be changed by translate(), scale(), rotate(), skew(), concat(),
724
+ setMatrix(), and resetMatrix(). Clip may be changed by clipRect(), clipRRect(),
725
+ clipPath(), clipRegion().
726
+
727
+ SaveLayerRec contains the state used to create the layer.
728
+
729
+ Call restoreToCount() with returned value to restore this and subsequent saves.
730
+
731
+ @param layerRec layer state
732
+ @return depth of save state stack before this call was made.
733
+
734
+ example: https://fiddle.skia.org/c/@Canvas_saveLayer_3
735
+ */
736
+ int saveLayer(const SaveLayerRec& layerRec);
737
+
738
+ /** Removes changes to SkMatrix and clip since SkCanvas state was
739
+ last saved. The state is removed from the stack.
740
+
741
+ Does nothing if the stack is empty.
742
+
743
+ example: https://fiddle.skia.org/c/@AutoCanvasRestore_restore
744
+
745
+ example: https://fiddle.skia.org/c/@Canvas_restore
746
+ */
747
+ void restore();
748
+
749
+ /** Returns the number of saved states, each containing: SkMatrix and clip.
750
+ Equals the number of save() calls less the number of restore() calls plus one.
751
+ The save count of a new canvas is one.
752
+
753
+ @return depth of save state stack
754
+
755
+ example: https://fiddle.skia.org/c/@Canvas_getSaveCount
756
+ */
757
+ int getSaveCount() const;
758
+
759
+ /** Restores state to SkMatrix and clip values when save(), saveLayer(),
760
+ saveLayerPreserveLCDTextRequests(), or saveLayerAlpha() returned saveCount.
761
+
762
+ Does nothing if saveCount is greater than state stack count.
763
+ Restores state to initial values if saveCount is less than or equal to one.
764
+
765
+ @param saveCount depth of state stack to restore
766
+
767
+ example: https://fiddle.skia.org/c/@Canvas_restoreToCount
768
+ */
769
+ void restoreToCount(int saveCount);
770
+
771
+ /** Translates SkMatrix by dx along the x-axis and dy along the y-axis.
772
+
773
+ Mathematically, replaces SkMatrix with a translation matrix
774
+ premultiplied with SkMatrix.
775
+
776
+ This has the effect of moving the drawing by (dx, dy) before transforming
777
+ the result with SkMatrix.
778
+
779
+ @param dx distance to translate on x-axis
780
+ @param dy distance to translate on y-axis
781
+
782
+ example: https://fiddle.skia.org/c/@Canvas_translate
783
+ */
784
+ void translate(SkScalar dx, SkScalar dy);
785
+
786
+ /** Scales SkMatrix by sx on the x-axis and sy on the y-axis.
787
+
788
+ Mathematically, replaces SkMatrix with a scale matrix
789
+ premultiplied with SkMatrix.
790
+
791
+ This has the effect of scaling the drawing by (sx, sy) before transforming
792
+ the result with SkMatrix.
793
+
794
+ @param sx amount to scale on x-axis
795
+ @param sy amount to scale on y-axis
796
+
797
+ example: https://fiddle.skia.org/c/@Canvas_scale
798
+ */
799
+ void scale(SkScalar sx, SkScalar sy);
800
+
801
+ /** Rotates SkMatrix by degrees. Positive degrees rotates clockwise.
802
+
803
+ Mathematically, replaces SkMatrix with a rotation matrix
804
+ premultiplied with SkMatrix.
805
+
806
+ This has the effect of rotating the drawing by degrees before transforming
807
+ the result with SkMatrix.
808
+
809
+ @param degrees amount to rotate, in degrees
810
+
811
+ example: https://fiddle.skia.org/c/@Canvas_rotate
812
+ */
813
+ void rotate(SkScalar degrees);
814
+
815
+ /** Rotates SkMatrix by degrees about a point at (px, py). Positive degrees rotates
816
+ clockwise.
817
+
818
+ Mathematically, constructs a rotation matrix; premultiplies the rotation matrix by
819
+ a translation matrix; then replaces SkMatrix with the resulting matrix
820
+ premultiplied with SkMatrix.
821
+
822
+ This has the effect of rotating the drawing about a given point before
823
+ transforming the result with SkMatrix.
824
+
825
+ @param degrees amount to rotate, in degrees
826
+ @param px x-axis value of the point to rotate about
827
+ @param py y-axis value of the point to rotate about
828
+
829
+ example: https://fiddle.skia.org/c/@Canvas_rotate_2
830
+ */
831
+ void rotate(SkScalar degrees, SkScalar px, SkScalar py);
832
+
833
+ /** Skews SkMatrix by sx on the x-axis and sy on the y-axis. A positive value of sx
834
+ skews the drawing right as y-axis values increase; a positive value of sy skews
835
+ the drawing down as x-axis values increase.
836
+
837
+ Mathematically, replaces SkMatrix with a skew matrix premultiplied with SkMatrix.
838
+
839
+ This has the effect of skewing the drawing by (sx, sy) before transforming
840
+ the result with SkMatrix.
841
+
842
+ @param sx amount to skew on x-axis
843
+ @param sy amount to skew on y-axis
844
+
845
+ example: https://fiddle.skia.org/c/@Canvas_skew
846
+ */
847
+ void skew(SkScalar sx, SkScalar sy);
848
+
849
+ /** Replaces SkMatrix with matrix premultiplied with existing SkMatrix.
850
+
851
+ This has the effect of transforming the drawn geometry by matrix, before
852
+ transforming the result with existing SkMatrix.
853
+
854
+ @param matrix matrix to premultiply with existing SkMatrix
855
+
856
+ example: https://fiddle.skia.org/c/@Canvas_concat
857
+ */
858
+ void concat(const SkMatrix& matrix);
859
+ void concat(const SkM44&);
860
+
861
+ /** Replaces SkMatrix with matrix.
862
+ Unlike concat(), any prior matrix state is overwritten.
863
+
864
+ @param matrix matrix to copy, replacing existing SkMatrix
865
+
866
+ example: https://fiddle.skia.org/c/@Canvas_setMatrix
867
+ */
868
+ void setMatrix(const SkM44& matrix);
869
+
870
+ // DEPRECATED -- use SkM44 version
871
+ void setMatrix(const SkMatrix& matrix);
872
+
873
+ /** Sets SkMatrix to the identity matrix.
874
+ Any prior matrix state is overwritten.
875
+
876
+ example: https://fiddle.skia.org/c/@Canvas_resetMatrix
877
+ */
878
+ void resetMatrix();
879
+
880
+ /** Replaces clip with the intersection or difference of clip and rect,
881
+ with an aliased or anti-aliased clip edge. rect is transformed by SkMatrix
882
+ before it is combined with clip.
883
+
884
+ @param rect SkRect to combine with clip
885
+ @param op SkClipOp to apply to clip
886
+ @param doAntiAlias true if clip is to be anti-aliased
887
+
888
+ example: https://fiddle.skia.org/c/@Canvas_clipRect
889
+ */
890
+ void clipRect(const SkRect& rect, SkClipOp op, bool doAntiAlias);
891
+
892
+ /** Replaces clip with the intersection or difference of clip and rect.
893
+ Resulting clip is aliased; pixels are fully contained by the clip.
894
+ rect is transformed by SkMatrix before it is combined with clip.
895
+
896
+ @param rect SkRect to combine with clip
897
+ @param op SkClipOp to apply to clip
898
+ */
899
+ void clipRect(const SkRect& rect, SkClipOp op) {
900
+ this->clipRect(rect, op, false);
901
+ }
902
+
903
+ /** Replaces clip with the intersection of clip and rect.
904
+ Resulting clip is aliased; pixels are fully contained by the clip.
905
+ rect is transformed by SkMatrix
906
+ before it is combined with clip.
907
+
908
+ @param rect SkRect to combine with clip
909
+ @param doAntiAlias true if clip is to be anti-aliased
910
+ */
911
+ void clipRect(const SkRect& rect, bool doAntiAlias = false) {
912
+ this->clipRect(rect, SkClipOp::kIntersect, doAntiAlias);
913
+ }
914
+
915
+ void clipIRect(const SkIRect& irect, SkClipOp op = SkClipOp::kIntersect) {
916
+ this->clipRect(SkRect::Make(irect), op, false);
917
+ }
918
+
919
+ /** Sets the maximum clip rectangle, which can be set by clipRect(), clipRRect() and
920
+ clipPath() and intersect the current clip with the specified rect.
921
+ The maximum clip affects only future clipping operations; it is not retroactive.
922
+ The clip restriction is not recorded in pictures.
923
+
924
+ Pass an empty rect to disable maximum clip.
925
+ This private API is for use by Android framework only.
926
+
927
+ DEPRECATED: Replace usage with SkAndroidFrameworkUtils::replaceClip()
928
+
929
+ @param rect maximum allowed clip in device coordinates
930
+ */
931
+ void androidFramework_setDeviceClipRestriction(const SkIRect& rect);
932
+
933
+ /** Replaces clip with the intersection or difference of clip and rrect,
934
+ with an aliased or anti-aliased clip edge.
935
+ rrect is transformed by SkMatrix
936
+ before it is combined with clip.
937
+
938
+ @param rrect SkRRect to combine with clip
939
+ @param op SkClipOp to apply to clip
940
+ @param doAntiAlias true if clip is to be anti-aliased
941
+
942
+ example: https://fiddle.skia.org/c/@Canvas_clipRRect
943
+ */
944
+ void clipRRect(const SkRRect& rrect, SkClipOp op, bool doAntiAlias);
945
+
946
+ /** Replaces clip with the intersection or difference of clip and rrect.
947
+ Resulting clip is aliased; pixels are fully contained by the clip.
948
+ rrect is transformed by SkMatrix before it is combined with clip.
949
+
950
+ @param rrect SkRRect to combine with clip
951
+ @param op SkClipOp to apply to clip
952
+ */
953
+ void clipRRect(const SkRRect& rrect, SkClipOp op) {
954
+ this->clipRRect(rrect, op, false);
955
+ }
956
+
957
+ /** Replaces clip with the intersection of clip and rrect,
958
+ with an aliased or anti-aliased clip edge.
959
+ rrect is transformed by SkMatrix before it is combined with clip.
960
+
961
+ @param rrect SkRRect to combine with clip
962
+ @param doAntiAlias true if clip is to be anti-aliased
963
+ */
964
+ void clipRRect(const SkRRect& rrect, bool doAntiAlias = false) {
965
+ this->clipRRect(rrect, SkClipOp::kIntersect, doAntiAlias);
966
+ }
967
+
968
+ /** Replaces clip with the intersection or difference of clip and path,
969
+ with an aliased or anti-aliased clip edge. SkPath::FillType determines if path
970
+ describes the area inside or outside its contours; and if path contour overlaps
971
+ itself or another path contour, whether the overlaps form part of the area.
972
+ path is transformed by SkMatrix before it is combined with clip.
973
+
974
+ @param path SkPath to combine with clip
975
+ @param op SkClipOp to apply to clip
976
+ @param doAntiAlias true if clip is to be anti-aliased
977
+
978
+ example: https://fiddle.skia.org/c/@Canvas_clipPath
979
+ */
980
+ void clipPath(const SkPath& path, SkClipOp op, bool doAntiAlias);
981
+
982
+ /** Replaces clip with the intersection or difference of clip and path.
983
+ Resulting clip is aliased; pixels are fully contained by the clip.
984
+ SkPath::FillType determines if path
985
+ describes the area inside or outside its contours; and if path contour overlaps
986
+ itself or another path contour, whether the overlaps form part of the area.
987
+ path is transformed by SkMatrix
988
+ before it is combined with clip.
989
+
990
+ @param path SkPath to combine with clip
991
+ @param op SkClipOp to apply to clip
992
+ */
993
+ void clipPath(const SkPath& path, SkClipOp op) {
994
+ this->clipPath(path, op, false);
995
+ }
996
+
997
+ /** Replaces clip with the intersection of clip and path.
998
+ Resulting clip is aliased; pixels are fully contained by the clip.
999
+ SkPath::FillType determines if path
1000
+ describes the area inside or outside its contours; and if path contour overlaps
1001
+ itself or another path contour, whether the overlaps form part of the area.
1002
+ path is transformed by SkMatrix before it is combined with clip.
1003
+
1004
+ @param path SkPath to combine with clip
1005
+ @param doAntiAlias true if clip is to be anti-aliased
1006
+ */
1007
+ void clipPath(const SkPath& path, bool doAntiAlias = false) {
1008
+ this->clipPath(path, SkClipOp::kIntersect, doAntiAlias);
1009
+ }
1010
+
1011
+ void clipShader(sk_sp<SkShader>, SkClipOp = SkClipOp::kIntersect);
1012
+
1013
+ /** Replaces clip with the intersection or difference of clip and SkRegion deviceRgn.
1014
+ Resulting clip is aliased; pixels are fully contained by the clip.
1015
+ deviceRgn is unaffected by SkMatrix.
1016
+
1017
+ @param deviceRgn SkRegion to combine with clip
1018
+ @param op SkClipOp to apply to clip
1019
+
1020
+ example: https://fiddle.skia.org/c/@Canvas_clipRegion
1021
+ */
1022
+ void clipRegion(const SkRegion& deviceRgn, SkClipOp op = SkClipOp::kIntersect);
1023
+
1024
+ /** Returns true if SkRect rect, transformed by SkMatrix, can be quickly determined to be
1025
+ outside of clip. May return false even though rect is outside of clip.
1026
+
1027
+ Use to check if an area to be drawn is clipped out, to skip subsequent draw calls.
1028
+
1029
+ @param rect SkRect to compare with clip
1030
+ @return true if rect, transformed by SkMatrix, does not intersect clip
1031
+
1032
+ example: https://fiddle.skia.org/c/@Canvas_quickReject
1033
+ */
1034
+ bool quickReject(const SkRect& rect) const;
1035
+
1036
+ /** Returns true if path, transformed by SkMatrix, can be quickly determined to be
1037
+ outside of clip. May return false even though path is outside of clip.
1038
+
1039
+ Use to check if an area to be drawn is clipped out, to skip subsequent draw calls.
1040
+
1041
+ @param path SkPath to compare with clip
1042
+ @return true if path, transformed by SkMatrix, does not intersect clip
1043
+
1044
+ example: https://fiddle.skia.org/c/@Canvas_quickReject_2
1045
+ */
1046
+ bool quickReject(const SkPath& path) const;
1047
+
1048
+ /** Returns bounds of clip, transformed by inverse of SkMatrix. If clip is empty,
1049
+ return SkRect::MakeEmpty, where all SkRect sides equal zero.
1050
+
1051
+ SkRect returned is outset by one to account for partial pixel coverage if clip
1052
+ is anti-aliased.
1053
+
1054
+ @return bounds of clip in local coordinates
1055
+
1056
+ example: https://fiddle.skia.org/c/@Canvas_getLocalClipBounds
1057
+ */
1058
+ SkRect getLocalClipBounds() const;
1059
+
1060
+ /** Returns bounds of clip, transformed by inverse of SkMatrix. If clip is empty,
1061
+ return false, and set bounds to SkRect::MakeEmpty, where all SkRect sides equal zero.
1062
+
1063
+ bounds is outset by one to account for partial pixel coverage if clip
1064
+ is anti-aliased.
1065
+
1066
+ @param bounds SkRect of clip in local coordinates
1067
+ @return true if clip bounds is not empty
1068
+ */
1069
+ bool getLocalClipBounds(SkRect* bounds) const {
1070
+ *bounds = this->getLocalClipBounds();
1071
+ return !bounds->isEmpty();
1072
+ }
1073
+
1074
+ /** Returns SkIRect bounds of clip, unaffected by SkMatrix. If clip is empty,
1075
+ return SkRect::MakeEmpty, where all SkRect sides equal zero.
1076
+
1077
+ Unlike getLocalClipBounds(), returned SkIRect is not outset.
1078
+
1079
+ @return bounds of clip in SkBaseDevice coordinates
1080
+
1081
+ example: https://fiddle.skia.org/c/@Canvas_getDeviceClipBounds
1082
+ */
1083
+ SkIRect getDeviceClipBounds() const;
1084
+
1085
+ /** Returns SkIRect bounds of clip, unaffected by SkMatrix. If clip is empty,
1086
+ return false, and set bounds to SkRect::MakeEmpty, where all SkRect sides equal zero.
1087
+
1088
+ Unlike getLocalClipBounds(), bounds is not outset.
1089
+
1090
+ @param bounds SkRect of clip in device coordinates
1091
+ @return true if clip bounds is not empty
1092
+ */
1093
+ bool getDeviceClipBounds(SkIRect* bounds) const {
1094
+ *bounds = this->getDeviceClipBounds();
1095
+ return !bounds->isEmpty();
1096
+ }
1097
+
1098
+ /** Fills clip with color color.
1099
+ mode determines how ARGB is combined with destination.
1100
+
1101
+ @param color unpremultiplied ARGB
1102
+ @param mode SkBlendMode used to combine source color and destination
1103
+
1104
+ example: https://fiddle.skia.org/c/@Canvas_drawColor
1105
+ */
1106
+ void drawColor(SkColor color, SkBlendMode mode = SkBlendMode::kSrcOver) {
1107
+ this->drawColor(SkColor4f::FromColor(color), mode);
1108
+ }
1109
+
1110
+ /** Fills clip with color color.
1111
+ mode determines how ARGB is combined with destination.
1112
+
1113
+ @param color SkColor4f representing unpremultiplied color.
1114
+ @param mode SkBlendMode used to combine source color and destination
1115
+ */
1116
+ void drawColor(const SkColor4f& color, SkBlendMode mode = SkBlendMode::kSrcOver);
1117
+
1118
+ /** Fills clip with color color using SkBlendMode::kSrc.
1119
+ This has the effect of replacing all pixels contained by clip with color.
1120
+
1121
+ @param color unpremultiplied ARGB
1122
+ */
1123
+ void clear(SkColor color) {
1124
+ this->clear(SkColor4f::FromColor(color));
1125
+ }
1126
+
1127
+ /** Fills clip with color color using SkBlendMode::kSrc.
1128
+ This has the effect of replacing all pixels contained by clip with color.
1129
+
1130
+ @param color SkColor4f representing unpremultiplied color.
1131
+ */
1132
+ void clear(const SkColor4f& color) {
1133
+ this->drawColor(color, SkBlendMode::kSrc);
1134
+ }
1135
+
1136
+ /** Makes SkCanvas contents undefined. Subsequent calls that read SkCanvas pixels,
1137
+ such as drawing with SkBlendMode, return undefined results. discard() does
1138
+ not change clip or SkMatrix.
1139
+
1140
+ discard() may do nothing, depending on the implementation of SkSurface or SkBaseDevice
1141
+ that created SkCanvas.
1142
+
1143
+ discard() allows optimized performance on subsequent draws by removing
1144
+ cached data associated with SkSurface or SkBaseDevice.
1145
+ It is not necessary to call discard() once done with SkCanvas;
1146
+ any cached data is deleted when owning SkSurface or SkBaseDevice is deleted.
1147
+ */
1148
+ void discard() { this->onDiscard(); }
1149
+
1150
+ /** Fills clip with SkPaint paint. SkPaint components, SkShader,
1151
+ SkColorFilter, SkImageFilter, and SkBlendMode affect drawing;
1152
+ SkMaskFilter and SkPathEffect in paint are ignored.
1153
+
1154
+ @param paint graphics state used to fill SkCanvas
1155
+
1156
+ example: https://fiddle.skia.org/c/@Canvas_drawPaint
1157
+ */
1158
+ void drawPaint(const SkPaint& paint);
1159
+
1160
+ /** \enum SkCanvas::PointMode
1161
+ Selects if an array of points are drawn as discrete points, as lines, or as
1162
+ an open polygon.
1163
+ */
1164
+ enum PointMode {
1165
+ kPoints_PointMode, //!< draw each point separately
1166
+ kLines_PointMode, //!< draw each pair of points as a line segment
1167
+ kPolygon_PointMode, //!< draw the array of points as a open polygon
1168
+ };
1169
+
1170
+ /** Draws pts using clip, SkMatrix and SkPaint paint.
1171
+ count is the number of points; if count is less than one, has no effect.
1172
+ mode may be one of: kPoints_PointMode, kLines_PointMode, or kPolygon_PointMode.
1173
+
1174
+ If mode is kPoints_PointMode, the shape of point drawn depends on paint
1175
+ SkPaint::Cap. If paint is set to SkPaint::kRound_Cap, each point draws a
1176
+ circle of diameter SkPaint stroke width. If paint is set to SkPaint::kSquare_Cap
1177
+ or SkPaint::kButt_Cap, each point draws a square of width and height
1178
+ SkPaint stroke width.
1179
+
1180
+ If mode is kLines_PointMode, each pair of points draws a line segment.
1181
+ One line is drawn for every two points; each point is used once. If count is odd,
1182
+ the final point is ignored.
1183
+
1184
+ If mode is kPolygon_PointMode, each adjacent pair of points draws a line segment.
1185
+ count minus one lines are drawn; the first and last point are used once.
1186
+
1187
+ Each line segment respects paint SkPaint::Cap and SkPaint stroke width.
1188
+ SkPaint::Style is ignored, as if were set to SkPaint::kStroke_Style.
1189
+
1190
+ Always draws each element one at a time; is not affected by
1191
+ SkPaint::Join, and unlike drawPath(), does not create a mask from all points
1192
+ and lines before drawing.
1193
+
1194
+ @param mode whether pts draws points or lines
1195
+ @param count number of points in the array
1196
+ @param pts array of points to draw
1197
+ @param paint stroke, blend, color, and so on, used to draw
1198
+
1199
+ example: https://fiddle.skia.org/c/@Canvas_drawPoints
1200
+ */
1201
+ void drawPoints(PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint);
1202
+
1203
+ /** Draws point at (x, y) using clip, SkMatrix and SkPaint paint.
1204
+
1205
+ The shape of point drawn depends on paint SkPaint::Cap.
1206
+ If paint is set to SkPaint::kRound_Cap, draw a circle of diameter
1207
+ SkPaint stroke width. If paint is set to SkPaint::kSquare_Cap or SkPaint::kButt_Cap,
1208
+ draw a square of width and height SkPaint stroke width.
1209
+ SkPaint::Style is ignored, as if were set to SkPaint::kStroke_Style.
1210
+
1211
+ @param x left edge of circle or square
1212
+ @param y top edge of circle or square
1213
+ @param paint stroke, blend, color, and so on, used to draw
1214
+
1215
+ example: https://fiddle.skia.org/c/@Canvas_drawPoint
1216
+ */
1217
+ void drawPoint(SkScalar x, SkScalar y, const SkPaint& paint);
1218
+
1219
+ /** Draws point p using clip, SkMatrix and SkPaint paint.
1220
+
1221
+ The shape of point drawn depends on paint SkPaint::Cap.
1222
+ If paint is set to SkPaint::kRound_Cap, draw a circle of diameter
1223
+ SkPaint stroke width. If paint is set to SkPaint::kSquare_Cap or SkPaint::kButt_Cap,
1224
+ draw a square of width and height SkPaint stroke width.
1225
+ SkPaint::Style is ignored, as if were set to SkPaint::kStroke_Style.
1226
+
1227
+ @param p top-left edge of circle or square
1228
+ @param paint stroke, blend, color, and so on, used to draw
1229
+ */
1230
+ void drawPoint(SkPoint p, const SkPaint& paint) {
1231
+ this->drawPoint(p.x(), p.y(), paint);
1232
+ }
1233
+
1234
+ /** Draws line segment from (x0, y0) to (x1, y1) using clip, SkMatrix, and SkPaint paint.
1235
+ In paint: SkPaint stroke width describes the line thickness;
1236
+ SkPaint::Cap draws the end rounded or square;
1237
+ SkPaint::Style is ignored, as if were set to SkPaint::kStroke_Style.
1238
+
1239
+ @param x0 start of line segment on x-axis
1240
+ @param y0 start of line segment on y-axis
1241
+ @param x1 end of line segment on x-axis
1242
+ @param y1 end of line segment on y-axis
1243
+ @param paint stroke, blend, color, and so on, used to draw
1244
+
1245
+ example: https://fiddle.skia.org/c/@Canvas_drawLine
1246
+ */
1247
+ void drawLine(SkScalar x0, SkScalar y0, SkScalar x1, SkScalar y1, const SkPaint& paint);
1248
+
1249
+ /** Draws line segment from p0 to p1 using clip, SkMatrix, and SkPaint paint.
1250
+ In paint: SkPaint stroke width describes the line thickness;
1251
+ SkPaint::Cap draws the end rounded or square;
1252
+ SkPaint::Style is ignored, as if were set to SkPaint::kStroke_Style.
1253
+
1254
+ @param p0 start of line segment
1255
+ @param p1 end of line segment
1256
+ @param paint stroke, blend, color, and so on, used to draw
1257
+ */
1258
+ void drawLine(SkPoint p0, SkPoint p1, const SkPaint& paint) {
1259
+ this->drawLine(p0.x(), p0.y(), p1.x(), p1.y(), paint);
1260
+ }
1261
+
1262
+ /** Draws SkRect rect using clip, SkMatrix, and SkPaint paint.
1263
+ In paint: SkPaint::Style determines if rectangle is stroked or filled;
1264
+ if stroked, SkPaint stroke width describes the line thickness, and
1265
+ SkPaint::Join draws the corners rounded or square.
1266
+
1267
+ @param rect rectangle to draw
1268
+ @param paint stroke or fill, blend, color, and so on, used to draw
1269
+
1270
+ example: https://fiddle.skia.org/c/@Canvas_drawRect
1271
+ */
1272
+ void drawRect(const SkRect& rect, const SkPaint& paint);
1273
+
1274
+ /** Draws SkIRect rect using clip, SkMatrix, and SkPaint paint.
1275
+ In paint: SkPaint::Style determines if rectangle is stroked or filled;
1276
+ if stroked, SkPaint stroke width describes the line thickness, and
1277
+ SkPaint::Join draws the corners rounded or square.
1278
+
1279
+ @param rect rectangle to draw
1280
+ @param paint stroke or fill, blend, color, and so on, used to draw
1281
+ */
1282
+ void drawIRect(const SkIRect& rect, const SkPaint& paint) {
1283
+ SkRect r;
1284
+ r.set(rect); // promotes the ints to scalars
1285
+ this->drawRect(r, paint);
1286
+ }
1287
+
1288
+ /** Draws SkRegion region using clip, SkMatrix, and SkPaint paint.
1289
+ In paint: SkPaint::Style determines if rectangle is stroked or filled;
1290
+ if stroked, SkPaint stroke width describes the line thickness, and
1291
+ SkPaint::Join draws the corners rounded or square.
1292
+
1293
+ @param region region to draw
1294
+ @param paint SkPaint stroke or fill, blend, color, and so on, used to draw
1295
+
1296
+ example: https://fiddle.skia.org/c/@Canvas_drawRegion
1297
+ */
1298
+ void drawRegion(const SkRegion& region, const SkPaint& paint);
1299
+
1300
+ /** Draws oval oval using clip, SkMatrix, and SkPaint.
1301
+ In paint: SkPaint::Style determines if oval is stroked or filled;
1302
+ if stroked, SkPaint stroke width describes the line thickness.
1303
+
1304
+ @param oval SkRect bounds of oval
1305
+ @param paint SkPaint stroke or fill, blend, color, and so on, used to draw
1306
+
1307
+ example: https://fiddle.skia.org/c/@Canvas_drawOval
1308
+ */
1309
+ void drawOval(const SkRect& oval, const SkPaint& paint);
1310
+
1311
+ /** Draws SkRRect rrect using clip, SkMatrix, and SkPaint paint.
1312
+ In paint: SkPaint::Style determines if rrect is stroked or filled;
1313
+ if stroked, SkPaint stroke width describes the line thickness.
1314
+
1315
+ rrect may represent a rectangle, circle, oval, uniformly rounded rectangle, or
1316
+ may have any combination of positive non-square radii for the four corners.
1317
+
1318
+ @param rrect SkRRect with up to eight corner radii to draw
1319
+ @param paint SkPaint stroke or fill, blend, color, and so on, used to draw
1320
+
1321
+ example: https://fiddle.skia.org/c/@Canvas_drawRRect
1322
+ */
1323
+ void drawRRect(const SkRRect& rrect, const SkPaint& paint);
1324
+
1325
+ /** Draws SkRRect outer and inner
1326
+ using clip, SkMatrix, and SkPaint paint.
1327
+ outer must contain inner or the drawing is undefined.
1328
+ In paint: SkPaint::Style determines if SkRRect is stroked or filled;
1329
+ if stroked, SkPaint stroke width describes the line thickness.
1330
+ If stroked and SkRRect corner has zero length radii, SkPaint::Join can
1331
+ draw corners rounded or square.
1332
+
1333
+ GPU-backed platforms optimize drawing when both outer and inner are
1334
+ concave and outer contains inner. These platforms may not be able to draw
1335
+ SkPath built with identical data as fast.
1336
+
1337
+ @param outer SkRRect outer bounds to draw
1338
+ @param inner SkRRect inner bounds to draw
1339
+ @param paint SkPaint stroke or fill, blend, color, and so on, used to draw
1340
+
1341
+ example: https://fiddle.skia.org/c/@Canvas_drawDRRect_a
1342
+ example: https://fiddle.skia.org/c/@Canvas_drawDRRect_b
1343
+ */
1344
+ void drawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint);
1345
+
1346
+ /** Draws circle at (cx, cy) with radius using clip, SkMatrix, and SkPaint paint.
1347
+ If radius is zero or less, nothing is drawn.
1348
+ In paint: SkPaint::Style determines if circle is stroked or filled;
1349
+ if stroked, SkPaint stroke width describes the line thickness.
1350
+
1351
+ @param cx circle center on the x-axis
1352
+ @param cy circle center on the y-axis
1353
+ @param radius half the diameter of circle
1354
+ @param paint SkPaint stroke or fill, blend, color, and so on, used to draw
1355
+
1356
+ example: https://fiddle.skia.org/c/@Canvas_drawCircle
1357
+ */
1358
+ void drawCircle(SkScalar cx, SkScalar cy, SkScalar radius, const SkPaint& paint);
1359
+
1360
+ /** Draws circle at center with radius using clip, SkMatrix, and SkPaint paint.
1361
+ If radius is zero or less, nothing is drawn.
1362
+ In paint: SkPaint::Style determines if circle is stroked or filled;
1363
+ if stroked, SkPaint stroke width describes the line thickness.
1364
+
1365
+ @param center circle center
1366
+ @param radius half the diameter of circle
1367
+ @param paint SkPaint stroke or fill, blend, color, and so on, used to draw
1368
+ */
1369
+ void drawCircle(SkPoint center, SkScalar radius, const SkPaint& paint) {
1370
+ this->drawCircle(center.x(), center.y(), radius, paint);
1371
+ }
1372
+
1373
+ /** Draws arc using clip, SkMatrix, and SkPaint paint.
1374
+
1375
+ Arc is part of oval bounded by oval, sweeping from startAngle to startAngle plus
1376
+ sweepAngle. startAngle and sweepAngle are in degrees.
1377
+
1378
+ startAngle of zero places start point at the right middle edge of oval.
1379
+ A positive sweepAngle places arc end point clockwise from start point;
1380
+ a negative sweepAngle places arc end point counterclockwise from start point.
1381
+ sweepAngle may exceed 360 degrees, a full circle.
1382
+ If useCenter is true, draw a wedge that includes lines from oval
1383
+ center to arc end points. If useCenter is false, draw arc between end points.
1384
+
1385
+ If SkRect oval is empty or sweepAngle is zero, nothing is drawn.
1386
+
1387
+ @param oval SkRect bounds of oval containing arc to draw
1388
+ @param startAngle angle in degrees where arc begins
1389
+ @param sweepAngle sweep angle in degrees; positive is clockwise
1390
+ @param useCenter if true, include the center of the oval
1391
+ @param paint SkPaint stroke or fill, blend, color, and so on, used to draw
1392
+ */
1393
+ void drawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
1394
+ bool useCenter, const SkPaint& paint);
1395
+
1396
+ /** Draws SkRRect bounded by SkRect rect, with corner radii (rx, ry) using clip,
1397
+ SkMatrix, and SkPaint paint.
1398
+
1399
+ In paint: SkPaint::Style determines if SkRRect is stroked or filled;
1400
+ if stroked, SkPaint stroke width describes the line thickness.
1401
+ If rx or ry are less than zero, they are treated as if they are zero.
1402
+ If rx plus ry exceeds rect width or rect height, radii are scaled down to fit.
1403
+ If rx and ry are zero, SkRRect is drawn as SkRect and if stroked is affected by
1404
+ SkPaint::Join.
1405
+
1406
+ @param rect SkRect bounds of SkRRect to draw
1407
+ @param rx axis length on x-axis of oval describing rounded corners
1408
+ @param ry axis length on y-axis of oval describing rounded corners
1409
+ @param paint stroke, blend, color, and so on, used to draw
1410
+
1411
+ example: https://fiddle.skia.org/c/@Canvas_drawRoundRect
1412
+ */
1413
+ void drawRoundRect(const SkRect& rect, SkScalar rx, SkScalar ry, const SkPaint& paint);
1414
+
1415
+ /** Draws SkPath path using clip, SkMatrix, and SkPaint paint.
1416
+ SkPath contains an array of path contour, each of which may be open or closed.
1417
+
1418
+ In paint: SkPaint::Style determines if SkRRect is stroked or filled:
1419
+ if filled, SkPath::FillType determines whether path contour describes inside or
1420
+ outside of fill; if stroked, SkPaint stroke width describes the line thickness,
1421
+ SkPaint::Cap describes line ends, and SkPaint::Join describes how
1422
+ corners are drawn.
1423
+
1424
+ @param path SkPath to draw
1425
+ @param paint stroke, blend, color, and so on, used to draw
1426
+
1427
+ example: https://fiddle.skia.org/c/@Canvas_drawPath
1428
+ */
1429
+ void drawPath(const SkPath& path, const SkPaint& paint);
1430
+
1431
+ void drawImage(const SkImage* image, SkScalar left, SkScalar top) {
1432
+ this->drawImage(image, left, top, SkSamplingOptions(), nullptr);
1433
+ }
1434
+ void drawImage(const sk_sp<SkImage>& image, SkScalar left, SkScalar top) {
1435
+ this->drawImage(image.get(), left, top, SkSamplingOptions(), nullptr);
1436
+ }
1437
+
1438
+ /** \enum SkCanvas::SrcRectConstraint
1439
+ SrcRectConstraint controls the behavior at the edge of source SkRect,
1440
+ provided to drawImageRect() when there is any filtering. If kStrict is set,
1441
+ then extra code is used to ensure it nevers samples outside of the src-rect.
1442
+ */
1443
+ enum SrcRectConstraint {
1444
+ kStrict_SrcRectConstraint, //!< sample only inside bounds; slower
1445
+ kFast_SrcRectConstraint, //!< sample outside bounds; faster
1446
+ };
1447
+
1448
+ void drawImage(const SkImage*, SkScalar x, SkScalar y, const SkSamplingOptions&,
1449
+ const SkPaint* = nullptr);
1450
+ void drawImage(const sk_sp<SkImage>& image, SkScalar x, SkScalar y,
1451
+ const SkSamplingOptions& sampling, const SkPaint* paint = nullptr) {
1452
+ this->drawImage(image.get(), x, y, sampling, paint);
1453
+ }
1454
+ void drawImageRect(const SkImage*, const SkRect& src, const SkRect& dst,
1455
+ const SkSamplingOptions&, const SkPaint*, SrcRectConstraint);
1456
+ void drawImageRect(const SkImage*, const SkRect& dst, const SkSamplingOptions&,
1457
+ const SkPaint* = nullptr);
1458
+ void drawImageRect(const sk_sp<SkImage>& image, const SkRect& src, const SkRect& dst,
1459
+ const SkSamplingOptions& sampling, const SkPaint* paint,
1460
+ SrcRectConstraint constraint) {
1461
+ this->drawImageRect(image.get(), src, dst, sampling, paint, constraint);
1462
+ }
1463
+ void drawImageRect(const sk_sp<SkImage>& image, const SkRect& dst,
1464
+ const SkSamplingOptions& sampling, const SkPaint* paint = nullptr) {
1465
+ this->drawImageRect(image.get(), dst, sampling, paint);
1466
+ }
1467
+
1468
+ /** Draws SkImage image stretched proportionally to fit into SkRect dst.
1469
+ SkIRect center divides the image into nine sections: four sides, four corners, and
1470
+ the center. Corners are unmodified or scaled down proportionately if their sides
1471
+ are larger than dst; center and four sides are scaled to fit remaining space, if any.
1472
+
1473
+ Additionally transform draw using clip, SkMatrix, and optional SkPaint paint.
1474
+
1475
+ If SkPaint paint is supplied, apply SkColorFilter, alpha, SkImageFilter, and
1476
+ SkBlendMode. If image is kAlpha_8_SkColorType, apply SkShader.
1477
+ If paint contains SkMaskFilter, generate mask from image bounds.
1478
+ Any SkMaskFilter on paint is ignored as is paint anti-aliasing state.
1479
+
1480
+ If generated mask extends beyond image bounds, replicate image edge colors, just
1481
+ as SkShader made from SkImage::makeShader with SkShader::kClamp_TileMode set
1482
+ replicates the image edge color when it samples outside of its bounds.
1483
+
1484
+ @param image SkImage containing pixels, dimensions, and format
1485
+ @param center SkIRect edge of image corners and sides
1486
+ @param dst destination SkRect of image to draw to
1487
+ @param filter what technique to use when sampling the image
1488
+ @param paint SkPaint containing SkBlendMode, SkColorFilter, SkImageFilter,
1489
+ and so on; or nullptr
1490
+ */
1491
+ void drawImageNine(const SkImage* image, const SkIRect& center, const SkRect& dst,
1492
+ SkFilterMode filter, const SkPaint* paint = nullptr);
1493
+
1494
+ /** \struct SkCanvas::Lattice
1495
+ SkCanvas::Lattice divides SkBitmap or SkImage into a rectangular grid.
1496
+ Grid entries on even columns and even rows are fixed; these entries are
1497
+ always drawn at their original size if the destination is large enough.
1498
+ If the destination side is too small to hold the fixed entries, all fixed
1499
+ entries are proportionately scaled down to fit.
1500
+ The grid entries not on even columns and rows are scaled to fit the
1501
+ remaining space, if any.
1502
+ */
1503
+ struct Lattice {
1504
+
1505
+ /** \enum SkCanvas::Lattice::RectType
1506
+ Optional setting per rectangular grid entry to make it transparent,
1507
+ or to fill the grid entry with a color.
1508
+ */
1509
+ enum RectType : uint8_t {
1510
+ kDefault = 0, //!< draws SkBitmap into lattice rectangle
1511
+ kTransparent, //!< skips lattice rectangle by making it transparent
1512
+ kFixedColor, //!< draws one of fColors into lattice rectangle
1513
+ };
1514
+
1515
+ const int* fXDivs; //!< x-axis values dividing bitmap
1516
+ const int* fYDivs; //!< y-axis values dividing bitmap
1517
+ const RectType* fRectTypes; //!< array of fill types
1518
+ int fXCount; //!< number of x-coordinates
1519
+ int fYCount; //!< number of y-coordinates
1520
+ const SkIRect* fBounds; //!< source bounds to draw from
1521
+ const SkColor* fColors; //!< array of colors
1522
+ };
1523
+
1524
+ /** Draws SkImage image stretched proportionally to fit into SkRect dst.
1525
+
1526
+ SkCanvas::Lattice lattice divides image into a rectangular grid.
1527
+ Each intersection of an even-numbered row and column is fixed;
1528
+ fixed lattice elements never scale larger than their initial
1529
+ size and shrink proportionately when all fixed elements exceed the bitmap
1530
+ dimension. All other grid elements scale to fill the available space, if any.
1531
+
1532
+ Additionally transform draw using clip, SkMatrix, and optional SkPaint paint.
1533
+
1534
+ If SkPaint paint is supplied, apply SkColorFilter, alpha, SkImageFilter, and
1535
+ SkBlendMode. If image is kAlpha_8_SkColorType, apply SkShader.
1536
+ If paint contains SkMaskFilter, generate mask from image bounds.
1537
+ Any SkMaskFilter on paint is ignored as is paint anti-aliasing state.
1538
+
1539
+ If generated mask extends beyond bitmap bounds, replicate bitmap edge colors,
1540
+ just as SkShader made from SkShader::MakeBitmapShader with
1541
+ SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples
1542
+ outside of its bounds.
1543
+
1544
+ @param image SkImage containing pixels, dimensions, and format
1545
+ @param lattice division of bitmap into fixed and variable rectangles
1546
+ @param dst destination SkRect of image to draw to
1547
+ @param filter what technique to use when sampling the image
1548
+ @param paint SkPaint containing SkBlendMode, SkColorFilter, SkImageFilter,
1549
+ and so on; or nullptr
1550
+ */
1551
+ void drawImageLattice(const SkImage* image, const Lattice& lattice, const SkRect& dst,
1552
+ SkFilterMode filter, const SkPaint* paint = nullptr);
1553
+ void drawImageLattice(const SkImage* image, const Lattice& lattice, const SkRect& dst) {
1554
+ this->drawImageLattice(image, lattice, dst, SkFilterMode::kNearest, nullptr);
1555
+ }
1556
+
1557
+ /**
1558
+ * Experimental. Controls anti-aliasing of each edge of images in an image-set.
1559
+ */
1560
+ enum QuadAAFlags : unsigned {
1561
+ kLeft_QuadAAFlag = 0b0001,
1562
+ kTop_QuadAAFlag = 0b0010,
1563
+ kRight_QuadAAFlag = 0b0100,
1564
+ kBottom_QuadAAFlag = 0b1000,
1565
+
1566
+ kNone_QuadAAFlags = 0b0000,
1567
+ kAll_QuadAAFlags = 0b1111,
1568
+ };
1569
+
1570
+ /** This is used by the experimental API below. */
1571
+ struct SK_API ImageSetEntry {
1572
+ ImageSetEntry(sk_sp<const SkImage> image, const SkRect& srcRect, const SkRect& dstRect,
1573
+ int matrixIndex, float alpha, unsigned aaFlags, bool hasClip);
1574
+
1575
+ ImageSetEntry(sk_sp<const SkImage> image, const SkRect& srcRect, const SkRect& dstRect,
1576
+ float alpha, unsigned aaFlags);
1577
+
1578
+ ImageSetEntry();
1579
+ ~ImageSetEntry();
1580
+ ImageSetEntry(const ImageSetEntry&);
1581
+ ImageSetEntry& operator=(const ImageSetEntry&);
1582
+
1583
+ sk_sp<const SkImage> fImage;
1584
+ SkRect fSrcRect;
1585
+ SkRect fDstRect;
1586
+ int fMatrixIndex = -1; // Index into the preViewMatrices arg, or < 0
1587
+ float fAlpha = 1.f;
1588
+ unsigned fAAFlags = kNone_QuadAAFlags; // QuadAAFlags
1589
+ bool fHasClip = false; // True to use next 4 points in dstClip arg as quad
1590
+ };
1591
+
1592
+ /**
1593
+ * This is an experimental API for the SkiaRenderer Chromium project, and its API will surely
1594
+ * evolve if it is not removed outright.
1595
+ *
1596
+ * This behaves very similarly to drawRect() combined with a clipPath() formed by clip
1597
+ * quadrilateral. 'rect' and 'clip' are in the same coordinate space. If 'clip' is null, then it
1598
+ * is as if the rectangle was not clipped (or, alternatively, clipped to itself). If not null,
1599
+ * then it must provide 4 points.
1600
+ *
1601
+ * In addition to combining the draw and clipping into one operation, this function adds the
1602
+ * additional capability of controlling each of the rectangle's edges anti-aliasing
1603
+ * independently. The edges of the clip will respect the per-edge AA flags. It is required that
1604
+ * 'clip' be contained inside 'rect'. In terms of mapping to edge labels, the 'clip' points
1605
+ * should be ordered top-left, top-right, bottom-right, bottom-left so that the edge between [0]
1606
+ * and [1] is "top", [1] and [2] is "right", [2] and [3] is "bottom", and [3] and [0] is "left".
1607
+ * This ordering matches SkRect::toQuad().
1608
+ *
1609
+ * This API only draws solid color, filled rectangles so it does not accept a full SkPaint.
1610
+ */
1611
+ void experimental_DrawEdgeAAQuad(const SkRect& rect, const SkPoint clip[4], QuadAAFlags aaFlags,
1612
+ const SkColor4f& color, SkBlendMode mode);
1613
+ void experimental_DrawEdgeAAQuad(const SkRect& rect, const SkPoint clip[4], QuadAAFlags aaFlags,
1614
+ SkColor color, SkBlendMode mode) {
1615
+ this->experimental_DrawEdgeAAQuad(rect, clip, aaFlags, SkColor4f::FromColor(color), mode);
1616
+ }
1617
+
1618
+ /**
1619
+ * This is an bulk variant of experimental_DrawEdgeAAQuad() that renders 'cnt' textured quads.
1620
+ * For each entry, 'fDstRect' is rendered with its clip (determined by entry's 'fHasClip' and
1621
+ * the current index in 'dstClip'). The entry's fImage is applied to the destination rectangle
1622
+ * by sampling from 'fSrcRect' sub-image. The corners of 'fSrcRect' map to the corners of
1623
+ * 'fDstRect', just like in drawImageRect(), and they will be properly interpolated when
1624
+ * applying a clip.
1625
+ *
1626
+ * Like experimental_DrawEdgeAAQuad(), each entry can specify edge AA flags that apply to both
1627
+ * the destination rect and its clip.
1628
+ *
1629
+ * If provided, the 'dstClips' array must have length equal 4 * the number of entries with
1630
+ * fHasClip true. If 'dstClips' is null, every entry must have 'fHasClip' set to false. The
1631
+ * destination clip coordinates will be read consecutively with the image set entries, advancing
1632
+ * by 4 points every time an entry with fHasClip is passed.
1633
+ *
1634
+ * This entry point supports per-entry manipulations to the canvas's current matrix. If an
1635
+ * entry provides 'fMatrixIndex' >= 0, it will be drawn as if the canvas's CTM was
1636
+ * canvas->getTotalMatrix() * preViewMatrices[fMatrixIndex]. If 'fMatrixIndex' is less than 0,
1637
+ * the pre-view matrix transform is implicitly the identity, so it will be drawn using just the
1638
+ * current canvas matrix. The pre-view matrix modifies the canvas's view matrix, it does not
1639
+ * affect the local coordinates of each entry.
1640
+ *
1641
+ * An optional paint may be provided, which supports the same subset of features usable with
1642
+ * drawImageRect (i.e. assumed to be filled and no path effects). When a paint is provided, the
1643
+ * image set is drawn as if each image used the applied paint independently, so each is affected
1644
+ * by the image, color, and/or mask filter.
1645
+ */
1646
+ void experimental_DrawEdgeAAImageSet(const ImageSetEntry imageSet[], int cnt,
1647
+ const SkPoint dstClips[], const SkMatrix preViewMatrices[],
1648
+ const SkSamplingOptions&, const SkPaint* paint = nullptr,
1649
+ SrcRectConstraint constraint = kStrict_SrcRectConstraint);
1650
+
1651
+ /** Draws text, with origin at (x, y), using clip, SkMatrix, SkFont font,
1652
+ and SkPaint paint.
1653
+
1654
+ When encoding is SkTextEncoding::kUTF8, SkTextEncoding::kUTF16, or
1655
+ SkTextEncoding::kUTF32, this function uses the default
1656
+ character-to-glyph mapping from the SkTypeface in font. It does not
1657
+ perform typeface fallback for characters not found in the SkTypeface.
1658
+ It does not perform kerning or other complex shaping; glyphs are
1659
+ positioned based on their default advances.
1660
+
1661
+ Text meaning depends on SkTextEncoding.
1662
+
1663
+ Text size is affected by SkMatrix and SkFont text size. Default text
1664
+ size is 12 point.
1665
+
1666
+ All elements of paint: SkPathEffect, SkMaskFilter, SkShader,
1667
+ SkColorFilter, and SkImageFilter; apply to text. By
1668
+ default, draws filled black glyphs.
1669
+
1670
+ @param text character code points or glyphs drawn
1671
+ @param byteLength byte length of text array
1672
+ @param encoding text encoding used in the text array
1673
+ @param x start of text on x-axis
1674
+ @param y start of text on y-axis
1675
+ @param font typeface, text size and so, used to describe the text
1676
+ @param paint blend, color, and so on, used to draw
1677
+ */
1678
+ void drawSimpleText(const void* text, size_t byteLength, SkTextEncoding encoding,
1679
+ SkScalar x, SkScalar y, const SkFont& font, const SkPaint& paint);
1680
+
1681
+ /** Draws null terminated string, with origin at (x, y), using clip, SkMatrix,
1682
+ SkFont font, and SkPaint paint.
1683
+
1684
+ This function uses the default character-to-glyph mapping from the
1685
+ SkTypeface in font. It does not perform typeface fallback for
1686
+ characters not found in the SkTypeface. It does not perform kerning;
1687
+ glyphs are positioned based on their default advances.
1688
+
1689
+ String str is encoded as UTF-8.
1690
+
1691
+ Text size is affected by SkMatrix and font text size. Default text
1692
+ size is 12 point.
1693
+
1694
+ All elements of paint: SkPathEffect, SkMaskFilter, SkShader,
1695
+ SkColorFilter, and SkImageFilter; apply to text. By
1696
+ default, draws filled black glyphs.
1697
+
1698
+ @param str character code points drawn,
1699
+ ending with a char value of zero
1700
+ @param x start of string on x-axis
1701
+ @param y start of string on y-axis
1702
+ @param font typeface, text size and so, used to describe the text
1703
+ @param paint blend, color, and so on, used to draw
1704
+ */
1705
+ void drawString(const char str[], SkScalar x, SkScalar y, const SkFont& font,
1706
+ const SkPaint& paint) {
1707
+ this->drawSimpleText(str, strlen(str), SkTextEncoding::kUTF8, x, y, font, paint);
1708
+ }
1709
+
1710
+ /** Draws SkString, with origin at (x, y), using clip, SkMatrix, SkFont font,
1711
+ and SkPaint paint.
1712
+
1713
+ This function uses the default character-to-glyph mapping from the
1714
+ SkTypeface in font. It does not perform typeface fallback for
1715
+ characters not found in the SkTypeface. It does not perform kerning;
1716
+ glyphs are positioned based on their default advances.
1717
+
1718
+ SkString str is encoded as UTF-8.
1719
+
1720
+ Text size is affected by SkMatrix and SkFont text size. Default text
1721
+ size is 12 point.
1722
+
1723
+ All elements of paint: SkPathEffect, SkMaskFilter, SkShader,
1724
+ SkColorFilter, and SkImageFilter; apply to text. By
1725
+ default, draws filled black glyphs.
1726
+
1727
+ @param str character code points drawn,
1728
+ ending with a char value of zero
1729
+ @param x start of string on x-axis
1730
+ @param y start of string on y-axis
1731
+ @param font typeface, text size and so, used to describe the text
1732
+ @param paint blend, color, and so on, used to draw
1733
+ */
1734
+ void drawString(const SkString& str, SkScalar x, SkScalar y, const SkFont& font,
1735
+ const SkPaint& paint) {
1736
+ this->drawSimpleText(str.c_str(), str.size(), SkTextEncoding::kUTF8, x, y, font, paint);
1737
+ }
1738
+
1739
+ /** Draws count glyphs, at positions relative to origin styled with font and paint with
1740
+ supporting utf8 and cluster information.
1741
+
1742
+ This function draw glyphs at the given positions relative to the given origin.
1743
+ It does not perform typeface fallback for glyphs not found in the SkTypeface in font.
1744
+
1745
+ The drawing obeys the current transform matrix and clipping.
1746
+
1747
+ All elements of paint: SkPathEffect, SkMaskFilter, SkShader,
1748
+ SkColorFilter, and SkImageFilter; apply to text. By
1749
+ default, draws filled black glyphs.
1750
+
1751
+ @param count number of glyphs to draw
1752
+ @param glyphs the array of glyphIDs to draw
1753
+ @param positions where to draw each glyph relative to origin
1754
+ @param clusters array of size count of cluster information
1755
+ @param textByteCount size of the utf8text
1756
+ @param utf8text utf8text supporting information for the glyphs
1757
+ @param origin the origin of all the positions
1758
+ @param font typeface, text size and so, used to describe the text
1759
+ @param paint blend, color, and so on, used to draw
1760
+ */
1761
+ void drawGlyphs(int count, const SkGlyphID glyphs[], const SkPoint positions[],
1762
+ const uint32_t clusters[], int textByteCount, const char utf8text[],
1763
+ SkPoint origin, const SkFont& font, const SkPaint& paint);
1764
+
1765
+ /** Draws count glyphs, at positions relative to origin styled with font and paint.
1766
+
1767
+ This function draw glyphs at the given positions relative to the given origin.
1768
+ It does not perform typeface fallback for glyphs not found in the SkTypeface in font.
1769
+
1770
+ The drawing obeys the current transform matrix and clipping.
1771
+
1772
+ All elements of paint: SkPathEffect, SkMaskFilter, SkShader,
1773
+ SkColorFilter, and SkImageFilter; apply to text. By
1774
+ default, draws filled black glyphs.
1775
+
1776
+ @param count number of glyphs to draw
1777
+ @param glyphs the array of glyphIDs to draw
1778
+ @param positions where to draw each glyph relative to origin
1779
+ @param origin the origin of all the positions
1780
+ @param font typeface, text size and so, used to describe the text
1781
+ @param paint blend, color, and so on, used to draw
1782
+ */
1783
+ void drawGlyphs(int count, const SkGlyphID glyphs[], const SkPoint positions[],
1784
+ SkPoint origin, const SkFont& font, const SkPaint& paint);
1785
+
1786
+ /** Draws count glyphs, at positions relative to origin styled with font and paint.
1787
+
1788
+ This function draw glyphs using the given scaling and rotations. They are positioned
1789
+ relative to the given origin. It does not perform typeface fallback for glyphs not found
1790
+ in the SkTypeface in font.
1791
+
1792
+ The drawing obeys the current transform matrix and clipping.
1793
+
1794
+ All elements of paint: SkPathEffect, SkMaskFilter, SkShader,
1795
+ SkColorFilter, and SkImageFilter; apply to text. By
1796
+ default, draws filled black glyphs.
1797
+
1798
+ @param count number of glyphs to draw
1799
+ @param glyphs the array of glyphIDs to draw
1800
+ @param xforms where to draw and orient each glyph
1801
+ @param origin the origin of all the positions
1802
+ @param font typeface, text size and so, used to describe the text
1803
+ @param paint blend, color, and so on, used to draw
1804
+ */
1805
+ void drawGlyphs(int count, const SkGlyphID glyphs[], const SkRSXform xforms[],
1806
+ SkPoint origin, const SkFont& font, const SkPaint& paint);
1807
+
1808
+ /** Draws SkTextBlob blob at (x, y), using clip, SkMatrix, and SkPaint paint.
1809
+
1810
+ blob contains glyphs, their positions, and paint attributes specific to text:
1811
+ SkTypeface, SkPaint text size, SkPaint text scale x,
1812
+ SkPaint text skew x, SkPaint::Align, SkPaint::Hinting, anti-alias, SkPaint fake bold,
1813
+ SkPaint font embedded bitmaps, SkPaint full hinting spacing, LCD text, SkPaint linear text,
1814
+ and SkPaint subpixel text.
1815
+
1816
+ SkTextEncoding must be set to SkTextEncoding::kGlyphID.
1817
+
1818
+ Elements of paint: anti-alias, SkBlendMode, color including alpha,
1819
+ SkColorFilter, SkPaint dither, SkMaskFilter, SkPathEffect, SkShader, and
1820
+ SkPaint::Style; apply to blob. If SkPaint contains SkPaint::kStroke_Style:
1821
+ SkPaint miter limit, SkPaint::Cap, SkPaint::Join, and SkPaint stroke width;
1822
+ apply to SkPath created from blob.
1823
+
1824
+ @param blob glyphs, positions, and their paints' text size, typeface, and so on
1825
+ @param x horizontal offset applied to blob
1826
+ @param y vertical offset applied to blob
1827
+ @param paint blend, color, stroking, and so on, used to draw
1828
+
1829
+ example: https://fiddle.skia.org/c/@Canvas_drawTextBlob
1830
+ */
1831
+ void drawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, const SkPaint& paint);
1832
+
1833
+ /** Draws SkTextBlob blob at (x, y), using clip, SkMatrix, and SkPaint paint.
1834
+
1835
+ blob contains glyphs, their positions, and paint attributes specific to text:
1836
+ SkTypeface, SkPaint text size, SkPaint text scale x,
1837
+ SkPaint text skew x, SkPaint::Align, SkPaint::Hinting, anti-alias, SkPaint fake bold,
1838
+ SkPaint font embedded bitmaps, SkPaint full hinting spacing, LCD text, SkPaint linear text,
1839
+ and SkPaint subpixel text.
1840
+
1841
+ SkTextEncoding must be set to SkTextEncoding::kGlyphID.
1842
+
1843
+ Elements of paint: SkPathEffect, SkMaskFilter, SkShader, SkColorFilter,
1844
+ and SkImageFilter; apply to blob.
1845
+
1846
+ @param blob glyphs, positions, and their paints' text size, typeface, and so on
1847
+ @param x horizontal offset applied to blob
1848
+ @param y vertical offset applied to blob
1849
+ @param paint blend, color, stroking, and so on, used to draw
1850
+ */
1851
+ void drawTextBlob(const sk_sp<SkTextBlob>& blob, SkScalar x, SkScalar y, const SkPaint& paint) {
1852
+ this->drawTextBlob(blob.get(), x, y, paint);
1853
+ }
1854
+
1855
+ /** Draws SkPicture picture, using clip and SkMatrix.
1856
+ Clip and SkMatrix are unchanged by picture contents, as if
1857
+ save() was called before and restore() was called after drawPicture().
1858
+
1859
+ SkPicture records a series of draw commands for later playback.
1860
+
1861
+ @param picture recorded drawing commands to play
1862
+ */
1863
+ void drawPicture(const SkPicture* picture) {
1864
+ this->drawPicture(picture, nullptr, nullptr);
1865
+ }
1866
+
1867
+ /** Draws SkPicture picture, using clip and SkMatrix.
1868
+ Clip and SkMatrix are unchanged by picture contents, as if
1869
+ save() was called before and restore() was called after drawPicture().
1870
+
1871
+ SkPicture records a series of draw commands for later playback.
1872
+
1873
+ @param picture recorded drawing commands to play
1874
+ */
1875
+ void drawPicture(const sk_sp<SkPicture>& picture) {
1876
+ this->drawPicture(picture.get());
1877
+ }
1878
+
1879
+ /** Draws SkPicture picture, using clip and SkMatrix; transforming picture with
1880
+ SkMatrix matrix, if provided; and use SkPaint paint alpha, SkColorFilter,
1881
+ SkImageFilter, and SkBlendMode, if provided.
1882
+
1883
+ If paint is non-null, then the picture is always drawn into a temporary layer before
1884
+ actually landing on the canvas. Note that drawing into a layer can also change its
1885
+ appearance if there are any non-associative blendModes inside any of the pictures elements.
1886
+
1887
+ @param picture recorded drawing commands to play
1888
+ @param matrix SkMatrix to rotate, scale, translate, and so on; may be nullptr
1889
+ @param paint SkPaint to apply transparency, filtering, and so on; may be nullptr
1890
+
1891
+ example: https://fiddle.skia.org/c/@Canvas_drawPicture_3
1892
+ */
1893
+ void drawPicture(const SkPicture* picture, const SkMatrix* matrix, const SkPaint* paint);
1894
+
1895
+ /** Draws SkPicture picture, using clip and SkMatrix; transforming picture with
1896
+ SkMatrix matrix, if provided; and use SkPaint paint alpha, SkColorFilter,
1897
+ SkImageFilter, and SkBlendMode, if provided.
1898
+
1899
+ If paint is non-null, then the picture is always drawn into a temporary layer before
1900
+ actually landing on the canvas. Note that drawing into a layer can also change its
1901
+ appearance if there are any non-associative blendModes inside any of the pictures elements.
1902
+
1903
+ @param picture recorded drawing commands to play
1904
+ @param matrix SkMatrix to rotate, scale, translate, and so on; may be nullptr
1905
+ @param paint SkPaint to apply transparency, filtering, and so on; may be nullptr
1906
+ */
1907
+ void drawPicture(const sk_sp<SkPicture>& picture, const SkMatrix* matrix,
1908
+ const SkPaint* paint) {
1909
+ this->drawPicture(picture.get(), matrix, paint);
1910
+ }
1911
+
1912
+ /** Draws SkVertices vertices, a triangle mesh, using clip and SkMatrix.
1913
+ If paint contains an SkShader and vertices does not contain texCoords, the shader
1914
+ is mapped using the vertices' positions.
1915
+
1916
+ SkBlendMode is ignored if SkVertices does not have colors. Otherwise, it combines
1917
+ - the SkShader if SkPaint contains SkShader
1918
+ - or the opaque SkPaint color if SkPaint does not contain SkShader
1919
+ as the src of the blend and the interpolated vertex colors as the dst.
1920
+
1921
+ SkMaskFilter, SkPathEffect, and antialiasing on SkPaint are ignored.
1922
+
1923
+ @param vertices triangle mesh to draw
1924
+ @param mode combines vertices' colors with SkShader if present or SkPaint opaque color
1925
+ if not. Ignored if the vertices do not contain color.
1926
+ @param paint specifies the SkShader, used as SkVertices texture, and SkColorFilter.
1927
+
1928
+ example: https://fiddle.skia.org/c/@Canvas_drawVertices
1929
+ */
1930
+ void drawVertices(const SkVertices* vertices, SkBlendMode mode, const SkPaint& paint);
1931
+
1932
+ /** Draws SkVertices vertices, a triangle mesh, using clip and SkMatrix.
1933
+ If paint contains an SkShader and vertices does not contain texCoords, the shader
1934
+ is mapped using the vertices' positions.
1935
+
1936
+ SkBlendMode is ignored if SkVertices does not have colors. Otherwise, it combines
1937
+ - the SkShader if SkPaint contains SkShader
1938
+ - or the opaque SkPaint color if SkPaint does not contain SkShader
1939
+ as the src of the blend and the interpolated vertex colors as the dst.
1940
+
1941
+ SkMaskFilter, SkPathEffect, and antialiasing on SkPaint are ignored.
1942
+
1943
+ @param vertices triangle mesh to draw
1944
+ @param mode combines vertices' colors with SkShader if present or SkPaint opaque color
1945
+ if not. Ignored if the vertices do not contain color.
1946
+ @param paint specifies the SkShader, used as SkVertices texture, may be nullptr
1947
+
1948
+ example: https://fiddle.skia.org/c/@Canvas_drawVertices_2
1949
+ */
1950
+ void drawVertices(const sk_sp<SkVertices>& vertices, SkBlendMode mode, const SkPaint& paint);
1951
+
1952
+ #if defined(SK_ENABLE_EXPERIMENTAL_CUSTOM_MESH) && defined(SK_ENABLE_SKSL)
1953
+ /**
1954
+ Experimental, under active development, and subject to change without notice.
1955
+
1956
+ Draws a mesh using a user-defined specification (see SkCustomMeshSpecification).
1957
+
1958
+ SkBlender is ignored if SkCustomMesh's specification does not output fragment shader color.
1959
+ Otherwise, it combines
1960
+ - the SkShader if SkPaint contains SkShader
1961
+ - or the opaque SkPaint color if SkPaint does not contain SkShader
1962
+ as the src of the blend and the mesh's fragment color as the dst.
1963
+
1964
+ SkMaskFilter, SkPathEffect, and antialiasing on SkPaint are ignored.
1965
+
1966
+ @param cm the custom mesh vertices and compatible specification.
1967
+ @param blender combines vertices colors with SkShader if present or SkPaint opaque color
1968
+ if not. Ignored if the custom mesh does not output color. Defaults to
1969
+ SkBlendMode::kModulate if nullptr.
1970
+ @param paint specifies the SkShader, used as SkVertices texture, may be nullptr
1971
+ */
1972
+ void drawCustomMesh(SkCustomMesh cm, sk_sp<SkBlender> blender, const SkPaint& paint);
1973
+ #endif
1974
+
1975
+ /** Draws a Coons patch: the interpolation of four cubics with shared corners,
1976
+ associating a color, and optionally a texture SkPoint, with each corner.
1977
+
1978
+ SkPoint array cubics specifies four SkPath cubic starting at the top-left corner,
1979
+ in clockwise order, sharing every fourth point. The last SkPath cubic ends at the
1980
+ first point.
1981
+
1982
+ Color array color associates colors with corners in top-left, top-right,
1983
+ bottom-right, bottom-left order.
1984
+
1985
+ If paint contains SkShader, SkPoint array texCoords maps SkShader as texture to
1986
+ corners in top-left, top-right, bottom-right, bottom-left order. If texCoords is
1987
+ nullptr, SkShader is mapped using positions (derived from cubics).
1988
+
1989
+ SkBlendMode is ignored if colors is null. Otherwise, it combines
1990
+ - the SkShader if SkPaint contains SkShader
1991
+ - or the opaque SkPaint color if SkPaint does not contain SkShader
1992
+ as the src of the blend and the interpolated patch colors as the dst.
1993
+
1994
+ SkMaskFilter, SkPathEffect, and antialiasing on SkPaint are ignored.
1995
+
1996
+ @param cubics SkPath cubic array, sharing common points
1997
+ @param colors color array, one for each corner
1998
+ @param texCoords SkPoint array of texture coordinates, mapping SkShader to corners;
1999
+ may be nullptr
2000
+ @param mode combines patch's colors with SkShader if present or SkPaint opaque color
2001
+ if not. Ignored if colors is null.
2002
+ @param paint SkShader, SkColorFilter, SkBlendMode, used to draw
2003
+ */
2004
+ void drawPatch(const SkPoint cubics[12], const SkColor colors[4],
2005
+ const SkPoint texCoords[4], SkBlendMode mode, const SkPaint& paint);
2006
+
2007
+ /** Draws a set of sprites from atlas, using clip, SkMatrix, and optional SkPaint paint.
2008
+ paint uses anti-alias, alpha, SkColorFilter, SkImageFilter, and SkBlendMode
2009
+ to draw, if present. For each entry in the array, SkRect tex locates sprite in
2010
+ atlas, and SkRSXform xform transforms it into destination space.
2011
+
2012
+ SkMaskFilter and SkPathEffect on paint are ignored.
2013
+
2014
+ xform, tex, and colors if present, must contain count entries.
2015
+ Optional colors are applied for each sprite using SkBlendMode mode, treating
2016
+ sprite as source and colors as destination.
2017
+ Optional cullRect is a conservative bounds of all transformed sprites.
2018
+ If cullRect is outside of clip, canvas can skip drawing.
2019
+
2020
+ If atlas is nullptr, this draws nothing.
2021
+
2022
+ @param atlas SkImage containing sprites
2023
+ @param xform SkRSXform mappings for sprites in atlas
2024
+ @param tex SkRect locations of sprites in atlas
2025
+ @param colors one per sprite, blended with sprite using SkBlendMode; may be nullptr
2026
+ @param count number of sprites to draw
2027
+ @param mode SkBlendMode combining colors and sprites
2028
+ @param sampling SkSamplingOptions used when sampling from the atlas image
2029
+ @param cullRect bounds of transformed sprites for efficient clipping; may be nullptr
2030
+ @param paint SkColorFilter, SkImageFilter, SkBlendMode, and so on; may be nullptr
2031
+ */
2032
+ void drawAtlas(const SkImage* atlas, const SkRSXform xform[], const SkRect tex[],
2033
+ const SkColor colors[], int count, SkBlendMode mode,
2034
+ const SkSamplingOptions& sampling, const SkRect* cullRect, const SkPaint* paint);
2035
+
2036
+ /** Draws SkDrawable drawable using clip and SkMatrix, concatenated with
2037
+ optional matrix.
2038
+
2039
+ If SkCanvas has an asynchronous implementation, as is the case
2040
+ when it is recording into SkPicture, then drawable will be referenced,
2041
+ so that SkDrawable::draw() can be called when the operation is finalized. To force
2042
+ immediate drawing, call SkDrawable::draw() instead.
2043
+
2044
+ @param drawable custom struct encapsulating drawing commands
2045
+ @param matrix transformation applied to drawing; may be nullptr
2046
+
2047
+ example: https://fiddle.skia.org/c/@Canvas_drawDrawable
2048
+ */
2049
+ void drawDrawable(SkDrawable* drawable, const SkMatrix* matrix = nullptr);
2050
+
2051
+ /** Draws SkDrawable drawable using clip and SkMatrix, offset by (x, y).
2052
+
2053
+ If SkCanvas has an asynchronous implementation, as is the case
2054
+ when it is recording into SkPicture, then drawable will be referenced,
2055
+ so that SkDrawable::draw() can be called when the operation is finalized. To force
2056
+ immediate drawing, call SkDrawable::draw() instead.
2057
+
2058
+ @param drawable custom struct encapsulating drawing commands
2059
+ @param x offset into SkCanvas writable pixels on x-axis
2060
+ @param y offset into SkCanvas writable pixels on y-axis
2061
+
2062
+ example: https://fiddle.skia.org/c/@Canvas_drawDrawable_2
2063
+ */
2064
+ void drawDrawable(SkDrawable* drawable, SkScalar x, SkScalar y);
2065
+
2066
+ /** Associates SkRect on SkCanvas with an annotation; a key-value pair, where the key is
2067
+ a null-terminated UTF-8 string, and optional value is stored as SkData.
2068
+
2069
+ Only some canvas implementations, such as recording to SkPicture, or drawing to
2070
+ document PDF, use annotations.
2071
+
2072
+ @param rect SkRect extent of canvas to annotate
2073
+ @param key string used for lookup
2074
+ @param value data holding value stored in annotation
2075
+
2076
+ example: https://fiddle.skia.org/c/@Canvas_drawAnnotation_2
2077
+ */
2078
+ void drawAnnotation(const SkRect& rect, const char key[], SkData* value);
2079
+
2080
+ /** Associates SkRect on SkCanvas when an annotation; a key-value pair, where the key is
2081
+ a null-terminated UTF-8 string, and optional value is stored as SkData.
2082
+
2083
+ Only some canvas implementations, such as recording to SkPicture, or drawing to
2084
+ document PDF, use annotations.
2085
+
2086
+ @param rect SkRect extent of canvas to annotate
2087
+ @param key string used for lookup
2088
+ @param value data holding value stored in annotation
2089
+ */
2090
+ void drawAnnotation(const SkRect& rect, const char key[], const sk_sp<SkData>& value) {
2091
+ this->drawAnnotation(rect, key, value.get());
2092
+ }
2093
+
2094
+ /** Returns true if clip is empty; that is, nothing will draw.
2095
+
2096
+ May do work when called; it should not be called
2097
+ more often than needed. However, once called, subsequent calls perform no
2098
+ work until clip changes.
2099
+
2100
+ @return true if clip is empty
2101
+
2102
+ example: https://fiddle.skia.org/c/@Canvas_isClipEmpty
2103
+ */
2104
+ virtual bool isClipEmpty() const;
2105
+
2106
+ /** Returns true if clip is SkRect and not empty.
2107
+ Returns false if the clip is empty, or if it is not SkRect.
2108
+
2109
+ @return true if clip is SkRect and not empty
2110
+
2111
+ example: https://fiddle.skia.org/c/@Canvas_isClipRect
2112
+ */
2113
+ virtual bool isClipRect() const;
2114
+
2115
+ /** Returns the current transform from local coordinates to the 'device', which for most
2116
+ * purposes means pixels.
2117
+ *
2118
+ * @return transformation from local coordinates to device / pixels.
2119
+ */
2120
+ SkM44 getLocalToDevice() const;
2121
+
2122
+ /**
2123
+ * Throws away the 3rd row and column in the matrix, so be warned.
2124
+ */
2125
+ SkMatrix getLocalToDeviceAs3x3() const {
2126
+ return this->getLocalToDevice().asM33();
2127
+ }
2128
+
2129
+ #ifdef SK_SUPPORT_LEGACY_GETTOTALMATRIX
2130
+ /** DEPRECATED
2131
+ * Legacy version of getLocalToDevice(), which strips away any Z information, and
2132
+ * just returns a 3x3 version.
2133
+ *
2134
+ * @return 3x3 version of getLocalToDevice()
2135
+ *
2136
+ * example: https://fiddle.skia.org/c/@Canvas_getTotalMatrix
2137
+ * example: https://fiddle.skia.org/c/@Clip
2138
+ */
2139
+ SkMatrix getTotalMatrix() const;
2140
+ #endif
2141
+
2142
+ ///////////////////////////////////////////////////////////////////////////
2143
+
2144
+ #if defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) && SK_SUPPORT_GPU
2145
+ // These methods exist to support WebView in Android Framework.
2146
+ SkIRect topLayerBounds() const;
2147
+ GrBackendRenderTarget topLayerBackendRenderTarget() const;
2148
+ #endif
2149
+
2150
+ /**
2151
+ * Returns the global clip as a region. If the clip contains AA, then only the bounds
2152
+ * of the clip may be returned.
2153
+ */
2154
+ void temporary_internal_getRgnClip(SkRegion* region);
2155
+
2156
+ void private_draw_shadow_rec(const SkPath&, const SkDrawShadowRec&);
2157
+
2158
+
2159
+ protected:
2160
+ // default impl defers to getDevice()->newSurface(info)
2161
+ virtual sk_sp<SkSurface> onNewSurface(const SkImageInfo& info, const SkSurfaceProps& props);
2162
+
2163
+ // default impl defers to its device
2164
+ virtual bool onPeekPixels(SkPixmap* pixmap);
2165
+ virtual bool onAccessTopLayerPixels(SkPixmap* pixmap);
2166
+ virtual SkImageInfo onImageInfo() const;
2167
+ virtual bool onGetProps(SkSurfaceProps* props) const;
2168
+ virtual void onFlush();
2169
+
2170
+ // Subclass save/restore notifiers.
2171
+ // Overriders should call the corresponding INHERITED method up the inheritance chain.
2172
+ // getSaveLayerStrategy()'s return value may suppress full layer allocation.
2173
+ enum SaveLayerStrategy {
2174
+ kFullLayer_SaveLayerStrategy,
2175
+ kNoLayer_SaveLayerStrategy,
2176
+ };
2177
+
2178
+ virtual void willSave() {}
2179
+ // Overriders should call the corresponding INHERITED method up the inheritance chain.
2180
+ virtual SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec& ) {
2181
+ return kFullLayer_SaveLayerStrategy;
2182
+ }
2183
+
2184
+ // returns true if we should actually perform the saveBehind, or false if we should just save.
2185
+ virtual bool onDoSaveBehind(const SkRect*) { return true; }
2186
+ virtual void willRestore() {}
2187
+ virtual void didRestore() {}
2188
+
2189
+ virtual void didConcat44(const SkM44&) {}
2190
+ virtual void didSetM44(const SkM44&) {}
2191
+ virtual void didTranslate(SkScalar, SkScalar) {}
2192
+ virtual void didScale(SkScalar, SkScalar) {}
2193
+
2194
+ #ifndef SK_ENABLE_EXPERIMENTAL_CUSTOM_MESH
2195
+ // Define this in protected so we can still access internally for testing.
2196
+ void drawCustomMesh(SkCustomMesh cm, sk_sp<SkBlender> blender, const SkPaint& paint);
2197
+ #endif
2198
+
2199
+ // NOTE: If you are adding a new onDraw virtual to SkCanvas, PLEASE add an override to
2200
+ // SkCanvasVirtualEnforcer (in SkCanvasVirtualEnforcer.h). This ensures that subclasses using
2201
+ // that mechanism will be required to implement the new function.
2202
+ virtual void onDrawPaint(const SkPaint& paint);
2203
+ virtual void onDrawBehind(const SkPaint& paint);
2204
+ virtual void onDrawRect(const SkRect& rect, const SkPaint& paint);
2205
+ virtual void onDrawRRect(const SkRRect& rrect, const SkPaint& paint);
2206
+ virtual void onDrawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint);
2207
+ virtual void onDrawOval(const SkRect& rect, const SkPaint& paint);
2208
+ virtual void onDrawArc(const SkRect& rect, SkScalar startAngle, SkScalar sweepAngle,
2209
+ bool useCenter, const SkPaint& paint);
2210
+ virtual void onDrawPath(const SkPath& path, const SkPaint& paint);
2211
+ virtual void onDrawRegion(const SkRegion& region, const SkPaint& paint);
2212
+
2213
+ virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
2214
+ const SkPaint& paint);
2215
+
2216
+ virtual void onDrawGlyphRunList(const SkGlyphRunList& glyphRunList, const SkPaint& paint);
2217
+
2218
+ virtual void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
2219
+ const SkPoint texCoords[4], SkBlendMode mode, const SkPaint& paint);
2220
+ virtual void onDrawPoints(PointMode mode, size_t count, const SkPoint pts[],
2221
+ const SkPaint& paint);
2222
+
2223
+ virtual void onDrawImage2(const SkImage*, SkScalar dx, SkScalar dy, const SkSamplingOptions&,
2224
+ const SkPaint*);
2225
+ virtual void onDrawImageRect2(const SkImage*, const SkRect& src, const SkRect& dst,
2226
+ const SkSamplingOptions&, const SkPaint*, SrcRectConstraint);
2227
+ virtual void onDrawImageLattice2(const SkImage*, const Lattice&, const SkRect& dst,
2228
+ SkFilterMode, const SkPaint*);
2229
+ virtual void onDrawAtlas2(const SkImage*, const SkRSXform[], const SkRect src[],
2230
+ const SkColor[], int count, SkBlendMode, const SkSamplingOptions&,
2231
+ const SkRect* cull, const SkPaint*);
2232
+ virtual void onDrawEdgeAAImageSet2(const ImageSetEntry imageSet[], int count,
2233
+ const SkPoint dstClips[], const SkMatrix preViewMatrices[],
2234
+ const SkSamplingOptions&, const SkPaint*,
2235
+ SrcRectConstraint);
2236
+
2237
+ virtual void onDrawVerticesObject(const SkVertices* vertices, SkBlendMode mode,
2238
+ const SkPaint& paint);
2239
+ #ifdef SK_ENABLE_SKSL
2240
+ virtual void onDrawCustomMesh(SkCustomMesh, sk_sp<SkBlender>, const SkPaint&);
2241
+ #endif
2242
+ virtual void onDrawAnnotation(const SkRect& rect, const char key[], SkData* value);
2243
+ virtual void onDrawShadowRec(const SkPath&, const SkDrawShadowRec&);
2244
+
2245
+ virtual void onDrawDrawable(SkDrawable* drawable, const SkMatrix* matrix);
2246
+ virtual void onDrawPicture(const SkPicture* picture, const SkMatrix* matrix,
2247
+ const SkPaint* paint);
2248
+
2249
+ virtual void onDrawEdgeAAQuad(const SkRect& rect, const SkPoint clip[4], QuadAAFlags aaFlags,
2250
+ const SkColor4f& color, SkBlendMode mode);
2251
+
2252
+ enum ClipEdgeStyle {
2253
+ kHard_ClipEdgeStyle,
2254
+ kSoft_ClipEdgeStyle
2255
+ };
2256
+
2257
+ virtual void onClipRect(const SkRect& rect, SkClipOp op, ClipEdgeStyle edgeStyle);
2258
+ virtual void onClipRRect(const SkRRect& rrect, SkClipOp op, ClipEdgeStyle edgeStyle);
2259
+ virtual void onClipPath(const SkPath& path, SkClipOp op, ClipEdgeStyle edgeStyle);
2260
+ virtual void onClipShader(sk_sp<SkShader>, SkClipOp);
2261
+ virtual void onClipRegion(const SkRegion& deviceRgn, SkClipOp op);
2262
+ virtual void onResetClip();
2263
+
2264
+ virtual void onDiscard();
2265
+
2266
+ #if SK_SUPPORT_GPU
2267
+ /** Experimental
2268
+ */
2269
+ virtual sk_sp<GrSlug> doConvertBlobToSlug(
2270
+ const SkTextBlob& blob, SkPoint origin, const SkPaint& paint);
2271
+
2272
+ /** Experimental
2273
+ */
2274
+ virtual void doDrawSlug(GrSlug* slug);
2275
+ #endif
2276
+
2277
+ private:
2278
+
2279
+ enum ShaderOverrideOpacity {
2280
+ kNone_ShaderOverrideOpacity, //!< there is no overriding shader (bitmap or image)
2281
+ kOpaque_ShaderOverrideOpacity, //!< the overriding shader is opaque
2282
+ kNotOpaque_ShaderOverrideOpacity, //!< the overriding shader may not be opaque
2283
+ };
2284
+
2285
+ // notify our surface (if we have one) that we are about to draw, so it
2286
+ // can perform copy-on-write or invalidate any cached images
2287
+ // returns false if the copy failed
2288
+ bool SK_WARN_UNUSED_RESULT predrawNotify(bool willOverwritesEntireSurface = false);
2289
+ bool SK_WARN_UNUSED_RESULT predrawNotify(const SkRect*, const SkPaint*, ShaderOverrideOpacity);
2290
+
2291
+ enum class CheckForOverwrite : bool {
2292
+ kNo = false,
2293
+ kYes = true
2294
+ };
2295
+ // call the appropriate predrawNotify and create a layer if needed.
2296
+ skstd::optional<AutoLayerForImageFilter> aboutToDraw(
2297
+ SkCanvas* canvas,
2298
+ const SkPaint& paint,
2299
+ const SkRect* rawBounds = nullptr,
2300
+ CheckForOverwrite = CheckForOverwrite::kNo,
2301
+ ShaderOverrideOpacity = kNone_ShaderOverrideOpacity);
2302
+
2303
+ // The bottom-most device in the stack, only changed by init(). Image properties and the final
2304
+ // canvas pixels are determined by this device.
2305
+ SkBaseDevice* baseDevice() const {
2306
+ SkASSERT(fBaseDevice);
2307
+ return fBaseDevice.get();
2308
+ }
2309
+
2310
+ // The top-most device in the stack, will change within saveLayer()'s. All drawing and clipping
2311
+ // operations should route to this device.
2312
+ SkBaseDevice* topDevice() const;
2313
+
2314
+ // Canvases maintain a sparse stack of layers, where the top-most layer receives the drawing,
2315
+ // clip, and matrix commands. There is a layer per call to saveLayer() using the
2316
+ // kFullLayer_SaveLayerStrategy.
2317
+ struct Layer {
2318
+ sk_sp<SkBaseDevice> fDevice;
2319
+ sk_sp<SkImageFilter> fImageFilter; // applied to layer *before* being drawn by paint
2320
+ SkPaint fPaint;
2321
+ bool fDiscard;
2322
+
2323
+ Layer(sk_sp<SkBaseDevice> device, sk_sp<SkImageFilter> imageFilter, const SkPaint& paint);
2324
+ };
2325
+
2326
+ // Encapsulate state needed to restore from saveBehind()
2327
+ struct BackImage {
2328
+ sk_sp<SkSpecialImage> fImage;
2329
+ SkIPoint fLoc;
2330
+ };
2331
+
2332
+ class MCRec {
2333
+ public:
2334
+ // If not null, this MCRec corresponds with the saveLayer() record that made the layer.
2335
+ // The base "layer" is not stored here, since it is stored inline in SkCanvas and has no
2336
+ // restoration behavior.
2337
+ std::unique_ptr<Layer> fLayer;
2338
+
2339
+ // This points to the device of the top-most layer (which may be lower in the stack), or
2340
+ // to the canvas's fBaseDevice. The MCRec does not own the device.
2341
+ SkBaseDevice* fDevice;
2342
+
2343
+ std::unique_ptr<BackImage> fBackImage;
2344
+ SkM44 fMatrix;
2345
+ int fDeferredSaveCount = 0;
2346
+
2347
+ MCRec(SkBaseDevice* device);
2348
+ MCRec(const MCRec* prev);
2349
+ ~MCRec();
2350
+
2351
+ void newLayer(sk_sp<SkBaseDevice> layerDevice,
2352
+ sk_sp<SkImageFilter> filter,
2353
+ const SkPaint& restorePaint);
2354
+
2355
+ void reset(SkBaseDevice* device);
2356
+ };
2357
+
2358
+ SkDeque fMCStack;
2359
+ // points to top of stack
2360
+ MCRec* fMCRec;
2361
+
2362
+ // the first N recs that can fit here mean we won't call malloc
2363
+ static constexpr int kMCRecSize = 96; // most recent measurement
2364
+ static constexpr int kMCRecCount = 32; // common depth for save/restores
2365
+
2366
+ intptr_t fMCRecStorage[kMCRecSize * kMCRecCount / sizeof(intptr_t)];
2367
+
2368
+ // Installed via init()
2369
+ sk_sp<SkBaseDevice> fBaseDevice;
2370
+ const SkSurfaceProps fProps;
2371
+
2372
+ int fSaveCount; // value returned by getSaveCount()
2373
+
2374
+ std::unique_ptr<SkRasterHandleAllocator> fAllocator;
2375
+
2376
+ SkSurface_Base* fSurfaceBase;
2377
+ SkSurface_Base* getSurfaceBase() const { return fSurfaceBase; }
2378
+ void setSurfaceBase(SkSurface_Base* sb) {
2379
+ fSurfaceBase = sb;
2380
+ }
2381
+ friend class SkSurface_Base;
2382
+ friend class SkSurface_Gpu;
2383
+
2384
+ SkIRect fClipRestrictionRect = SkIRect::MakeEmpty();
2385
+ int fClipRestrictionSaveCount = -1;
2386
+
2387
+ void doSave();
2388
+ void checkForDeferredSave();
2389
+ void internalSetMatrix(const SkM44&);
2390
+
2391
+ friend class SkAndroidFrameworkUtils;
2392
+ friend class SkCanvasPriv; // needs to expose android functions for testing outside android
2393
+ friend class AutoLayerForImageFilter;
2394
+ friend class SkSurface_Raster; // needs getDevice()
2395
+ friend class SkNoDrawCanvas; // needs resetForNextPicture()
2396
+ friend class SkNWayCanvas;
2397
+ friend class SkPictureRecord; // predrawNotify (why does it need it? <reed>)
2398
+ friend class SkOverdrawCanvas;
2399
+ friend class SkRasterHandleAllocator;
2400
+ protected:
2401
+ // For use by SkNoDrawCanvas (via SkCanvasVirtualEnforcer, which can't be a friend)
2402
+ SkCanvas(const SkIRect& bounds);
2403
+ private:
2404
+ SkCanvas(const SkBitmap&, std::unique_ptr<SkRasterHandleAllocator>,
2405
+ SkRasterHandleAllocator::Handle);
2406
+
2407
+ SkCanvas(SkCanvas&&) = delete;
2408
+ SkCanvas(const SkCanvas&) = delete;
2409
+ SkCanvas& operator=(SkCanvas&&) = delete;
2410
+ SkCanvas& operator=(const SkCanvas&) = delete;
2411
+
2412
+ #if SK_SUPPORT_GPU
2413
+ friend class GrSlug;
2414
+ /** Experimental
2415
+ * Convert a SkTextBlob to a GrSlug using the current canvas state.
2416
+ */
2417
+ sk_sp<GrSlug> convertBlobToSlug(const SkTextBlob& blob, SkPoint origin, const SkPaint& paint);
2418
+
2419
+ /** Experimental
2420
+ * Draw an GrSlug given the current canvas state.
2421
+ */
2422
+ void drawSlug(GrSlug* slug);
2423
+ #endif
2424
+
2425
+ /** Experimental
2426
+ * Saves the specified subset of the current pixels in the current layer,
2427
+ * and then clears those pixels to transparent black.
2428
+ * Restores the pixels on restore() by drawing them in SkBlendMode::kDstOver.
2429
+ *
2430
+ * @param subset conservative bounds of the area to be saved / restored.
2431
+ * @return depth of save state stack before this call was made.
2432
+ */
2433
+ int only_axis_aligned_saveBehind(const SkRect* subset);
2434
+
2435
+ /**
2436
+ * Like drawPaint, but magically clipped to the most recent saveBehind buffer rectangle.
2437
+ * If there is no active saveBehind, then this draws nothing.
2438
+ */
2439
+ void drawClippedToSaveBehind(const SkPaint&);
2440
+
2441
+ void resetForNextPicture(const SkIRect& bounds);
2442
+
2443
+ // needs gettotalclip()
2444
+ friend class SkCanvasStateUtils;
2445
+
2446
+ void init(sk_sp<SkBaseDevice>);
2447
+
2448
+ // All base onDrawX() functions should call this and skip drawing if it returns true.
2449
+ // If 'matrix' is non-null, it maps the paint's fast bounds before checking for quick rejection
2450
+ bool internalQuickReject(const SkRect& bounds, const SkPaint& paint,
2451
+ const SkMatrix* matrix = nullptr);
2452
+
2453
+ void internalDrawPaint(const SkPaint& paint);
2454
+ void internalSaveLayer(const SaveLayerRec&, SaveLayerStrategy);
2455
+ void internalSaveBehind(const SkRect*);
2456
+
2457
+ void internalConcat44(const SkM44&);
2458
+
2459
+ // shared by save() and saveLayer()
2460
+ void internalSave();
2461
+ void internalRestore();
2462
+
2463
+ enum class DeviceCompatibleWithFilter : bool {
2464
+ // Check the src device's local-to-device matrix for compatibility with the filter, and if
2465
+ // it is not compatible, introduce an intermediate image and transformation that allows the
2466
+ // filter to be evaluated on the modified src content.
2467
+ kUnknown = false,
2468
+ // Assume that the src device's local-to-device matrix is compatible with the filter.
2469
+ kYes = true
2470
+ };
2471
+ /**
2472
+ * Filters the contents of 'src' and draws the result into 'dst'. The filter is evaluated
2473
+ * relative to the current canvas matrix, and src is drawn to dst using their relative transform
2474
+ * 'paint' is applied after the filter and must not have a mask or image filter of its own.
2475
+ * A null 'filter' behaves as if the identity filter were used.
2476
+ *
2477
+ * 'scaleFactor' is an extra uniform scale transform applied to downscale the 'src' image
2478
+ * before any filtering, or as part of the copy, and is then drawn with 1/scaleFactor to 'dst'.
2479
+ * Must be 1.0 if 'compat' is kYes (i.e. any scale factor has already been baked into the
2480
+ * relative transforms between the devices).
2481
+ */
2482
+ void internalDrawDeviceWithFilter(SkBaseDevice* src, SkBaseDevice* dst,
2483
+ const SkImageFilter* filter, const SkPaint& paint,
2484
+ DeviceCompatibleWithFilter compat,
2485
+ SkScalar scaleFactor = 1.f);
2486
+
2487
+ /*
2488
+ * Returns true if drawing the specified rect (or all if it is null) with the specified
2489
+ * paint (or default if null) would overwrite the entire root device of the canvas
2490
+ * (i.e. the canvas' surface if it had one).
2491
+ */
2492
+ bool wouldOverwriteEntireSurface(const SkRect*, const SkPaint*, ShaderOverrideOpacity) const;
2493
+
2494
+ /**
2495
+ * Returns true if the paint's imagefilter can be invoked directly, without needed a layer.
2496
+ */
2497
+ bool canDrawBitmapAsSprite(SkScalar x, SkScalar y, int w, int h, const SkSamplingOptions&,
2498
+ const SkPaint&);
2499
+
2500
+ /**
2501
+ * Returns true if the clip (for any active layer) contains antialiasing.
2502
+ * If the clip is empty, this will return false.
2503
+ */
2504
+ bool androidFramework_isClipAA() const;
2505
+
2506
+ /**
2507
+ * Reset the clip to be wide-open (modulo any separately specified device clip restriction).
2508
+ * This operate within the save/restore clip stack so it can be undone by restoring to an
2509
+ * earlier save point.
2510
+ */
2511
+ void internal_private_resetClip();
2512
+
2513
+ virtual SkPaintFilterCanvas* internal_private_asPaintFilterCanvas() const { return nullptr; }
2514
+
2515
+ // Keep track of the device clip bounds in the canvas' global space to reject draws before
2516
+ // invoking the top-level device.
2517
+ SkRect fQuickRejectBounds;
2518
+
2519
+ // Compute the clip's bounds based on all clipped SkDevice's reported device bounds transformed
2520
+ // into the canvas' global space.
2521
+ SkRect computeDeviceClipBounds(bool outsetForAA=true) const;
2522
+
2523
+ class AutoUpdateQRBounds;
2524
+ void validateClip() const;
2525
+
2526
+ std::unique_ptr<SkGlyphRunBuilder> fScratchGlyphRunBuilder;
2527
+
2528
+ using INHERITED = SkRefCnt;
2529
+ };
2530
+
2531
+ /** \class SkAutoCanvasRestore
2532
+ Stack helper class calls SkCanvas::restoreToCount when SkAutoCanvasRestore
2533
+ goes out of scope. Use this to guarantee that the canvas is restored to a known
2534
+ state.
2535
+ */
2536
+ class SkAutoCanvasRestore {
2537
+ public:
2538
+
2539
+ /** Preserves SkCanvas::save() count. Optionally saves SkCanvas clip and SkCanvas matrix.
2540
+
2541
+ @param canvas SkCanvas to guard
2542
+ @param doSave call SkCanvas::save()
2543
+ @return utility to restore SkCanvas state on destructor
2544
+ */
2545
+ SkAutoCanvasRestore(SkCanvas* canvas, bool doSave) : fCanvas(canvas), fSaveCount(0) {
2546
+ if (fCanvas) {
2547
+ fSaveCount = canvas->getSaveCount();
2548
+ if (doSave) {
2549
+ canvas->save();
2550
+ }
2551
+ }
2552
+ }
2553
+
2554
+ /** Restores SkCanvas to saved state. Destructor is called when container goes out of
2555
+ scope.
2556
+ */
2557
+ ~SkAutoCanvasRestore() {
2558
+ if (fCanvas) {
2559
+ fCanvas->restoreToCount(fSaveCount);
2560
+ }
2561
+ }
2562
+
2563
+ /** Restores SkCanvas to saved state immediately. Subsequent calls and
2564
+ ~SkAutoCanvasRestore() have no effect.
2565
+ */
2566
+ void restore() {
2567
+ if (fCanvas) {
2568
+ fCanvas->restoreToCount(fSaveCount);
2569
+ fCanvas = nullptr;
2570
+ }
2571
+ }
2572
+
2573
+ private:
2574
+ SkCanvas* fCanvas;
2575
+ int fSaveCount;
2576
+
2577
+ SkAutoCanvasRestore(SkAutoCanvasRestore&&) = delete;
2578
+ SkAutoCanvasRestore(const SkAutoCanvasRestore&) = delete;
2579
+ SkAutoCanvasRestore& operator=(SkAutoCanvasRestore&&) = delete;
2580
+ SkAutoCanvasRestore& operator=(const SkAutoCanvasRestore&) = delete;
2581
+ };
2582
+
2583
+ #endif