@shopify/react-native-skia 0.1.122 → 0.1.125

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 (466) hide show
  1. package/android/CMakeLists.txt +6 -1
  2. package/android/build.gradle +1 -1
  3. package/android/cpp/jni/JniSkiaDrawView.cpp +14 -71
  4. package/android/cpp/jni/JniSkiaManager.cpp +1 -1
  5. package/android/cpp/jni/include/JniSkiaDrawView.h +18 -22
  6. package/android/cpp/jni/include/JniSkiaManager.h +4 -4
  7. package/android/cpp/rnskia-android/RNSkDrawViewImpl.cpp +68 -0
  8. package/android/cpp/rnskia-android/RNSkDrawViewImpl.h +48 -0
  9. package/android/cpp/{jni/include/JniPlatformContextWrapper.h → rnskia-android/RNSkPlatformContextImpl.h} +4 -4
  10. package/android/cpp/{jni → rnskia-android}/SkiaOpenGLRenderer.cpp +39 -54
  11. package/android/cpp/{jni/include → rnskia-android}/SkiaOpenGLRenderer.h +2 -31
  12. package/android/src/main/java/com/shopify/reactnative/skia/RNSkiaViewManager.java +1 -1
  13. package/android/src/main/java/com/shopify/reactnative/skia/SkiaDrawView.java +21 -28
  14. package/cpp/api/JsiSkApi.h +3 -1
  15. package/cpp/api/JsiSkCanvas.h +1 -1
  16. package/cpp/api/JsiSkColor.h +41 -7
  17. package/cpp/api/JsiSkColorFilterFactory.h +2 -1
  18. package/cpp/api/JsiSkImageFilter.h +0 -2
  19. package/cpp/api/JsiSkImageFilterFactory.h +37 -17
  20. package/cpp/api/JsiSkMatrix.h +44 -2
  21. package/cpp/api/JsiSkPaint.h +4 -7
  22. package/cpp/api/JsiSkRuntimeEffect.h +7 -0
  23. package/cpp/api/JsiSkRuntimeEffectFactory.h +3 -2
  24. package/cpp/api/JsiSkRuntimeShaderBuilder.h +70 -0
  25. package/cpp/api/JsiSkShaderFactory.h +2 -2
  26. package/cpp/api/JsiSkVertices.h +1 -1
  27. package/cpp/api/third_party/CSSColorParser.cpp +194 -0
  28. package/cpp/api/third_party/CSSColorParser.h +1 -191
  29. package/cpp/jsi/JsiSimpleValueWrapper.h +98 -0
  30. package/cpp/rnskia/RNSkAnimation.h +0 -2
  31. package/cpp/rnskia/RNSkDrawView.cpp +84 -126
  32. package/cpp/rnskia/RNSkDrawView.h +7 -37
  33. package/cpp/rnskia/RNSkJsiViewApi.h +8 -5
  34. package/cpp/rnskia/RNSkManager.cpp +2 -2
  35. package/cpp/rnskia/RNSkManager.h +2 -2
  36. package/cpp/rnskia/RNSkPlatformContext.h +1 -1
  37. package/cpp/rnskia/RNSkValueApi.h +6 -2
  38. package/cpp/rnskia/values/RNSkClockValue.h +18 -10
  39. package/cpp/rnskia/values/RNSkDerivedValue.h +12 -5
  40. package/cpp/rnskia/values/RNSkReadonlyValue.h +25 -17
  41. package/cpp/rnskia/values/RNSkValue.h +8 -3
  42. package/cpp/utils/RNSkTimingInfo.h +13 -1
  43. package/ios/RNSkia-iOS/PlatformContext.h +30 -4
  44. package/ios/RNSkia-iOS/RNSkDrawViewImpl.h +8 -10
  45. package/ios/RNSkia-iOS/RNSkDrawViewImpl.mm +25 -10
  46. package/ios/RNSkia-iOS/SkiaDrawView.mm +22 -20
  47. package/lib/commonjs/{values/animation → animation}/decay/decay.js +0 -0
  48. package/lib/commonjs/{values/animation → animation}/decay/decay.js.map +0 -0
  49. package/lib/commonjs/{values/animation → animation}/decay/index.js +0 -0
  50. package/lib/commonjs/{values/animation → animation}/decay/index.js.map +0 -0
  51. package/lib/commonjs/{values/animation → animation}/decay/runDecay.js +1 -1
  52. package/lib/commonjs/animation/decay/runDecay.js.map +1 -0
  53. package/lib/commonjs/{values/animation → animation}/decay/types.js +0 -0
  54. package/lib/commonjs/{values/animation → animation}/decay/types.js.map +0 -0
  55. package/lib/commonjs/{values/animation → animation}/functions/index.js +0 -0
  56. package/lib/commonjs/{values/animation → animation}/functions/index.js.map +0 -0
  57. package/lib/commonjs/animation/functions/interpolate.js +141 -0
  58. package/lib/commonjs/animation/functions/interpolate.js.map +1 -0
  59. package/lib/commonjs/animation/functions/interpolateColors.js +39 -0
  60. package/lib/commonjs/animation/functions/interpolateColors.js.map +1 -0
  61. package/lib/commonjs/{values/animation → animation}/index.js +0 -0
  62. package/lib/commonjs/{values/animation → animation}/index.js.map +0 -0
  63. package/lib/commonjs/{values/animation → animation}/spring/Spring.js +0 -0
  64. package/lib/commonjs/{values/animation → animation}/spring/Spring.js.map +0 -0
  65. package/lib/commonjs/{values/animation → animation}/spring/functions/index.js +0 -0
  66. package/lib/commonjs/{values/animation → animation}/spring/functions/index.js.map +0 -0
  67. package/lib/commonjs/{values/animation → animation}/spring/functions/spring.js +0 -0
  68. package/lib/commonjs/{values/animation → animation}/spring/functions/spring.js.map +0 -0
  69. package/lib/commonjs/{values/animation → animation}/spring/index.js +0 -0
  70. package/lib/commonjs/{values/animation → animation}/spring/index.js.map +0 -0
  71. package/lib/commonjs/{values/animation → animation}/spring/runSpring.js +0 -0
  72. package/lib/commonjs/animation/spring/runSpring.js.map +1 -0
  73. package/lib/commonjs/{values/animation → animation}/spring/types.js +0 -0
  74. package/lib/commonjs/{values/animation → animation}/spring/types.js.map +0 -0
  75. package/lib/commonjs/{values/animation → animation}/spring/useSpring.js +0 -0
  76. package/lib/commonjs/animation/spring/useSpring.js.map +1 -0
  77. package/lib/commonjs/{values/animation → animation}/timing/Easing.js +0 -0
  78. package/lib/commonjs/{values/animation → animation}/timing/Easing.js.map +0 -0
  79. package/lib/commonjs/{values/animation → animation}/timing/createTiming.js +1 -1
  80. package/lib/commonjs/animation/timing/createTiming.js.map +1 -0
  81. package/lib/commonjs/{values/animation → animation}/timing/functions/bezier.js +0 -0
  82. package/lib/commonjs/{values/animation → animation}/timing/functions/bezier.js.map +0 -0
  83. package/lib/commonjs/{values/animation → animation}/timing/functions/getResolvedParams.js +3 -3
  84. package/lib/commonjs/animation/timing/functions/getResolvedParams.js.map +1 -0
  85. package/lib/commonjs/{values/animation → animation}/timing/functions/index.js +0 -0
  86. package/lib/commonjs/{values/animation → animation}/timing/functions/index.js.map +0 -0
  87. package/lib/commonjs/{values/animation → animation}/timing/functions/timing.js +0 -0
  88. package/lib/commonjs/{values/animation → animation}/timing/functions/timing.js.map +1 -1
  89. package/lib/commonjs/{values/animation → animation}/timing/functions/types.js +0 -0
  90. package/lib/commonjs/{values/animation → animation}/timing/functions/types.js.map +0 -0
  91. package/lib/commonjs/{values/animation → animation}/timing/index.js +0 -0
  92. package/lib/commonjs/{values/animation → animation}/timing/index.js.map +0 -0
  93. package/lib/commonjs/{values/animation → animation}/timing/runTiming.js +0 -0
  94. package/lib/commonjs/animation/timing/runTiming.js.map +1 -0
  95. package/lib/commonjs/{values/animation → animation}/timing/useLoop.js +0 -0
  96. package/lib/commonjs/{values/animation → animation}/timing/useLoop.js.map +0 -0
  97. package/lib/commonjs/{values/animation → animation}/timing/useTiming.js +1 -1
  98. package/lib/commonjs/animation/timing/useTiming.js.map +1 -0
  99. package/lib/commonjs/{values/animation → animation}/types.js +0 -0
  100. package/lib/commonjs/{values/animation → animation}/types.js.map +0 -0
  101. package/lib/commonjs/index.js +13 -0
  102. package/lib/commonjs/index.js.map +1 -1
  103. package/lib/commonjs/renderer/Canvas.js +17 -8
  104. package/lib/commonjs/renderer/Canvas.js.map +1 -1
  105. package/lib/commonjs/renderer/components/Paint.js +1 -1
  106. package/lib/commonjs/renderer/components/Paint.js.map +1 -1
  107. package/lib/commonjs/renderer/components/colorFilters/BlendColor.js.map +1 -1
  108. package/lib/commonjs/renderer/components/colorFilters/Lerp.js +1 -1
  109. package/lib/commonjs/renderer/components/colorFilters/Lerp.js.map +1 -1
  110. package/lib/commonjs/renderer/components/imageFilters/InnerShadow.js +4 -2
  111. package/lib/commonjs/renderer/components/imageFilters/InnerShadow.js.map +1 -1
  112. package/lib/commonjs/renderer/components/imageFilters/RuntimeShader.js +37 -0
  113. package/lib/commonjs/renderer/components/imageFilters/RuntimeShader.js.map +1 -0
  114. package/lib/commonjs/renderer/components/imageFilters/index.js +13 -0
  115. package/lib/commonjs/renderer/components/imageFilters/index.js.map +1 -1
  116. package/lib/commonjs/renderer/components/shaders/Gradient.js +1 -1
  117. package/lib/commonjs/renderer/components/shaders/Gradient.js.map +1 -1
  118. package/lib/commonjs/renderer/components/shaders/Shader.js +2 -2
  119. package/lib/commonjs/renderer/components/shaders/Shader.js.map +1 -1
  120. package/lib/commonjs/renderer/components/shapes/Path.js +9 -1
  121. package/lib/commonjs/renderer/components/shapes/Path.js.map +1 -1
  122. package/lib/commonjs/renderer/processors/Circles.js +3 -2
  123. package/lib/commonjs/renderer/processors/Circles.js.map +1 -1
  124. package/lib/commonjs/renderer/processors/Font.js +1 -1
  125. package/lib/commonjs/renderer/processors/Font.js.map +1 -1
  126. package/lib/commonjs/renderer/processors/Paint.js +6 -1
  127. package/lib/commonjs/renderer/processors/Paint.js.map +1 -1
  128. package/lib/commonjs/renderer/processors/Rects.js +11 -21
  129. package/lib/commonjs/renderer/processors/Rects.js.map +1 -1
  130. package/lib/commonjs/renderer/processors/math/Matrix3.js +42 -63
  131. package/lib/commonjs/renderer/processors/math/Matrix3.js.map +1 -1
  132. package/lib/commonjs/renderer/processors/math/Vector.js +4 -5
  133. package/lib/commonjs/renderer/processors/math/Vector.js.map +1 -1
  134. package/lib/commonjs/skia/Color.js +14 -38
  135. package/lib/commonjs/skia/Color.js.map +1 -1
  136. package/lib/commonjs/skia/ImageFilter/ImageFilterFactory.js.map +1 -1
  137. package/lib/commonjs/skia/Matrix.js.map +1 -1
  138. package/lib/commonjs/skia/Paint/Paint.js +13 -1
  139. package/lib/commonjs/skia/Paint/Paint.js.map +1 -1
  140. package/lib/commonjs/skia/Paint/usePaint.js +2 -4
  141. package/lib/commonjs/skia/Paint/usePaint.js.map +1 -1
  142. package/lib/commonjs/skia/Shader/useShader.js +4 -1
  143. package/lib/commonjs/skia/Shader/useShader.js.map +1 -1
  144. package/lib/commonjs/skia/Skia.js +3 -43
  145. package/lib/commonjs/skia/Skia.js.map +1 -1
  146. package/lib/commonjs/skia/SkiaApi.js +4 -0
  147. package/lib/commonjs/skia/SkiaApi.js.map +1 -0
  148. package/lib/commonjs/values/api.js +4 -6
  149. package/lib/commonjs/values/api.js.map +1 -1
  150. package/lib/commonjs/values/api.web.js +18 -0
  151. package/lib/commonjs/values/api.web.js.map +1 -0
  152. package/lib/commonjs/values/index.js +0 -13
  153. package/lib/commonjs/values/index.js.map +1 -1
  154. package/lib/commonjs/values/web/RNSkAnimation.js +46 -0
  155. package/lib/commonjs/values/web/RNSkAnimation.js.map +1 -0
  156. package/lib/commonjs/values/web/RNSkClockValue.js +75 -0
  157. package/lib/commonjs/values/web/RNSkClockValue.js.map +1 -0
  158. package/lib/commonjs/values/web/RNSkDerivedValue.js +51 -0
  159. package/lib/commonjs/values/web/RNSkDerivedValue.js.map +1 -0
  160. package/lib/commonjs/values/web/RNSkReadonlyValue.js +45 -0
  161. package/lib/commonjs/values/web/RNSkReadonlyValue.js.map +1 -0
  162. package/lib/commonjs/values/web/RNSkValue.js +73 -0
  163. package/lib/commonjs/values/web/RNSkValue.js.map +1 -0
  164. package/lib/commonjs/values/web/api.js +31 -0
  165. package/lib/commonjs/values/web/api.js.map +1 -0
  166. package/lib/commonjs/values/web/index.js +19 -0
  167. package/lib/commonjs/values/web/index.js.map +1 -0
  168. package/lib/commonjs/views/SkiaView.js +13 -10
  169. package/lib/commonjs/views/SkiaView.js.map +1 -1
  170. package/lib/commonjs/views/api.js +11 -0
  171. package/lib/commonjs/views/api.js.map +1 -0
  172. package/lib/commonjs/views/types.js.map +1 -1
  173. package/lib/module/{values/animation → animation}/decay/decay.js +0 -0
  174. package/lib/module/{values/animation → animation}/decay/decay.js.map +0 -0
  175. package/lib/module/{values/animation → animation}/decay/index.js +0 -0
  176. package/lib/module/{values/animation → animation}/decay/index.js.map +0 -0
  177. package/lib/module/{values/animation → animation}/decay/runDecay.js +1 -1
  178. package/lib/module/animation/decay/runDecay.js.map +1 -0
  179. package/lib/module/{values/animation → animation}/decay/types.js +0 -0
  180. package/lib/module/{values/animation → animation}/decay/types.js.map +0 -0
  181. package/lib/module/{values/animation → animation}/functions/index.js +0 -0
  182. package/lib/module/{values/animation → animation}/functions/index.js.map +0 -0
  183. package/lib/module/animation/functions/interpolate.js +132 -0
  184. package/lib/module/animation/functions/interpolate.js.map +1 -0
  185. package/lib/module/animation/functions/interpolateColors.js +23 -0
  186. package/lib/module/animation/functions/interpolateColors.js.map +1 -0
  187. package/lib/module/{values/animation → animation}/index.js +0 -0
  188. package/lib/module/{values/animation → animation}/index.js.map +0 -0
  189. package/lib/module/{values/animation → animation}/spring/Spring.js +0 -0
  190. package/lib/module/{values/animation → animation}/spring/Spring.js.map +0 -0
  191. package/lib/module/{values/animation → animation}/spring/functions/index.js +0 -0
  192. package/lib/module/{values/animation → animation}/spring/functions/index.js.map +0 -0
  193. package/lib/module/{values/animation → animation}/spring/functions/spring.js +0 -0
  194. package/lib/module/{values/animation → animation}/spring/functions/spring.js.map +0 -0
  195. package/lib/module/{values/animation → animation}/spring/index.js +0 -0
  196. package/lib/module/{values/animation → animation}/spring/index.js.map +0 -0
  197. package/lib/module/{values/animation → animation}/spring/runSpring.js +0 -0
  198. package/lib/module/animation/spring/runSpring.js.map +1 -0
  199. package/lib/module/{values/animation → animation}/spring/types.js +0 -0
  200. package/lib/module/{values/animation → animation}/spring/types.js.map +0 -0
  201. package/lib/module/{values/animation → animation}/spring/useSpring.js +0 -0
  202. package/lib/module/animation/spring/useSpring.js.map +1 -0
  203. package/lib/module/{values/animation → animation}/timing/Easing.js +0 -0
  204. package/lib/module/{values/animation → animation}/timing/Easing.js.map +0 -0
  205. package/lib/module/{values/animation → animation}/timing/createTiming.js +1 -1
  206. package/lib/module/animation/timing/createTiming.js.map +1 -0
  207. package/lib/module/{values/animation → animation}/timing/functions/bezier.js +0 -0
  208. package/lib/module/{values/animation → animation}/timing/functions/bezier.js.map +0 -0
  209. package/lib/module/{values/animation → animation}/timing/functions/getResolvedParams.js +3 -3
  210. package/lib/module/animation/timing/functions/getResolvedParams.js.map +1 -0
  211. package/lib/module/{values/animation → animation}/timing/functions/index.js +0 -0
  212. package/lib/module/{values/animation → animation}/timing/functions/index.js.map +0 -0
  213. package/lib/module/{values/animation → animation}/timing/functions/timing.js +0 -0
  214. package/lib/module/{values/animation → animation}/timing/functions/timing.js.map +1 -1
  215. package/lib/module/{values/animation → animation}/timing/functions/types.js +0 -0
  216. package/lib/module/{values/animation → animation}/timing/functions/types.js.map +0 -0
  217. package/lib/module/{values/animation → animation}/timing/index.js +0 -0
  218. package/lib/module/{values/animation → animation}/timing/index.js.map +0 -0
  219. package/lib/module/{values/animation → animation}/timing/runTiming.js +0 -0
  220. package/lib/module/animation/timing/runTiming.js.map +1 -0
  221. package/lib/module/{values/animation → animation}/timing/useLoop.js +0 -0
  222. package/lib/module/{values/animation → animation}/timing/useLoop.js.map +0 -0
  223. package/lib/module/{values/animation → animation}/timing/useTiming.js +1 -1
  224. package/lib/module/animation/timing/useTiming.js.map +1 -0
  225. package/lib/module/{values/animation → animation}/types.js +0 -0
  226. package/lib/module/{values/animation → animation}/types.js.map +0 -0
  227. package/lib/module/index.js +1 -0
  228. package/lib/module/index.js.map +1 -1
  229. package/lib/module/renderer/Canvas.js +12 -6
  230. package/lib/module/renderer/Canvas.js.map +1 -1
  231. package/lib/module/renderer/components/Paint.js +2 -2
  232. package/lib/module/renderer/components/Paint.js.map +1 -1
  233. package/lib/module/renderer/components/colorFilters/BlendColor.js.map +1 -1
  234. package/lib/module/renderer/components/colorFilters/Lerp.js +1 -1
  235. package/lib/module/renderer/components/colorFilters/Lerp.js.map +1 -1
  236. package/lib/module/renderer/components/imageFilters/InnerShadow.js +3 -2
  237. package/lib/module/renderer/components/imageFilters/InnerShadow.js.map +1 -1
  238. package/lib/module/renderer/components/imageFilters/RuntimeShader.js +19 -0
  239. package/lib/module/renderer/components/imageFilters/RuntimeShader.js.map +1 -0
  240. package/lib/module/renderer/components/imageFilters/index.js +1 -0
  241. package/lib/module/renderer/components/imageFilters/index.js.map +1 -1
  242. package/lib/module/renderer/components/shaders/Gradient.js +2 -2
  243. package/lib/module/renderer/components/shaders/Gradient.js.map +1 -1
  244. package/lib/module/renderer/components/shaders/Shader.js +3 -2
  245. package/lib/module/renderer/components/shaders/Shader.js.map +1 -1
  246. package/lib/module/renderer/components/shapes/Path.js +9 -2
  247. package/lib/module/renderer/components/shapes/Path.js.map +1 -1
  248. package/lib/module/renderer/processors/Circles.js +3 -2
  249. package/lib/module/renderer/processors/Circles.js.map +1 -1
  250. package/lib/module/renderer/processors/Font.js +1 -1
  251. package/lib/module/renderer/processors/Font.js.map +1 -1
  252. package/lib/module/renderer/processors/Paint.js +6 -1
  253. package/lib/module/renderer/processors/Paint.js.map +1 -1
  254. package/lib/module/renderer/processors/Rects.js +9 -21
  255. package/lib/module/renderer/processors/Rects.js.map +1 -1
  256. package/lib/module/renderer/processors/math/Matrix3.js +52 -72
  257. package/lib/module/renderer/processors/math/Matrix3.js.map +1 -1
  258. package/lib/module/renderer/processors/math/Vector.js +3 -5
  259. package/lib/module/renderer/processors/math/Vector.js.map +1 -1
  260. package/lib/module/skia/Color.js +9 -25
  261. package/lib/module/skia/Color.js.map +1 -1
  262. package/lib/module/skia/ImageFilter/ImageFilterFactory.js.map +1 -1
  263. package/lib/module/skia/Matrix.js.map +1 -1
  264. package/lib/module/skia/Paint/Paint.js +6 -0
  265. package/lib/module/skia/Paint/Paint.js.map +1 -1
  266. package/lib/module/skia/Paint/usePaint.js +2 -3
  267. package/lib/module/skia/Paint/usePaint.js.map +1 -1
  268. package/lib/module/skia/Shader/useShader.js +4 -1
  269. package/lib/module/skia/Shader/useShader.js.map +1 -1
  270. package/lib/module/skia/Skia.js +2 -44
  271. package/lib/module/skia/Skia.js.map +1 -1
  272. package/lib/module/skia/SkiaApi.js +2 -0
  273. package/lib/module/skia/SkiaApi.js.map +1 -0
  274. package/lib/module/values/api.js +4 -6
  275. package/lib/module/values/api.js.map +1 -1
  276. package/lib/module/values/api.web.js +7 -0
  277. package/lib/module/values/api.web.js.map +1 -0
  278. package/lib/module/values/index.js +0 -1
  279. package/lib/module/values/index.js.map +1 -1
  280. package/lib/module/values/web/RNSkAnimation.js +36 -0
  281. package/lib/module/values/web/RNSkAnimation.js.map +1 -0
  282. package/lib/module/values/web/RNSkClockValue.js +65 -0
  283. package/lib/module/values/web/RNSkClockValue.js.map +1 -0
  284. package/lib/module/values/web/RNSkDerivedValue.js +41 -0
  285. package/lib/module/values/web/RNSkDerivedValue.js.map +1 -0
  286. package/lib/module/values/web/RNSkReadonlyValue.js +36 -0
  287. package/lib/module/values/web/RNSkReadonlyValue.js.map +1 -0
  288. package/lib/module/values/web/RNSkValue.js +63 -0
  289. package/lib/module/values/web/RNSkValue.js.map +1 -0
  290. package/lib/module/values/web/api.js +19 -0
  291. package/lib/module/values/web/api.js.map +1 -0
  292. package/lib/module/values/web/index.js +2 -0
  293. package/lib/module/values/web/index.js.map +1 -0
  294. package/lib/module/views/SkiaView.js +1 -3
  295. package/lib/module/views/SkiaView.js.map +1 -1
  296. package/lib/module/views/api.js +4 -0
  297. package/lib/module/views/api.js.map +1 -0
  298. package/lib/module/views/types.js.map +1 -1
  299. package/lib/typescript/src/{values/animation → animation}/decay/decay.d.ts +0 -0
  300. package/lib/typescript/src/{values/animation → animation}/decay/index.d.ts +0 -0
  301. package/lib/typescript/src/{values/animation → animation}/decay/runDecay.d.ts +2 -2
  302. package/lib/typescript/src/{values/animation → animation}/decay/types.d.ts +1 -1
  303. package/lib/typescript/src/{values/animation → animation}/functions/index.d.ts +0 -0
  304. package/lib/typescript/src/animation/functions/interpolate.d.ts +11 -0
  305. package/lib/typescript/src/animation/functions/interpolateColors.d.ts +3 -0
  306. package/lib/typescript/src/{values/animation → animation}/index.d.ts +0 -0
  307. package/lib/typescript/src/{values/animation → animation}/spring/Spring.d.ts +0 -0
  308. package/lib/typescript/src/{values/animation → animation}/spring/functions/index.d.ts +0 -0
  309. package/lib/typescript/src/{values/animation → animation}/spring/functions/spring.d.ts +0 -0
  310. package/lib/typescript/src/{values/animation → animation}/spring/index.d.ts +0 -0
  311. package/lib/typescript/src/{values/animation → animation}/spring/runSpring.d.ts +1 -1
  312. package/lib/typescript/src/{values/animation → animation}/spring/types.d.ts +0 -0
  313. package/lib/typescript/src/{values/animation → animation}/spring/useSpring.d.ts +1 -1
  314. package/lib/typescript/src/{values/animation → animation}/timing/Easing.d.ts +0 -0
  315. package/lib/typescript/src/{values/animation → animation}/timing/createTiming.d.ts +2 -2
  316. package/lib/typescript/src/{values/animation → animation}/timing/functions/bezier.d.ts +0 -0
  317. package/lib/typescript/src/{values/animation → animation}/timing/functions/getResolvedParams.d.ts +0 -0
  318. package/lib/typescript/src/{values/animation → animation}/timing/functions/index.d.ts +0 -0
  319. package/lib/typescript/src/{values/animation → animation}/timing/functions/timing.d.ts +1 -1
  320. package/lib/typescript/src/{values/animation → animation}/timing/functions/types.d.ts +0 -0
  321. package/lib/typescript/src/{values/animation → animation}/timing/index.d.ts +0 -0
  322. package/lib/typescript/src/{values/animation → animation}/timing/runTiming.d.ts +1 -1
  323. package/lib/typescript/src/{values/animation → animation}/timing/useLoop.d.ts +0 -0
  324. package/lib/typescript/src/{values/animation → animation}/timing/useTiming.d.ts +1 -1
  325. package/lib/typescript/src/{values/animation → animation}/types.d.ts +5 -5
  326. package/lib/typescript/src/index.d.ts +1 -0
  327. package/lib/typescript/src/renderer/Canvas.d.ts +6 -0
  328. package/lib/typescript/src/renderer/components/colorFilters/BlendColor.d.ts +1 -1
  329. package/lib/typescript/src/renderer/components/imageFilters/RuntimeShader.d.ts +7 -0
  330. package/lib/typescript/src/renderer/components/imageFilters/index.d.ts +1 -0
  331. package/lib/typescript/src/renderer/components/shaders/Gradient.d.ts +1 -1
  332. package/lib/typescript/src/renderer/components/shaders/Shader.d.ts +2 -2
  333. package/lib/typescript/src/renderer/components/shapes/Circle.d.ts +1 -4
  334. package/lib/typescript/src/renderer/components/shapes/Path.d.ts +3 -1
  335. package/lib/typescript/src/renderer/processors/Paint.d.ts +2 -1
  336. package/lib/typescript/src/renderer/processors/Rects.d.ts +9 -41
  337. package/lib/typescript/src/renderer/processors/math/Matrix3.d.ts +1 -5
  338. package/lib/typescript/src/renderer/processors/math/Vector.d.ts +5 -17
  339. package/lib/typescript/src/skia/Color.d.ts +8 -9
  340. package/lib/typescript/src/skia/ImageFilter/ImageFilterFactory.d.ts +16 -0
  341. package/lib/typescript/src/skia/Matrix.d.ts +7 -1
  342. package/lib/typescript/src/skia/Paint/Paint.d.ts +1 -0
  343. package/lib/typescript/src/skia/RuntimeEffect/RuntimeEffect.d.ts +2 -1
  344. package/lib/typescript/src/skia/RuntimeEffect/RuntimeEffectFactory.d.ts +2 -2
  345. package/lib/typescript/src/skia/Shader/useShader.d.ts +1 -1
  346. package/lib/typescript/src/skia/Skia.d.ts +28 -95
  347. package/lib/typescript/src/skia/SkiaApi.d.ts +71 -0
  348. package/lib/typescript/src/skia/Surface/Surface.d.ts +1 -1
  349. package/lib/typescript/src/skia/Surface/SurfaceFactory.d.ts +2 -2
  350. package/lib/typescript/src/values/api.d.ts +2 -25
  351. package/lib/typescript/src/values/api.web.d.ts +2 -0
  352. package/lib/typescript/src/values/index.d.ts +0 -1
  353. package/lib/typescript/src/values/types.d.ts +24 -1
  354. package/lib/typescript/src/values/web/RNSkAnimation.d.ts +9 -0
  355. package/lib/typescript/src/values/web/RNSkClockValue.d.ts +13 -0
  356. package/lib/typescript/src/values/web/RNSkDerivedValue.d.ts +9 -0
  357. package/lib/typescript/src/values/web/RNSkReadonlyValue.d.ts +11 -0
  358. package/lib/typescript/src/values/web/RNSkValue.d.ts +14 -0
  359. package/lib/typescript/src/values/web/api.d.ts +2 -0
  360. package/lib/typescript/src/values/web/index.d.ts +1 -0
  361. package/lib/typescript/src/views/SkiaView.d.ts +3 -36
  362. package/lib/typescript/src/views/api.d.ts +5 -0
  363. package/lib/typescript/src/views/types.d.ts +32 -0
  364. package/package.json +2 -2
  365. package/src/{values/animation → animation}/decay/decay.ts +0 -0
  366. package/src/{values/animation → animation}/decay/index.ts +0 -0
  367. package/src/{values/animation → animation}/decay/runDecay.ts +2 -2
  368. package/src/{values/animation → animation}/decay/types.ts +1 -1
  369. package/src/{values/animation → animation}/functions/index.ts +0 -0
  370. package/src/animation/functions/interpolate.ts +182 -0
  371. package/src/animation/functions/interpolateColors.ts +58 -0
  372. package/src/{values/animation → animation}/index.ts +0 -0
  373. package/src/{values/animation → animation}/spring/Spring.ts +0 -0
  374. package/src/{values/animation → animation}/spring/functions/index.ts +0 -0
  375. package/src/{values/animation → animation}/spring/functions/spring.ts +0 -0
  376. package/src/{values/animation → animation}/spring/index.ts +0 -0
  377. package/src/{values/animation → animation}/spring/runSpring.ts +1 -1
  378. package/src/{values/animation → animation}/spring/types.ts +0 -0
  379. package/src/{values/animation → animation}/spring/useSpring.ts +1 -1
  380. package/src/{values/animation → animation}/timing/Easing.ts +0 -0
  381. package/src/{values/animation → animation}/timing/createTiming.ts +2 -2
  382. package/src/{values/animation → animation}/timing/functions/__tests__/timing.spec.ts +0 -0
  383. package/src/{values/animation → animation}/timing/functions/bezier.ts +0 -0
  384. package/src/{values/animation → animation}/timing/functions/getResolvedParams.ts +2 -2
  385. package/src/{values/animation → animation}/timing/functions/index.ts +0 -0
  386. package/src/{values/animation → animation}/timing/functions/timing.ts +1 -1
  387. package/src/{values/animation → animation}/timing/functions/types.ts +0 -0
  388. package/src/{values/animation → animation}/timing/index.ts +0 -0
  389. package/src/{values/animation → animation}/timing/runTiming.ts +1 -1
  390. package/src/{values/animation → animation}/timing/useLoop.ts +0 -0
  391. package/src/{values/animation → animation}/timing/useTiming.ts +2 -2
  392. package/src/{values/animation → animation}/types.ts +5 -5
  393. package/src/index.ts +1 -0
  394. package/src/renderer/Canvas.tsx +13 -6
  395. package/src/renderer/components/Paint.tsx +2 -2
  396. package/src/renderer/components/colorFilters/BlendColor.tsx +1 -1
  397. package/src/renderer/components/colorFilters/Lerp.tsx +1 -1
  398. package/src/renderer/components/imageFilters/InnerShadow.tsx +4 -2
  399. package/src/renderer/components/imageFilters/RuntimeShader.tsx +23 -0
  400. package/src/renderer/components/imageFilters/index.ts +1 -0
  401. package/src/renderer/components/shaders/Gradient.ts +2 -4
  402. package/src/renderer/components/shaders/Shader.tsx +3 -3
  403. package/src/renderer/components/shapes/Path.tsx +11 -3
  404. package/src/renderer/processors/Circles.ts +2 -1
  405. package/src/renderer/processors/Font.ts +1 -1
  406. package/src/renderer/processors/Paint.ts +5 -0
  407. package/src/renderer/processors/Rects.ts +9 -14
  408. package/src/renderer/processors/math/Matrix3.ts +24 -105
  409. package/src/renderer/processors/math/Vector.ts +3 -2
  410. package/src/skia/Color.ts +13 -27
  411. package/src/skia/ImageFilter/ImageFilterFactory.ts +20 -0
  412. package/src/skia/Matrix.ts +8 -1
  413. package/src/skia/Paint/Paint.ts +7 -0
  414. package/src/skia/Paint/usePaint.ts +2 -4
  415. package/src/skia/RuntimeEffect/RuntimeEffect.ts +3 -1
  416. package/src/skia/RuntimeEffect/RuntimeEffectFactory.ts +2 -2
  417. package/src/skia/Shader/useShader.ts +4 -1
  418. package/src/skia/Skia.ts +4 -123
  419. package/src/skia/SkiaApi.ts +86 -0
  420. package/src/skia/Surface/Surface.ts +1 -1
  421. package/src/skia/Surface/SurfaceFactory.ts +2 -2
  422. package/src/values/api.ts +3 -42
  423. package/src/values/api.web.ts +5 -0
  424. package/src/values/index.ts +0 -1
  425. package/src/values/types.ts +30 -1
  426. package/src/values/web/RNSkAnimation.ts +33 -0
  427. package/src/values/web/RNSkClockValue.ts +58 -0
  428. package/src/values/web/RNSkDerivedValue.ts +38 -0
  429. package/src/values/web/RNSkReadonlyValue.ts +32 -0
  430. package/src/values/web/RNSkValue.ts +57 -0
  431. package/src/values/web/__tests__/RNSkAnimation.spec.ts +21 -0
  432. package/src/values/web/__tests__/RNSkDerivedValue.spec.ts +15 -0
  433. package/src/values/web/__tests__/RNSkReadonlyValue.spec.ts +8 -0
  434. package/src/values/web/__tests__/RNSkValue.spec.ts +11 -0
  435. package/src/values/web/api.ts +33 -0
  436. package/src/values/web/index.ts +1 -0
  437. package/src/views/SkiaView.tsx +3 -49
  438. package/src/views/api.ts +7 -0
  439. package/src/views/types.ts +40 -0
  440. package/lib/commonjs/values/animation/decay/runDecay.js.map +0 -1
  441. package/lib/commonjs/values/animation/functions/interpolate.js +0 -139
  442. package/lib/commonjs/values/animation/functions/interpolate.js.map +0 -1
  443. package/lib/commonjs/values/animation/functions/interpolateColors.js +0 -47
  444. package/lib/commonjs/values/animation/functions/interpolateColors.js.map +0 -1
  445. package/lib/commonjs/values/animation/spring/runSpring.js.map +0 -1
  446. package/lib/commonjs/values/animation/spring/useSpring.js.map +0 -1
  447. package/lib/commonjs/values/animation/timing/createTiming.js.map +0 -1
  448. package/lib/commonjs/values/animation/timing/functions/getResolvedParams.js.map +0 -1
  449. package/lib/commonjs/values/animation/timing/runTiming.js.map +0 -1
  450. package/lib/commonjs/values/animation/timing/useTiming.js.map +0 -1
  451. package/lib/module/values/animation/decay/runDecay.js.map +0 -1
  452. package/lib/module/values/animation/functions/interpolate.js +0 -132
  453. package/lib/module/values/animation/functions/interpolate.js.map +0 -1
  454. package/lib/module/values/animation/functions/interpolateColors.js +0 -32
  455. package/lib/module/values/animation/functions/interpolateColors.js.map +0 -1
  456. package/lib/module/values/animation/spring/runSpring.js.map +0 -1
  457. package/lib/module/values/animation/spring/useSpring.js.map +0 -1
  458. package/lib/module/values/animation/timing/createTiming.js.map +0 -1
  459. package/lib/module/values/animation/timing/functions/getResolvedParams.js.map +0 -1
  460. package/lib/module/values/animation/timing/runTiming.js.map +0 -1
  461. package/lib/module/values/animation/timing/useTiming.js.map +0 -1
  462. package/lib/typescript/scripts/install-npm.d.ts +0 -1
  463. package/lib/typescript/src/values/animation/functions/interpolate.d.ts +0 -7
  464. package/lib/typescript/src/values/animation/functions/interpolateColors.d.ts +0 -3
  465. package/src/values/animation/functions/interpolate.ts +0 -169
  466. package/src/values/animation/functions/interpolateColors.ts +0 -62
@@ -1,40 +1,7 @@
1
1
  import React from "react";
2
- import type { ViewProps } from "react-native";
3
- import type { SkImage, SkRect } from "../skia";
2
+ import type { SkRect } from "../skia";
4
3
  import type { SkiaReadonlyValue } from "../values";
5
- import type { DrawMode, RNSkiaDrawCallback } from "./types";
6
- declare global {
7
- var SkiaViewApi: {
8
- invalidateSkiaView: (nativeId: number) => void;
9
- makeImageSnapshot: (nativeId: number, rect?: SkRect) => SkImage;
10
- setDrawCallback: (nativeId: number, callback: RNSkiaDrawCallback | undefined) => void;
11
- setDrawMode: (nativeId: number, mode: DrawMode) => void;
12
- registerValuesInView: (nativeId: number, values: SkiaReadonlyValue<unknown>[]) => () => void;
13
- };
14
- }
15
- export interface SkiaViewProps extends ViewProps {
16
- /**
17
- * Sets the drawing mode for the skia view. There are two drawing
18
- * modes, "continuous" and "default", where the continuous mode will
19
- * continuously redraw the view, and the default mode will only
20
- * redraw when any of the regular react properties are changed like
21
- * sizes and margins.
22
- */
23
- mode?: DrawMode;
24
- /**
25
- * When set to true the view will display information about the
26
- * average time it takes to render.
27
- */
28
- debug?: boolean;
29
- /**
30
- * Draw callback. Will be called whenever the view is invalidated and
31
- * needs to redraw. This is either caused by a change in a react
32
- * property, a touch event, or a call to redraw. If the view is in
33
- * continuous mode the callback will be called 60 frames per second
34
- * by the native view.
35
- */
36
- onDraw?: RNSkiaDrawCallback;
37
- }
4
+ import type { DrawMode, SkiaViewProps } from "./types";
38
5
  export declare class SkiaView extends React.Component<SkiaViewProps> {
39
6
  constructor(props: SkiaViewProps);
40
7
  private _nativeId;
@@ -45,7 +12,7 @@ export declare class SkiaView extends React.Component<SkiaViewProps> {
45
12
  * @param rect Rect to use as bounds. Optional.
46
13
  * @returns An Image object.
47
14
  */
48
- makeImageSnapshot(rect?: SkRect): SkImage;
15
+ makeImageSnapshot(rect?: SkRect): import("../skia").SkImage;
49
16
  /**
50
17
  * Sends a redraw request to the native SkiaView.
51
18
  */
@@ -0,0 +1,5 @@
1
+ import type { ISkiaViewApi } from "./types";
2
+ declare global {
3
+ var SkiaViewApi: ISkiaViewApi;
4
+ }
5
+ export declare const SkiaViewApi: ISkiaViewApi;
@@ -1,5 +1,7 @@
1
1
  import type { ViewProps } from "react-native";
2
+ import type { SkImage, SkRect } from "../skia";
2
3
  import type { SkCanvas } from "../skia/Canvas";
4
+ import type { SkiaReadonlyValue } from "../values";
3
5
  export declare type DrawMode = "continuous" | "default";
4
6
  export declare type NativeSkiaViewProps = ViewProps & {
5
7
  mode?: DrawMode;
@@ -42,3 +44,33 @@ export interface ValueListener {
42
44
  addListener: (callback: () => void) => number;
43
45
  removeListener: (id: number) => void;
44
46
  }
47
+ export interface ISkiaViewApi {
48
+ invalidateSkiaView: (nativeId: number) => void;
49
+ makeImageSnapshot: (nativeId: number, rect?: SkRect) => SkImage;
50
+ setDrawCallback: (nativeId: number, callback: RNSkiaDrawCallback | undefined) => void;
51
+ setDrawMode: (nativeId: number, mode: DrawMode) => void;
52
+ registerValuesInView: (nativeId: number, values: SkiaReadonlyValue<unknown>[]) => () => void;
53
+ }
54
+ export interface SkiaViewProps extends ViewProps {
55
+ /**
56
+ * Sets the drawing mode for the skia view. There are two drawing
57
+ * modes, "continuous" and "default", where the continuous mode will
58
+ * continuously redraw the view, and the default mode will only
59
+ * redraw when any of the regular react properties are changed like
60
+ * sizes and margins.
61
+ */
62
+ mode?: DrawMode;
63
+ /**
64
+ * When set to true the view will display information about the
65
+ * average time it takes to render.
66
+ */
67
+ debug?: boolean;
68
+ /**
69
+ * Draw callback. Will be called whenever the view is invalidated and
70
+ * needs to redraw. This is either caused by a change in a react
71
+ * property, a touch event, or a call to redraw. If the view is in
72
+ * continuous mode the callback will be called 60 frames per second
73
+ * by the native view.
74
+ */
75
+ onDraw?: RNSkiaDrawCallback;
76
+ }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "React Native Skia",
7
- "version": "0.1.122",
7
+ "version": "0.1.125",
8
8
  "description": "High-performance React Native Graphics using Skia",
9
9
  "main": "lib/module/index.js",
10
10
  "files": [
@@ -76,7 +76,7 @@
76
76
  "react-native": "0.66.2",
77
77
  "react-native-builder-bob": "^0.18.2",
78
78
  "ts-jest": "^27.0.7",
79
- "typescript": "^4.6.2"
79
+ "typescript": "^4.6.4"
80
80
  },
81
81
  "dependencies": {
82
82
  "react-reconciler": "^0.26.2"
@@ -1,5 +1,5 @@
1
- import { ValueApi } from "../../api";
2
- import type { SkiaValue } from "../../types";
1
+ import { ValueApi } from "../../values/api";
2
+ import type { SkiaValue } from "../../values/types";
3
3
 
4
4
  import { decay } from "./decay";
5
5
  import type { DecayConfig, DefaultDecayConfig, DecayState } from "./types";
@@ -1,4 +1,4 @@
1
- import type { AnimationState } from "../../types";
1
+ import type { AnimationState } from "../../values/types";
2
2
 
3
3
  export interface DecayConfig {
4
4
  from?: number;
@@ -0,0 +1,182 @@
1
+ /* eslint-disable max-len */
2
+ export enum Extrapolate {
3
+ IDENTITY = "identity",
4
+ CLAMP = "clamp",
5
+ EXTEND = "extend",
6
+ }
7
+
8
+ interface InterpolationNarrowedInput {
9
+ leftEdgeInput: number;
10
+ rightEdgeInput: number;
11
+ leftEdgeOutput: number;
12
+ rightEdgeOutput: number;
13
+ }
14
+
15
+ export interface ExtrapolationConfig {
16
+ extrapolateLeft?: Extrapolate | string;
17
+ extrapolateRight?: Extrapolate | string;
18
+ }
19
+
20
+ interface RequiredExtrapolationConfig {
21
+ extrapolateLeft: Extrapolate;
22
+ extrapolateRight: Extrapolate;
23
+ }
24
+
25
+ export type ExtrapolationType =
26
+ | ExtrapolationConfig
27
+ | Extrapolate
28
+ | string
29
+ | undefined;
30
+
31
+ function getVal(
32
+ type: Extrapolate,
33
+ coef: number,
34
+ val: number,
35
+ leftEdgeOutput: number,
36
+ rightEdgeOutput: number,
37
+ x: number
38
+ ): number {
39
+ switch (type) {
40
+ case Extrapolate.IDENTITY:
41
+ return x;
42
+ case Extrapolate.CLAMP:
43
+ if (coef * val < coef * leftEdgeOutput) {
44
+ return leftEdgeOutput;
45
+ }
46
+ return rightEdgeOutput;
47
+ case Extrapolate.EXTEND:
48
+ default:
49
+ return val;
50
+ }
51
+ }
52
+
53
+ function isExtrapolate(value: string): value is Extrapolate {
54
+ return (
55
+ value === Extrapolate.EXTEND ||
56
+ value === Extrapolate.CLAMP ||
57
+ value === Extrapolate.IDENTITY
58
+ );
59
+ }
60
+
61
+ // validates extrapolations type
62
+ // if type is correct, converts it to ExtrapolationConfig
63
+ function validateType(type: ExtrapolationType): RequiredExtrapolationConfig {
64
+ // initialize extrapolationConfig with default extrapolation
65
+ const extrapolationConfig: RequiredExtrapolationConfig = {
66
+ extrapolateLeft: Extrapolate.EXTEND,
67
+ extrapolateRight: Extrapolate.EXTEND,
68
+ };
69
+
70
+ if (!type) {
71
+ return extrapolationConfig;
72
+ }
73
+
74
+ if (typeof type === "string") {
75
+ if (!isExtrapolate(type)) {
76
+ throw new Error(
77
+ `No supported value for "interpolate" \nSupported values: ["extend", "clamp", "identity", Extrapolatation.CLAMP, Extrapolatation.EXTEND, Extrapolatation.IDENTITY]\n Valid example:
78
+ interpolate(value, [inputRange], [outputRange], "clamp")`
79
+ );
80
+ }
81
+ extrapolationConfig.extrapolateLeft = type;
82
+ extrapolationConfig.extrapolateRight = type;
83
+ return extrapolationConfig;
84
+ }
85
+
86
+ // otherwise type is extrapolation config object
87
+ if (
88
+ (type.extrapolateLeft && !isExtrapolate(type.extrapolateLeft)) ||
89
+ (type.extrapolateRight && !isExtrapolate(type.extrapolateRight))
90
+ ) {
91
+ throw new Error(
92
+ `No supported value for "interpolate" \nSupported values: ["extend", "clamp", "identity", Extrapolatation.CLAMP, Extrapolatation.EXTEND, Extrapolatation.IDENTITY]\n Valid example:
93
+ interpolate(value, [inputRange], [outputRange], {
94
+ extrapolateLeft: Extrapolation.CLAMP,
95
+ extrapolateRight: Extrapolation.IDENTITY
96
+ }})`
97
+ );
98
+ }
99
+
100
+ Object.assign(extrapolationConfig, type);
101
+ return extrapolationConfig;
102
+ }
103
+
104
+ function internalInterpolate(
105
+ x: number,
106
+ narrowedInput: InterpolationNarrowedInput,
107
+ extrapolationConfig: RequiredExtrapolationConfig
108
+ ) {
109
+ const { leftEdgeInput, rightEdgeInput, leftEdgeOutput, rightEdgeOutput } =
110
+ narrowedInput;
111
+ if (rightEdgeInput - leftEdgeInput === 0) {
112
+ return leftEdgeOutput;
113
+ }
114
+ const progress = (x - leftEdgeInput) / (rightEdgeInput - leftEdgeInput);
115
+ const val = leftEdgeOutput + progress * (rightEdgeOutput - leftEdgeOutput);
116
+ const coef = rightEdgeOutput >= leftEdgeOutput ? 1 : -1;
117
+
118
+ if (coef * val < coef * leftEdgeOutput) {
119
+ return getVal(
120
+ extrapolationConfig.extrapolateLeft,
121
+ coef,
122
+ val,
123
+ leftEdgeOutput,
124
+ rightEdgeOutput,
125
+ x
126
+ );
127
+ } else if (coef * val > coef * rightEdgeOutput) {
128
+ return getVal(
129
+ extrapolationConfig.extrapolateRight,
130
+ coef,
131
+ val,
132
+ leftEdgeOutput,
133
+ rightEdgeOutput,
134
+ x
135
+ );
136
+ }
137
+
138
+ return val;
139
+ }
140
+
141
+ // e.g. function interpolate(x, input, output, type = Extrapolatation.CLAMP)
142
+ export function interpolate(
143
+ x: number,
144
+ input: readonly number[],
145
+ output: readonly number[],
146
+ type?: ExtrapolationType
147
+ ): number {
148
+ if (input.length < 2 || output.length < 2) {
149
+ throw Error(
150
+ "Interpolation input and output should contain at least two values."
151
+ );
152
+ }
153
+
154
+ const extrapolationConfig = validateType(type);
155
+ const { length } = input;
156
+ const narrowedInput: InterpolationNarrowedInput = {
157
+ leftEdgeInput: input[0],
158
+ rightEdgeInput: input[1],
159
+ leftEdgeOutput: output[0],
160
+ rightEdgeOutput: output[1],
161
+ };
162
+ if (length > 2) {
163
+ if (x > input[length - 1]) {
164
+ narrowedInput.leftEdgeInput = input[length - 2];
165
+ narrowedInput.rightEdgeInput = input[length - 1];
166
+ narrowedInput.leftEdgeOutput = output[length - 2];
167
+ narrowedInput.rightEdgeOutput = output[length - 1];
168
+ } else {
169
+ for (let i = 1; i < length; ++i) {
170
+ if (x <= input[i]) {
171
+ narrowedInput.leftEdgeInput = input[i - 1];
172
+ narrowedInput.rightEdgeInput = input[i];
173
+ narrowedInput.leftEdgeOutput = output[i - 1];
174
+ narrowedInput.rightEdgeOutput = output[i];
175
+ break;
176
+ }
177
+ }
178
+ }
179
+ }
180
+
181
+ return internalInterpolate(x, narrowedInput, extrapolationConfig);
182
+ }
@@ -0,0 +1,58 @@
1
+ import { mix } from "../../renderer";
2
+ import type { Color } from "../../skia";
3
+ import { Skia } from "../../skia";
4
+ import type { SkColor } from "../../skia/Color";
5
+
6
+ import { interpolate } from "./interpolate";
7
+
8
+ const interpolateColorsRGB = (
9
+ value: number,
10
+ inputRange: number[],
11
+ outputRange: SkColor[]
12
+ ) => {
13
+ const r = interpolate(
14
+ value,
15
+ inputRange,
16
+ outputRange.map((c) => c[0]),
17
+ "clamp"
18
+ );
19
+ const g = interpolate(
20
+ value,
21
+ inputRange,
22
+ outputRange.map((c) => c[1]),
23
+ "clamp"
24
+ );
25
+ const b = interpolate(
26
+ value,
27
+ inputRange,
28
+ outputRange.map((c) => c[2]),
29
+ "clamp"
30
+ );
31
+ const a = interpolate(
32
+ value,
33
+ inputRange,
34
+ outputRange.map((c) => c[3]),
35
+ "clamp"
36
+ );
37
+ return new Float32Array([r, g, b, a]);
38
+ };
39
+
40
+ export const interpolateColors = (
41
+ value: number,
42
+ inputRange: number[],
43
+ _outputRange: Color[]
44
+ ) => {
45
+ const outputRange = _outputRange.map((cl) => Skia.Color(cl));
46
+ return interpolateColorsRGB(value, inputRange, outputRange);
47
+ };
48
+
49
+ export const mixColors = (value: number, x: Color, y: Color) => {
50
+ const c1 = Skia.Color(x);
51
+ const c2 = Skia.Color(y);
52
+ return new Float32Array([
53
+ mix(value, c1[0], c2[0]),
54
+ mix(value, c1[1], c2[1]),
55
+ mix(value, c1[2], c2[2]),
56
+ mix(value, c1[3], c2[3]),
57
+ ]);
58
+ };
File without changes
@@ -1,4 +1,4 @@
1
- import type { SkiaValue, SkiaAnimation } from "../../types";
1
+ import type { SkiaValue, SkiaAnimation } from "../../values/types";
2
2
  import type {
3
3
  AnimationParams,
4
4
  SpringConfig,
@@ -1,4 +1,4 @@
1
- import type { SkiaReadonlyValue } from "../../types";
1
+ import type { SkiaReadonlyValue } from "../../values/types";
2
2
  import type {
3
3
  SpringConfig,
4
4
  AnimationParams,
@@ -3,8 +3,8 @@ import type {
3
3
  RequiredAnimationParams,
4
4
  AnimationCallback,
5
5
  } from "../types";
6
- import type { AnimationState, SkiaValue } from "../../types";
7
- import { ValueApi } from "../../api";
6
+ import type { AnimationState, SkiaValue } from "../../values/types";
7
+ import { ValueApi } from "../../values/api";
8
8
 
9
9
  import { timing } from "./functions";
10
10
 
@@ -42,8 +42,8 @@ export const getResolvedParams = (
42
42
 
43
43
  const resolvedConfig: Required<TimingConfig> = { ...DefaultTimingConfig };
44
44
  if (config) {
45
- resolvedConfig.duration = config.duration;
46
- resolvedConfig.easing = config.easing ?? ((t) => t);
45
+ resolvedConfig.duration = config.duration ?? DefaultTimingConfig.duration;
46
+ resolvedConfig.easing = config.easing ?? DefaultTimingConfig.easing;
47
47
  }
48
48
 
49
49
  return { ...resolvedParameters, ...resolvedConfig };
@@ -1,4 +1,4 @@
1
- import type { AnimationState } from "../../../types";
1
+ import type { AnimationState } from "../../../values/types";
2
2
 
3
3
  /**
4
4
  * Calculates and returns a timing value based on the
@@ -1,4 +1,4 @@
1
- import type { SkiaValue, SkiaAnimation } from "../../types";
1
+ import type { SkiaValue, SkiaAnimation } from "../../values/types";
2
2
  import type {
3
3
  AnimationParams,
4
4
  TimingConfig,
@@ -1,12 +1,12 @@
1
1
  import { useEffect, useMemo, useRef } from "react";
2
2
 
3
- import type { SkiaReadonlyValue, SkiaAnimation } from "../../types";
3
+ import type { SkiaReadonlyValue, SkiaAnimation } from "../../values/types";
4
4
  import type {
5
5
  AnimationParams,
6
6
  TimingConfig,
7
7
  AnimationCallback,
8
8
  } from "../types";
9
- import { useValue } from "../../hooks/useValue";
9
+ import { useValue } from "../../values/hooks/useValue";
10
10
 
11
11
  import { getResolvedParams } from "./functions";
12
12
  import { createTiming } from "./createTiming";
@@ -1,12 +1,12 @@
1
1
  export interface SpringConfig {
2
- mass: number;
3
- stiffness: number;
4
- damping: number;
5
- velocity: number;
2
+ mass?: number;
3
+ stiffness?: number;
4
+ damping?: number;
5
+ velocity?: number;
6
6
  }
7
7
 
8
8
  export interface TimingConfig {
9
- duration: number;
9
+ duration?: number;
10
10
  easing?: (t: number) => number;
11
11
  }
12
12
 
package/src/index.ts CHANGED
@@ -5,3 +5,4 @@ export * from "./views";
5
5
  export * from "./skia";
6
6
  export * from "./external";
7
7
  export * from "./values";
8
+ export * from "./animation";
@@ -23,6 +23,7 @@ import { Skia } from "../skia";
23
23
  import type { FontMgr } from "../skia/FontMgr/FontMgr";
24
24
  import { useValue } from "../values/hooks/useValue";
25
25
  import type { SkiaReadonlyValue } from "../values/types";
26
+ import { SkiaPaint } from "../skia/Paint/Paint";
26
27
 
27
28
  import { debug as hostDebug, skHostConfig } from "./HostConfig";
28
29
  // import { debugTree } from "./nodes";
@@ -35,12 +36,19 @@ const CanvasContext = React.createContext<SkiaReadonlyValue<{
35
36
  height: number;
36
37
  }> | null>(null);
37
38
 
38
- export const useCanvasSize = () => {
39
- const canvas = useContext(CanvasContext);
40
- if (!canvas) {
39
+ export const useCanvas = () => {
40
+ const size = useContext(CanvasContext);
41
+ if (!size) {
41
42
  throw new Error("Canvas context is not available");
42
43
  }
43
- return canvas;
44
+ return { size };
45
+ };
46
+
47
+ export const useCanvasSize = () => {
48
+ console.warn(
49
+ "useCanvasSize is deprecated, use the size member of useCanvas() instead."
50
+ );
51
+ return useCanvas().size;
44
52
  };
45
53
 
46
54
  export const skiaReconciler = ReactReconciler(skHostConfig);
@@ -112,8 +120,7 @@ export const Canvas = forwardRef<SkiaView, CanvasProps>(
112
120
  ) {
113
121
  canvasCtx.current = { width, height };
114
122
  }
115
- const paint = Skia.Paint();
116
- paint.setAntiAlias(true);
123
+ const paint = SkiaPaint();
117
124
  const ctx = {
118
125
  width,
119
126
  height,
@@ -2,7 +2,7 @@ import type { ReactNode } from "react";
2
2
  import React, { useRef, useMemo, forwardRef, useImperativeHandle } from "react";
3
3
 
4
4
  import type { SkPaint } from "../../skia";
5
- import { Skia } from "../../skia";
5
+ import { SkiaPaint } from "../../skia";
6
6
  import type { CustomPaintProps, AnimatedProps } from "../processors";
7
7
  import { processPaint } from "../processors";
8
8
  import { createDeclaration } from "../nodes";
@@ -15,7 +15,7 @@ export interface PaintProps extends Omit<CustomPaintProps, "paint"> {
15
15
 
16
16
  export const Paint = forwardRef<SkPaint, AnimatedProps<PaintProps>>(
17
17
  (props, ref) => {
18
- const paint = useMemo(() => Skia.Paint(), []);
18
+ const paint = useMemo(() => SkiaPaint(), []);
19
19
  useImperativeHandle(ref, () => paint, [paint]);
20
20
  const onDeclare = useMemo(
21
21
  () =>
@@ -1,11 +1,11 @@
1
1
  import React from "react";
2
2
  import type { ReactNode } from "react";
3
3
 
4
+ import type { Color } from "../../../skia";
4
5
  import { BlendMode, Skia } from "../../../skia";
5
6
  import { createDeclaration } from "../../nodes";
6
7
  import type { SkEnum, AnimatedProps } from "../../processors";
7
8
  import { enumKey } from "../../processors";
8
- import type { Color } from "../../../skia";
9
9
 
10
10
  import { composeColorFilter } from "./Compose";
11
11
 
@@ -15,7 +15,7 @@ export interface LerpProps {
15
15
 
16
16
  const onDeclare = createDeclaration<LerpProps>(({ t }, children) => {
17
17
  const [src, dst] = children.filter(isColorFilter);
18
- const cf = Skia.ColorFilter.MakeLerp(t, dst, src);
18
+ const cf = Skia.ColorFilter.MakeLerp(t, src, dst);
19
19
  return composeColorFilter(
20
20
  cf,
21
21
  children.filter((c) => c !== src && c !== dst)
@@ -2,6 +2,8 @@ import type { SkColor } from "../../../skia";
2
2
  import { BlendMode, Skia, TileMode } from "../../../skia";
3
3
  import type { SkImageFilter } from "../../../skia/ImageFilter/ImageFilter";
4
4
 
5
+ const Black = Skia.Color("black");
6
+
5
7
  export const MakeInnerShadow = (
6
8
  shadowOnly: boolean | undefined,
7
9
  dx: number,
@@ -12,11 +14,11 @@ export const MakeInnerShadow = (
12
14
  input: SkImageFilter | null
13
15
  ) => {
14
16
  const sourceGraphic = Skia.ImageFilter.MakeColorFilter(
15
- Skia.ColorFilter.MakeBlend(0xff000000, BlendMode.Dst),
17
+ Skia.ColorFilter.MakeBlend(Black, BlendMode.Dst),
16
18
  null
17
19
  );
18
20
  const sourceAlpha = Skia.ImageFilter.MakeColorFilter(
19
- Skia.ColorFilter.MakeBlend(0xff000000, BlendMode.SrcIn),
21
+ Skia.ColorFilter.MakeBlend(Black, BlendMode.SrcIn),
20
22
  null
21
23
  );
22
24
  const f1 = Skia.ImageFilter.MakeColorFilter(
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+
3
+ import { Skia } from "../../../skia";
4
+ import { createDeclaration } from "../../nodes/Declaration";
5
+ import type { AnimatedProps } from "../../processors/Animations/Animations";
6
+ import type { SkRuntimeEffect } from "../../../skia/RuntimeEffect/RuntimeEffect";
7
+
8
+ import { getInput } from "./getInput";
9
+
10
+ export interface RuntimeShaderProps {
11
+ source: SkRuntimeEffect;
12
+ }
13
+
14
+ const onDeclare = createDeclaration<RuntimeShaderProps>(
15
+ ({ source }, children) => {
16
+ const rtb = Skia.RuntimeShaderBuilder(source);
17
+ return Skia.ImageFilter.MakeRuntimeShader(rtb, null, getInput(children));
18
+ }
19
+ );
20
+
21
+ export const RuntimeShader = (props: AnimatedProps<RuntimeShaderProps>) => {
22
+ return <skDeclaration onDeclare={onDeclare} {...props} />;
23
+ };
@@ -3,3 +3,4 @@ export * from "./Offset";
3
3
  export * from "./DisplacementMap";
4
4
  export * from "./Shadow";
5
5
  export * from "./Morphology";
6
+ export * from "./RuntimeShader";