@shopify/react-native-skia 1.12.0 → 1.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (233) hide show
  1. package/android/cpp/jni/JniPlatformContext.cpp +1 -0
  2. package/apple/MetalContext.h +129 -0
  3. package/apple/MetalContext.mm +34 -0
  4. package/apple/MetalWindowContext.h +39 -0
  5. package/apple/MetalWindowContext.mm +64 -0
  6. package/apple/RNSkApplePlatformContext.h +79 -0
  7. package/apple/RNSkApplePlatformContext.mm +303 -0
  8. package/apple/RNSkAppleVideo.h +51 -0
  9. package/apple/RNSkAppleVideo.mm +137 -0
  10. package/apple/RNSkAppleView.h +37 -0
  11. package/apple/RNSkAppleView.mm +35 -0
  12. package/apple/RNSkMetalCanvasProvider.h +38 -0
  13. package/apple/RNSkMetalCanvasProvider.mm +108 -0
  14. package/apple/RNSkiaModule.h +20 -0
  15. package/apple/RNSkiaModule.mm +55 -0
  16. package/apple/SkiaCVPixelBufferUtils.h +119 -0
  17. package/apple/SkiaCVPixelBufferUtils.mm +344 -0
  18. package/apple/SkiaManager.h +25 -0
  19. package/apple/SkiaManager.mm +62 -0
  20. package/apple/SkiaPictureView.h +7 -0
  21. package/apple/SkiaPictureView.mm +66 -0
  22. package/apple/SkiaPictureViewManager.h +8 -0
  23. package/apple/SkiaPictureViewManager.mm +55 -0
  24. package/apple/SkiaUIView.h +45 -0
  25. package/apple/SkiaUIView.mm +172 -0
  26. package/apple/ViewScreenshotService.h +25 -0
  27. package/apple/ViewScreenshotService.mm +89 -0
  28. package/cpp/api/JsiSkContourMeasure.h +1 -1
  29. package/cpp/api/JsiSkHostObjects.h +21 -10
  30. package/cpp/api/JsiSkParagraph.h +17 -27
  31. package/cpp/api/JsiSkPathEffect.h +1 -1
  32. package/cpp/api/JsiSkPictureFactory.h +1 -1
  33. package/cpp/api/recorder/Drawings.h +4 -3
  34. package/cpp/skia/include/codec/SkCodec.h +7 -2
  35. package/cpp/skia/include/config/SkUserConfig.h +11 -0
  36. package/cpp/skia/include/core/SkCanvas.h +11 -7
  37. package/cpp/skia/include/core/SkColor.h +10 -0
  38. package/cpp/skia/include/core/SkColorSpace.h +184 -2
  39. package/cpp/skia/include/core/SkColorType.h +114 -32
  40. package/cpp/skia/include/core/SkFontScanner.h +5 -8
  41. package/cpp/skia/include/core/SkFontStyle.h +1 -1
  42. package/cpp/skia/include/core/SkMaskFilter.h +0 -8
  43. package/cpp/skia/include/core/SkMilestone.h +1 -1
  44. package/cpp/skia/include/core/SkPath.h +1 -1
  45. package/cpp/skia/include/core/SkRRect.h +3 -1
  46. package/cpp/skia/include/core/SkShader.h +3 -3
  47. package/cpp/skia/include/core/SkString.h +8 -8
  48. package/cpp/skia/include/core/SkSurface.h +14 -0
  49. package/cpp/skia/include/core/SkTypeface.h +24 -7
  50. package/cpp/skia/include/effects/SkGradientShader.h +6 -1
  51. package/cpp/skia/include/effects/SkRuntimeEffect.h +1 -0
  52. package/cpp/skia/include/encode/SkPngEncoder.h +14 -0
  53. package/cpp/skia/include/gpu/GpuTypes.h +9 -0
  54. package/cpp/skia/include/gpu/ganesh/GrContextOptions.h +135 -133
  55. package/cpp/skia/include/gpu/ganesh/GrDirectContext.h +5 -0
  56. package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h +3 -3
  57. package/cpp/skia/include/gpu/ganesh/GrTypes.h +14 -9
  58. package/cpp/skia/include/gpu/graphite/Context.h +25 -2
  59. package/cpp/skia/include/gpu/graphite/ContextOptions.h +23 -5
  60. package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +20 -1
  61. package/cpp/skia/include/gpu/graphite/Image.h +1 -0
  62. package/cpp/skia/include/gpu/graphite/LogPriority.h +36 -0
  63. package/cpp/skia/include/gpu/graphite/PrecompileContext.h +52 -0
  64. package/cpp/skia/include/gpu/graphite/Recorder.h +6 -0
  65. package/cpp/skia/include/gpu/graphite/Recording.h +3 -1
  66. package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +4 -36
  67. package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypesUtils.h +48 -0
  68. package/cpp/skia/include/gpu/graphite/precompile/Precompile.h +3 -2
  69. package/cpp/skia/include/pathops/SkPathOps.h +9 -1
  70. package/cpp/skia/include/ports/SkFontMgr_FontConfigInterface.h +3 -0
  71. package/cpp/skia/include/private/SkPathRef.h +15 -21
  72. package/cpp/skia/include/private/base/SkAttributes.h +16 -10
  73. package/cpp/skia/include/private/base/SkMutex.h +8 -0
  74. package/cpp/skia/include/private/base/SkTArray.h +1 -1
  75. package/cpp/skia/include/private/base/SkTDArray.h +1 -1
  76. package/cpp/skia/include/private/base/SkTemplates.h +24 -11
  77. package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +1 -1
  78. package/cpp/skia/include/sksl/SkSLDebugTrace.h +0 -3
  79. package/cpp/skia/modules/skcms/src/Transform_inl.h +20 -20
  80. package/cpp/skia/modules/skcms/src/skcms_Transform.h +4 -3
  81. package/cpp/skia/modules/skcms/src/skcms_public.h +19 -15
  82. package/cpp/skia/modules/skresources/include/SkResources.h +3 -1
  83. package/cpp/skia/modules/svg/include/SkSVGCircle.h +1 -1
  84. package/cpp/skia/modules/svg/include/SkSVGContainer.h +1 -1
  85. package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +1 -1
  86. package/cpp/skia/modules/svg/include/SkSVGImage.h +2 -2
  87. package/cpp/skia/modules/svg/include/SkSVGPath.h +1 -1
  88. package/cpp/skia/modules/svg/include/SkSVGPoly.h +1 -1
  89. package/cpp/skia/modules/svg/include/SkSVGRect.h +1 -1
  90. package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +2 -0
  91. package/cpp/skia/modules/svg/include/SkSVGShape.h +1 -0
  92. package/cpp/skia/modules/svg/include/SkSVGText.h +1 -1
  93. package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +4 -0
  94. package/cpp/skia/modules/svg/include/SkSVGUse.h +1 -1
  95. package/cpp/skia/src/core/SkLRUCache.h +19 -13
  96. package/cpp/skia/src/core/SkTHash.h +50 -4
  97. package/cpp/skia/src/gpu/ganesh/gl/GrGLDefines.h +1 -0
  98. package/lib/commonjs/external/reanimated/useAnimatedImageValue.js +4 -3
  99. package/lib/commonjs/external/reanimated/useAnimatedImageValue.js.map +1 -1
  100. package/lib/commonjs/mock/index.js +1 -2
  101. package/lib/commonjs/mock/index.js.map +1 -1
  102. package/lib/commonjs/skia/web/Host.d.ts +4 -6
  103. package/lib/commonjs/skia/web/Host.js +23 -10
  104. package/lib/commonjs/skia/web/Host.js.map +1 -1
  105. package/lib/commonjs/skia/web/JsiSkCanvas.js +15 -15
  106. package/lib/commonjs/skia/web/JsiSkCanvas.js.map +1 -1
  107. package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js +1 -1
  108. package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js.map +1 -1
  109. package/lib/commonjs/skia/web/JsiSkFont.js +3 -3
  110. package/lib/commonjs/skia/web/JsiSkFont.js.map +1 -1
  111. package/lib/commonjs/skia/web/JsiSkFontMgr.js +1 -1
  112. package/lib/commonjs/skia/web/JsiSkFontMgr.js.map +1 -1
  113. package/lib/commonjs/skia/web/JsiSkImage.js +6 -6
  114. package/lib/commonjs/skia/web/JsiSkImage.js.map +1 -1
  115. package/lib/commonjs/skia/web/JsiSkImageFactory.js +3 -3
  116. package/lib/commonjs/skia/web/JsiSkImageFactory.js.map +1 -1
  117. package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js +9 -9
  118. package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js.map +1 -1
  119. package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js +1 -1
  120. package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js.map +1 -1
  121. package/lib/commonjs/skia/web/JsiSkPaint.js +3 -3
  122. package/lib/commonjs/skia/web/JsiSkPaint.js.map +1 -1
  123. package/lib/commonjs/skia/web/JsiSkPath.js +4 -4
  124. package/lib/commonjs/skia/web/JsiSkPath.js.map +1 -1
  125. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js +3 -3
  126. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js.map +1 -1
  127. package/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
  128. package/lib/commonjs/skia/web/JsiSkPathFactory.js +2 -2
  129. package/lib/commonjs/skia/web/JsiSkPathFactory.js.map +1 -1
  130. package/lib/commonjs/skia/web/JsiSkPicture.js +1 -1
  131. package/lib/commonjs/skia/web/JsiSkPicture.js.map +1 -1
  132. package/lib/commonjs/skia/web/JsiSkShaderFactory.js +5 -5
  133. package/lib/commonjs/skia/web/JsiSkShaderFactory.js.map +1 -1
  134. package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.js +1 -1
  135. package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
  136. package/lib/commonjs/skia/web/JsiSkVerticesFactory.js +1 -1
  137. package/lib/commonjs/skia/web/JsiSkVerticesFactory.js.map +1 -1
  138. package/lib/commonjs/skia/web/JsiSkia.js +4 -3
  139. package/lib/commonjs/skia/web/JsiSkia.js.map +1 -1
  140. package/lib/commonjs/skia/web/JsiVideo.js +2 -1
  141. package/lib/commonjs/skia/web/JsiVideo.js.map +1 -1
  142. package/lib/module/external/reanimated/useAnimatedImageValue.js +4 -3
  143. package/lib/module/external/reanimated/useAnimatedImageValue.js.map +1 -1
  144. package/lib/module/mock/index.js +1 -2
  145. package/lib/module/mock/index.js.map +1 -1
  146. package/lib/module/skia/web/Host.d.ts +4 -6
  147. package/lib/module/skia/web/Host.js +21 -8
  148. package/lib/module/skia/web/Host.js.map +1 -1
  149. package/lib/module/skia/web/JsiSkCanvas.js +15 -15
  150. package/lib/module/skia/web/JsiSkCanvas.js.map +1 -1
  151. package/lib/module/skia/web/JsiSkColorFilterFactory.js +1 -1
  152. package/lib/module/skia/web/JsiSkColorFilterFactory.js.map +1 -1
  153. package/lib/module/skia/web/JsiSkFont.js +4 -4
  154. package/lib/module/skia/web/JsiSkFont.js.map +1 -1
  155. package/lib/module/skia/web/JsiSkFontMgr.js +2 -2
  156. package/lib/module/skia/web/JsiSkFontMgr.js.map +1 -1
  157. package/lib/module/skia/web/JsiSkImage.js +6 -6
  158. package/lib/module/skia/web/JsiSkImage.js.map +1 -1
  159. package/lib/module/skia/web/JsiSkImageFactory.js +4 -4
  160. package/lib/module/skia/web/JsiSkImageFactory.js.map +1 -1
  161. package/lib/module/skia/web/JsiSkImageFilterFactory.js +10 -10
  162. package/lib/module/skia/web/JsiSkImageFilterFactory.js.map +1 -1
  163. package/lib/module/skia/web/JsiSkMaskFilterFactory.js +1 -1
  164. package/lib/module/skia/web/JsiSkMaskFilterFactory.js.map +1 -1
  165. package/lib/module/skia/web/JsiSkPaint.js +3 -3
  166. package/lib/module/skia/web/JsiSkPaint.js.map +1 -1
  167. package/lib/module/skia/web/JsiSkPath.js +4 -4
  168. package/lib/module/skia/web/JsiSkPath.js.map +1 -1
  169. package/lib/module/skia/web/JsiSkPathEffectFactory.js +4 -4
  170. package/lib/module/skia/web/JsiSkPathEffectFactory.js.map +1 -1
  171. package/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
  172. package/lib/module/skia/web/JsiSkPathFactory.js +3 -3
  173. package/lib/module/skia/web/JsiSkPathFactory.js.map +1 -1
  174. package/lib/module/skia/web/JsiSkPicture.js +1 -1
  175. package/lib/module/skia/web/JsiSkPicture.js.map +1 -1
  176. package/lib/module/skia/web/JsiSkShaderFactory.js +5 -5
  177. package/lib/module/skia/web/JsiSkShaderFactory.js.map +1 -1
  178. package/lib/module/skia/web/JsiSkTypefaceFontProvider.js +2 -2
  179. package/lib/module/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
  180. package/lib/module/skia/web/JsiSkVerticesFactory.js +1 -1
  181. package/lib/module/skia/web/JsiSkVerticesFactory.js.map +1 -1
  182. package/lib/module/skia/web/JsiSkia.js +4 -3
  183. package/lib/module/skia/web/JsiSkia.js.map +1 -1
  184. package/lib/module/skia/web/JsiVideo.js +2 -1
  185. package/lib/module/skia/web/JsiVideo.js.map +1 -1
  186. package/lib/typescript/lib/commonjs/mock/index.d.ts +1 -1
  187. package/lib/typescript/lib/commonjs/skia/web/Host.d.ts +3 -5
  188. package/lib/typescript/lib/commonjs/skia/web/JsiSkFont.d.ts +1 -1
  189. package/lib/typescript/lib/commonjs/skia/web/JsiSkFontMgr.d.ts +1 -1
  190. package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFactory.d.ts +1 -1
  191. package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
  192. package/lib/typescript/lib/commonjs/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
  193. package/lib/typescript/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
  194. package/lib/typescript/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
  195. package/lib/typescript/lib/commonjs/skia/web/JsiSkia.d.ts +3 -3
  196. package/lib/typescript/lib/commonjs/skia/web/JsiVideo.d.ts +1 -1
  197. package/lib/typescript/lib/module/mock/index.d.ts +1 -1
  198. package/lib/typescript/lib/module/skia/Skia.web.d.ts +3 -3
  199. package/lib/typescript/lib/module/skia/web/Host.d.ts +3 -5
  200. package/lib/typescript/lib/module/skia/web/JsiSkFont.d.ts +1 -1
  201. package/lib/typescript/lib/module/skia/web/JsiSkFontMgr.d.ts +1 -1
  202. package/lib/typescript/lib/module/skia/web/JsiSkImageFactory.d.ts +1 -1
  203. package/lib/typescript/lib/module/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
  204. package/lib/typescript/lib/module/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
  205. package/lib/typescript/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
  206. package/lib/typescript/lib/module/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
  207. package/lib/typescript/lib/module/skia/web/JsiSkia.d.ts +3 -3
  208. package/lib/typescript/lib/module/skia/web/JsiVideo.d.ts +1 -1
  209. package/lib/typescript/src/skia/web/Host.d.ts +4 -6
  210. package/lib/typescript/src/skia/web/JsiSkPathFactory.d.ts +1 -1
  211. package/package.json +2 -2
  212. package/src/external/reanimated/useAnimatedImageValue.ts +4 -3
  213. package/src/mock/index.ts +1 -2
  214. package/src/skia/__tests__/Enums.spec.ts +34 -0
  215. package/src/skia/web/Host.ts +29 -11
  216. package/src/skia/web/JsiSkCanvas.ts +17 -17
  217. package/src/skia/web/JsiSkColorFilterFactory.ts +1 -1
  218. package/src/skia/web/JsiSkFont.ts +5 -5
  219. package/src/skia/web/JsiSkFontMgr.ts +3 -3
  220. package/src/skia/web/JsiSkImage.ts +14 -10
  221. package/src/skia/web/JsiSkImageFactory.ts +5 -5
  222. package/src/skia/web/JsiSkImageFilterFactory.ts +12 -22
  223. package/src/skia/web/JsiSkMaskFilterFactory.ts +1 -1
  224. package/src/skia/web/JsiSkPaint.ts +3 -3
  225. package/src/skia/web/JsiSkPath.ts +4 -4
  226. package/src/skia/web/JsiSkPathEffectFactory.ts +6 -6
  227. package/src/skia/web/JsiSkPathFactory.ts +4 -9
  228. package/src/skia/web/JsiSkPicture.ts +3 -3
  229. package/src/skia/web/JsiSkShaderFactory.ts +5 -5
  230. package/src/skia/web/JsiSkTypefaceFontProvider.ts +3 -3
  231. package/src/skia/web/JsiSkVerticesFactory.ts +1 -1
  232. package/src/skia/web/JsiSkia.ts +7 -4
  233. package/src/skia/web/JsiVideo.ts +2 -1
@@ -15,6 +15,7 @@
15
15
  #include "include/gpu/GpuTypes.h"
16
16
 
17
17
  #include <string_view>
18
+ #include <tuple>
18
19
 
19
20
  class SkYUVAInfo;
20
21
  class SkYUVAPixmaps;
@@ -0,0 +1,36 @@
1
+ /*
2
+ * Copyright 2024 Google LLC
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 skgpu_graphite_LogPriority_DEFINED
9
+ #define skgpu_graphite_LogPriority_DEFINED
10
+
11
+ /**
12
+ * Note: this file may be included in clients' SkUserConfig.h files, so including any other headers
13
+ * in this file should be avoided.
14
+ */
15
+
16
+ namespace skgpu::graphite {
17
+ /**
18
+ * SKGPU_GRAPHITE_LOWEST_ACTIVE_LOG_PRIORITY can be defined to one of these values (in
19
+ * SkUserConfig.h) to control Graphite's logging behavior.
20
+ *
21
+ * For example:
22
+ * ```
23
+ * #define SKGPU_GRAPHITE_LOWEST_ACTIVE_LOG_PRIORITY skgpu::graphite::LogPriority::kWarning
24
+ * ```
25
+ * Would cause Graphite to log warnings, non-fatal errors, and fatal errors.
26
+ * However, debug logs would be omitted.
27
+ */
28
+ enum class LogPriority : int {
29
+ kFatal = 0,
30
+ kError = 1,
31
+ kWarning = 2,
32
+ kDebug = 3,
33
+ };
34
+ }; // namespace skgpu::graphite
35
+
36
+ #endif // skgpu_graphite_LogPriority_DEFINED
@@ -0,0 +1,52 @@
1
+ /*
2
+ * Copyright 2024 Google LLC
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 skgpu_graphite_PrecompileContext_DEFINED
9
+ #define skgpu_graphite_PrecompileContext_DEFINED
10
+
11
+ #include "include/core/SkRefCnt.h"
12
+ #include "include/private/base/SingleOwner.h"
13
+
14
+ #include <chrono>
15
+ #include <memory>
16
+
17
+ namespace skgpu::graphite {
18
+
19
+ class SharedContext;
20
+ class PrecompileContextPriv;
21
+ class ResourceProvider;
22
+
23
+ class SK_API PrecompileContext {
24
+ public:
25
+ ~PrecompileContext();
26
+
27
+ /**
28
+ * Purge Pipelines that haven't been used in the past 'msNotUsed' milliseconds
29
+ * regardless of whether the pipeline cache is under budget.
30
+ *
31
+ * @param msNotUsed Pipelines not used in these last milliseconds will be cleaned up.
32
+ */
33
+ void purgePipelinesNotUsedInMs(std::chrono::milliseconds msNotUsed);
34
+
35
+ // Provides access to functions that aren't part of the public API.
36
+ PrecompileContextPriv priv();
37
+ const PrecompileContextPriv priv() const; // NOLINT(readability-const-return-type)
38
+
39
+ private:
40
+ friend class PrecompileContextPriv;
41
+ friend class Context; // for ctor
42
+
43
+ PrecompileContext(sk_sp<SharedContext>);
44
+
45
+ mutable SingleOwner fSingleOwner;
46
+ sk_sp<SharedContext> fSharedContext;
47
+ std::unique_ptr<ResourceProvider> fResourceProvider;
48
+ };
49
+
50
+ } // namespace skgpu::graphite
51
+
52
+ #endif // skgpu_graphite_PrecompileContext_DEFINED
@@ -209,6 +209,12 @@ public:
209
209
  */
210
210
  size_t maxBudgetedBytes() const;
211
211
 
212
+ /**
213
+ * Sets the size of Recorders's gpu memory cache budget in bytes. If the new budget is lower
214
+ * than the current budget, the cache will try to free resources to get under the new budget.
215
+ */
216
+ void setMaxBudgetedBytes(size_t bytes);
217
+
212
218
  /**
213
219
  * Enumerates all cached GPU resources owned by the Recorder and dumps their memory to
214
220
  * traceMemoryDump.
@@ -9,6 +9,7 @@
9
9
  #define skgpu_graphite_Recording_DEFINED
10
10
 
11
11
  #include "include/core/SkRefCnt.h"
12
+ #include "include/core/SkSize.h"
12
13
  #include "include/private/base/SkTArray.h"
13
14
 
14
15
  #include <memory>
@@ -21,6 +22,7 @@ class RefCntedCallback;
21
22
 
22
23
  namespace skgpu::graphite {
23
24
 
25
+ class Caps;
24
26
  class CommandBuffer;
25
27
  class RecordingPriv;
26
28
  class Resource;
@@ -44,7 +46,7 @@ private:
44
46
  // replay, and it handles the target proxy's instantiation with the provided target.
45
47
  class LazyProxyData {
46
48
  public:
47
- LazyProxyData(const TextureInfo&);
49
+ LazyProxyData(const Caps*, SkISize dimensions, const TextureInfo&);
48
50
 
49
51
  TextureProxy* lazyProxy();
50
52
  sk_sp<TextureProxy> refLazyProxy();
@@ -8,27 +8,19 @@
8
8
  #ifndef skgpu_graphite_MtlGraphiteTypes_DEFINED
9
9
  #define skgpu_graphite_MtlGraphiteTypes_DEFINED
10
10
 
11
+ #if __OBJC__ // <Metal/Metal.h> only works when compiled for Objective C
12
+
11
13
  #include "include/core/SkTypes.h"
12
14
 
13
- #if __OBJC__ // <Metal/Metal.h> only works when compiled for Objective C
14
- #include "include/gpu/graphite/BackendTexture.h"
15
15
  #include "include/gpu/graphite/GraphiteTypes.h"
16
- #include "include/gpu/graphite/TextureInfo.h"
17
- #include "include/ports/SkCFObject.h"
16
+ #include "include/gpu/graphite/mtl/MtlGraphiteTypesUtils.h"
18
17
  #include "include/private/base/SkAPI.h"
19
18
 
20
19
  #import <CoreFoundation/CoreFoundation.h>
21
20
  #import <Metal/Metal.h>
22
21
  #import <TargetConditionals.h>
23
22
 
24
- #if TARGET_OS_SIMULATOR
25
- #define SK_API_AVAILABLE_CA_METAL_LAYER SK_API_AVAILABLE(macos(10.11), ios(13.0), tvos(13.0))
26
- #else // TARGET_OS_SIMULATOR
27
- #define SK_API_AVAILABLE_CA_METAL_LAYER SK_API_AVAILABLE(macos(10.11), ios(8.0), tvos(9.0))
28
- #endif // TARGET_OS_SIMULATOR
29
-
30
23
  namespace skgpu::graphite {
31
-
32
24
  struct SK_API MtlTextureInfo {
33
25
  uint32_t fSampleCount = 1;
34
26
  skgpu::Mipmapped fMipmapped = skgpu::Mipmapped::kNo;
@@ -53,31 +45,7 @@ struct SK_API MtlTextureInfo {
53
45
  , fStorageMode(storageMode)
54
46
  , fFramebufferOnly(framebufferOnly) {}
55
47
  };
56
-
57
- namespace TextureInfos {
58
- SK_API TextureInfo MakeMetal(const MtlTextureInfo&);
59
- SK_API TextureInfo MakeMetal(CFTypeRef mtlTexture);
60
-
61
- SK_API bool GetMtlTextureInfo(const TextureInfo&, MtlTextureInfo*);
62
- } // namespace TextureInfos
63
-
64
- namespace BackendTextures {
65
- // The BackendTexture will not call retain or release on the passed in CFTypeRef. Thus the
66
- // client must keep the CFTypeRef valid until they are no longer using the BackendTexture.
67
- SK_API BackendTexture MakeMetal(SkISize dimensions, CFTypeRef mtlTexture);
68
-
69
- SK_API CFTypeRef GetMtlTexture(const BackendTexture&);
70
- } // namespace BackendTextures
71
-
72
- namespace BackendSemaphores {
73
- // TODO(b/286088355) Determine creator's responsibility for setting refcnt.
74
- SK_API BackendSemaphore MakeMetal(CFTypeRef mtlEvent, uint64_t value);
75
-
76
- SK_API CFTypeRef GetMtlEvent(const BackendSemaphore&);
77
- SK_API uint64_t GetMtlValue(const BackendSemaphore&);
78
- } // namespace BackendSemaphores
79
-
80
- } // namespace skgpu::graphite
48
+ } // namespace skgpu::graphite
81
49
 
82
50
  #endif // __OBJC__
83
51
 
@@ -0,0 +1,48 @@
1
+ /*
2
+ * Copyright 2024 Google LLC
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 skgpu_graphite_MtlGraphiteTypesUtils_DEFINED
9
+ #define skgpu_graphite_MtlGraphiteTypesUtils_DEFINED
10
+
11
+ #include "include/core/SkTypes.h"
12
+
13
+ #include "include/gpu/graphite/BackendTexture.h"
14
+ #include "include/gpu/graphite/TextureInfo.h"
15
+ #include "include/private/base/SkAPI.h"
16
+
17
+ #import <CoreFoundation/CoreFoundation.h>
18
+
19
+ namespace skgpu::graphite {
20
+
21
+ struct SK_API MtlTextureInfo;
22
+
23
+ namespace TextureInfos {
24
+ SK_API TextureInfo MakeMetal(const MtlTextureInfo&);
25
+ SK_API TextureInfo MakeMetal(CFTypeRef mtlTexture);
26
+
27
+ SK_API bool GetMtlTextureInfo(const TextureInfo&, MtlTextureInfo*);
28
+ } // namespace TextureInfos
29
+
30
+ namespace BackendTextures {
31
+ // The BackendTexture will not call retain or release on the passed in CFTypeRef. Thus the
32
+ // client must keep the CFTypeRef valid until they are no longer using the BackendTexture.
33
+ SK_API BackendTexture MakeMetal(SkISize dimensions, CFTypeRef mtlTexture);
34
+
35
+ SK_API CFTypeRef GetMtlTexture(const BackendTexture&);
36
+ } // namespace BackendTextures
37
+
38
+ namespace BackendSemaphores {
39
+ // TODO(b/286088355) Determine creator's responsibility for setting refcnt.
40
+ SK_API BackendSemaphore MakeMetal(CFTypeRef mtlEvent, uint64_t value);
41
+
42
+ SK_API CFTypeRef GetMtlEvent(const BackendSemaphore&);
43
+ SK_API uint64_t GetMtlValue(const BackendSemaphore&);
44
+ } // namespace BackendSemaphores
45
+
46
+ } // namespace skgpu::graphite
47
+
48
+ #endif // skgpu_graphite_MtlGraphiteTypesUtils_DEFINED
@@ -15,6 +15,7 @@ namespace skgpu::graphite {
15
15
 
16
16
  class Context;
17
17
  class PaintOptions;
18
+ class PrecompileContext;
18
19
 
19
20
  /**
20
21
  * Describes the required properties of a RenderPass that will be combined with the
@@ -33,12 +34,12 @@ struct SK_API RenderPassProperties {
33
34
  * drawing. Graphite will always be able to perform an inline compilation if some SkPaint
34
35
  * combination was omitted from precompilation.
35
36
  *
36
- * @param context the Context to which the actual draws will be submitted
37
+ * @param precompileContext thread-safe helper holding required portions of the Context
37
38
  * @param paintOptions captures a set of SkPaints that will be drawn
38
39
  * @param drawTypes communicates which primitives those paints will be drawn with
39
40
  * @param renderPassProperties describes the RenderPasses needed for the desired Pipelines
40
41
  */
41
- void SK_API Precompile(Context* context,
42
+ void SK_API Precompile(PrecompileContext* precompileContext,
42
43
  const PaintOptions& paintOptions,
43
44
  DrawTypeFlags drawTypes,
44
45
  SkSpan<const RenderPassProperties> renderPassProperties);
@@ -65,7 +65,15 @@ bool SK_API Simplify(const SkPath& path, SkPath* result);
65
65
  @param result The tight bounds of the path.
66
66
  @return True if the bounds could be computed.
67
67
  */
68
- bool SK_API TightBounds(const SkPath& path, SkRect* result);
68
+ [[deprecated]]
69
+ static inline bool TightBounds(const SkPath& path, SkRect* result) {
70
+ auto rect = path.computeTightBounds();
71
+ if (rect.isFinite()) {
72
+ *result = rect;
73
+ return true;
74
+ }
75
+ return false;
76
+ }
69
77
 
70
78
  /** Set the result with fill type winding to area equivalent to path.
71
79
  Returns true if successful. Does not detect if path contains contours which
@@ -13,8 +13,11 @@
13
13
 
14
14
  class SkFontMgr;
15
15
  class SkFontConfigInterface;
16
+ class SkFontScanner;
16
17
 
17
18
  /** Creates a SkFontMgr which wraps a SkFontConfigInterface. */
18
19
  SK_API sk_sp<SkFontMgr> SkFontMgr_New_FCI(sk_sp<SkFontConfigInterface> fci);
20
+ SK_API sk_sp<SkFontMgr> SkFontMgr_New_FCI(sk_sp<SkFontConfigInterface> fci,
21
+ std::unique_ptr<SkFontScanner> scanner);
19
22
 
20
23
  #endif // #ifndef SkFontMgr_FontConfigInterface_DEFINED
@@ -28,15 +28,6 @@
28
28
  class SkMatrix;
29
29
  class SkRRect;
30
30
 
31
- // These are computed from a stream of verbs
32
- struct SkPathVerbAnalysis {
33
- bool valid;
34
- int points, weights;
35
- unsigned segmentMask;
36
- };
37
- SkPathVerbAnalysis sk_path_analyze_verbs(const uint8_t verbs[], int count);
38
-
39
-
40
31
  /**
41
32
  * Holds the path verbs and points. It is versioned by a generation ID. None of its public methods
42
33
  * modify the contents. To modify or append to the verbs/points wrap the SkPathRef in an
@@ -541,7 +532,12 @@ private:
541
532
 
542
533
  void callGenIDChangeListeners();
543
534
 
535
+ PointsArray fPoints;
536
+ VerbsArray fVerbs;
537
+ ConicWeightsArray fConicWeights;
538
+
544
539
  mutable SkRect fBounds;
540
+ SkRect fArcOval;
545
541
 
546
542
  enum {
547
543
  kEmptyGenID = 1, // GenID reserved for path ref with zero points and zero verbs.
@@ -549,27 +545,25 @@ private:
549
545
  mutable uint32_t fGenerationID;
550
546
  SkIDChangeListener::List fGenIDChangeListeners;
551
547
 
552
- PointsArray fPoints;
553
- VerbsArray fVerbs;
554
- ConicWeightsArray fConicWeights;
555
-
556
548
  SkDEBUGCODE(std::atomic<int> fEditorsAttached;) // assert only one editor in use at any time.
557
549
 
558
- mutable uint8_t fBoundsIsDirty;
559
- mutable bool fIsFinite; // only meaningful if bounds are valid
550
+ SkScalar fArcStartAngle;
551
+ SkScalar fArcSweepAngle;
560
552
 
561
553
  PathType fType;
562
- // Both the circle and rrect special cases have a notion of direction and starting point
563
- // The next two variables store that information for either.
564
- bool fRRectOrOvalIsCCW;
554
+
555
+ mutable uint8_t fBoundsIsDirty;
556
+
565
557
  uint8_t fRRectOrOvalStartIdx;
566
558
  uint8_t fSegmentMask;
567
559
  // If the path is an arc, these four variables store that information.
568
560
  // We should just store an SkArc, but alignment would cost us 8 more bytes.
569
561
  SkArc::Type fArcType;
570
- SkRect fArcOval;
571
- SkScalar fArcStartAngle;
572
- SkScalar fArcSweepAngle;
562
+
563
+ mutable bool fIsFinite; // only meaningful if bounds are valid
564
+ // Both the circle and rrect special cases have a notion of direction and starting point
565
+ // The next two variables store that information for either.
566
+ bool fRRectOrOvalIsCCW;
573
567
 
574
568
  friend class PathRefTest_Private;
575
569
  friend class ForceIsRRect_Private; // unit test isRRect
@@ -56,20 +56,26 @@
56
56
  * Used to ignore sanitizer warnings.
57
57
  */
58
58
  #if !defined(SK_NO_SANITIZE)
59
- # define SK_NO_SANITIZE(A) SK_ATTRIBUTE(no_sanitize(A))
59
+ #if defined(__has_attribute)
60
+ #if __has_attribute(no_sanitize)
61
+ // This should be for clang and versions of gcc >= 8.0
62
+ #define SK_NO_SANITIZE(A) SK_ATTRIBUTE(no_sanitize(A))
63
+ #else
64
+ // For compilers that don't support sanitization, just do nothing.
65
+ #define SK_NO_SANITIZE(A)
66
+ #endif
67
+ #else // no __has_attribute, e.g. MSVC
68
+ #define SK_NO_SANITIZE(A)
69
+ #endif
60
70
  #endif
61
71
 
62
72
  /**
63
- * Helper macro to define no_sanitize attributes only with clang.
73
+ * Used to ignore CFI sanitizer warnings, supported only by Clang at the moment.
64
74
  */
65
- #if defined(__clang__) && defined(__has_attribute)
66
- #if __has_attribute(no_sanitize)
67
- #define SK_CLANG_NO_SANITIZE(A) SK_NO_SANITIZE(A)
68
- #endif
69
- #endif
70
-
71
- #if !defined(SK_CLANG_NO_SANITIZE)
72
- #define SK_CLANG_NO_SANITIZE(A)
75
+ #if defined(__clang__)
76
+ #define SK_NO_SANITIZE_CFI SK_NO_SANITIZE("cfi")
77
+ #else
78
+ #define SK_NO_SANITIZE_CFI
73
79
  #endif
74
80
 
75
81
  /**
@@ -14,6 +14,14 @@
14
14
  #include "include/private/base/SkThreadAnnotations.h"
15
15
  #include "include/private/base/SkThreadID.h"
16
16
 
17
+ /**
18
+ * class SkMutex
19
+ *
20
+ * This allows us to have a mutex without needing the one in
21
+ * the C++ std library which does not work with all clients.
22
+ * go/cstyle#Disallowed_Stdlib
23
+ */
24
+
17
25
  class SK_CAPABILITY("mutex") SkMutex {
18
26
  public:
19
27
  constexpr SkMutex() = default;
@@ -617,7 +617,7 @@ private:
617
617
  // unpredictable location in memory. Of course, TArray won't actually use fItemArray in this
618
618
  // way, and we don't want to construct a T before the user requests one. There's no real risk
619
619
  // here, so disable CFI when doing these casts.
620
- SK_CLANG_NO_SANITIZE("cfi")
620
+ SK_NO_SANITIZE_CFI
621
621
  static T* TCast(void* buffer) {
622
622
  return (T*)buffer;
623
623
  }
@@ -13,9 +13,9 @@
13
13
  #include "include/private/base/SkDebug.h"
14
14
  #include "include/private/base/SkTo.h"
15
15
 
16
- #include <algorithm>
17
16
  #include <cstddef>
18
17
  #include <initializer_list>
18
+ #include <utility>
19
19
 
20
20
  class SK_SPI SkTDStorage {
21
21
  public:
@@ -15,6 +15,7 @@
15
15
  #include "include/private/base/SkTLogic.h"
16
16
  #include "include/private/base/SkTo.h"
17
17
 
18
+ #include <algorithm>
18
19
  #include <array>
19
20
  #include <cstddef>
20
21
  #include <cstdint>
@@ -94,7 +95,8 @@ public:
94
95
 
95
96
 
96
97
  namespace skia_private {
97
- /** Allocate an array of T elements, and free the array in the destructor
98
+ /** Allocate an array of T elements on the heap. Once this goes out of scope, the
99
+ * elements will be cleaned up "auto"matically.
98
100
  */
99
101
  template <typename T> class AutoTArray {
100
102
  public:
@@ -164,7 +166,10 @@ private:
164
166
  size_t fSize = 0;
165
167
  };
166
168
 
167
- /** Wraps AutoTArray, with room for kCountRequested elements preallocated.
169
+ /** Like AutoTArray with room for kCountRequested elements preallocated on
170
+ * the Stack. If count exceeds the space of the preallocation, the elements
171
+ * will live on the heap. Once this goes out of scope, the elements will be
172
+ * cleaned up "auto"matically.
168
173
  */
169
174
  template <int kCountRequested, typename T> class AutoSTArray {
170
175
  public:
@@ -256,17 +261,25 @@ private:
256
261
  #if defined(SK_BUILD_FOR_GOOGLE3)
257
262
  // Stack frame size is limited for SK_BUILD_FOR_GOOGLE3. 4k is less than the actual max,
258
263
  // but some functions have multiple large stack allocations.
259
- static const int kMaxBytes = 4 * 1024;
260
- static const int kCount = kCountRequested * sizeof(T) > kMaxBytes
264
+ static constexpr int kMaxBytes = 4 * 1024;
265
+ static constexpr int kMinCount = kCountRequested * sizeof(T) > kMaxBytes
261
266
  ? kMaxBytes / sizeof(T)
262
267
  : kCountRequested;
263
268
  #else
264
- static const int kCount = kCountRequested;
269
+ static constexpr int kMinCount = kCountRequested;
265
270
  #endif
266
271
 
267
- int fCount;
272
+ // Because we are also storing an int, there is a tiny bit of padding that
273
+ // the C++ compiler adds after fStorage if sizeof(T) <= alignof(T*).
274
+ // Thus, we can expand how many elements are stored on the stack to make use of this
275
+ // (e.g. 1 extra element for 4 byte T if kCountRequested was even).
276
+ static_assert(alignof(int) <= alignof(T*) || alignof(int) <= alignof(T));
277
+ static constexpr int kCount =
278
+ SkAlignTo(kMinCount*sizeof(T) + sizeof(int), std::max(alignof(T*), alignof(T))) / sizeof(T);
279
+
268
280
  T* fArray;
269
- alignas(T) char fStorage[kCount * sizeof(T)];
281
+ alignas(T) std::byte fStorage[kCount * sizeof(T)];
282
+ int fCount;
270
283
  };
271
284
 
272
285
  /** Manages an array of T elements, freeing the array in the destructor.
@@ -409,16 +422,16 @@ public:
409
422
 
410
423
  private:
411
424
  // Since we use uint32_t storage, we might be able to get more elements for free.
412
- static const size_t kCountWithPadding = SkAlign4(kCountRequested*sizeof(T)) / sizeof(T);
425
+ static constexpr size_t kCountWithPadding = SkAlign4(kCountRequested*sizeof(T)) / sizeof(T);
413
426
  #if defined(SK_BUILD_FOR_GOOGLE3)
414
427
  // Stack frame size is limited for SK_BUILD_FOR_GOOGLE3. 4k is less than the actual max, but some functions
415
428
  // have multiple large stack allocations.
416
- static const size_t kMaxBytes = 4 * 1024;
417
- static const size_t kCount = kCountRequested * sizeof(T) > kMaxBytes
429
+ static constexpr size_t kMaxBytes = 4 * 1024;
430
+ static constexpr size_t kCount = kCountRequested * sizeof(T) > kMaxBytes
418
431
  ? kMaxBytes / sizeof(T)
419
432
  : kCountWithPadding;
420
433
  #else
421
- static const size_t kCount = kCountWithPadding;
434
+ static constexpr size_t kCount = kCountWithPadding;
422
435
  #endif
423
436
 
424
437
  T* fPtr;
@@ -539,7 +539,7 @@ SK_MAKE_BITFIELD_CLASS_OPS(GpuPathRenderers)
539
539
  enum class GrColorType {
540
540
  kUnknown,
541
541
  kAlpha_8,
542
- kBGR_565,
542
+ kBGR_565, // This corresponds to kRGB_565_SkColorType, which is misnamed.
543
543
  kRGB_565,
544
544
  kABGR_4444, // This name differs from SkColorType. kARGB_4444_SkColorType is misnamed.
545
545
  kRGBA_8888,
@@ -16,9 +16,6 @@ namespace SkSL {
16
16
 
17
17
  class DebugTrace : public SkRefCnt {
18
18
  public:
19
- /** Serializes a debug trace to JSON which can be parsed by our debugger. */
20
- virtual void writeTrace(SkWStream* w) const = 0;
21
-
22
19
  /** Generates a human-readable dump of the debug trace. */
23
20
  virtual void dump(SkWStream* o) const = 0;
24
21
  };
@@ -904,24 +904,19 @@ STAGE(load_1010102, NoCtx) {
904
904
  }
905
905
 
906
906
  STAGE(load_101010x_XR, NoCtx) {
907
- static constexpr float min = -0.752941f;
908
- static constexpr float max = 1.25098f;
909
- static constexpr float range = max - min;
910
907
  U32 rgba = load<U32>(src + 4*i);
911
- r = cast<F>((rgba >> 0) & 0x3ff) * (1/1023.0f) * range + min;
912
- g = cast<F>((rgba >> 10) & 0x3ff) * (1/1023.0f) * range + min;
913
- b = cast<F>((rgba >> 20) & 0x3ff) * (1/1023.0f) * range + min;
908
+ r = cast<F>(((rgba >> 0) & 0x3ff) - 384) / 510.0f;
909
+ g = cast<F>(((rgba >> 10) & 0x3ff) - 384) / 510.0f;
910
+ b = cast<F>(((rgba >> 20) & 0x3ff) - 384) / 510.0f;
914
911
  }
915
912
 
916
913
  STAGE(load_10101010_XR, NoCtx) {
917
- static constexpr float min = -0.752941f;
918
- static constexpr float max = 1.25098f;
919
- static constexpr float range = max - min;
920
914
  U64 rgba = load<U64>(src + 8 * i);
921
- r = cast<F>((rgba >> (0+6)) & 0x3ff) * (1/1023.0f) * range + min;
922
- g = cast<F>((rgba >> (16+6)) & 0x3ff) * (1/1023.0f) * range + min;
923
- b = cast<F>((rgba >> (32+6)) & 0x3ff) * (1/1023.0f) * range + min;
924
- a = cast<F>((rgba >> (48+6)) & 0x3ff) * (1/1023.0f) * range + min;
915
+ // Each channel is 16 bits, where the 6 low bits are padding.
916
+ r = cast<F>(((rgba >> ( 0+6)) & 0x3ff) - 384) / 510.0f;
917
+ g = cast<F>(((rgba >> (16+6)) & 0x3ff) - 384) / 510.0f;
918
+ b = cast<F>(((rgba >> (32+6)) & 0x3ff) - 384) / 510.0f;
919
+ a = cast<F>(((rgba >> (48+6)) & 0x3ff) - 384) / 510.0f;
925
920
  }
926
921
 
927
922
  STAGE(load_161616LE, NoCtx) {
@@ -1310,12 +1305,17 @@ FINAL_STAGE(store_8888, NoCtx) {
1310
1305
  }
1311
1306
 
1312
1307
  FINAL_STAGE(store_101010x_XR, NoCtx) {
1313
- static constexpr float min = -0.752941f;
1314
- static constexpr float max = 1.25098f;
1315
- static constexpr float range = max - min;
1316
- store(dst + 4*i, cast<U32>(to_fixed(((r - min) / range) * 1023)) << 0
1317
- | cast<U32>(to_fixed(((g - min) / range) * 1023)) << 10
1318
- | cast<U32>(to_fixed(((b - min) / range) * 1023)) << 20);
1308
+ store(dst + 4*i, cast<U32>(to_fixed((r * 510) + 384)) << 0
1309
+ | cast<U32>(to_fixed((g * 510) + 384)) << 10
1310
+ | cast<U32>(to_fixed((b * 510) + 384)) << 20);
1311
+ }
1312
+
1313
+ FINAL_STAGE(store_10101010_XR, NoCtx) {
1314
+ // Each channel is 16 bits, where the 6 low bits are padding.
1315
+ store(dst + 8*i, cast<U64>(to_fixed((r * 510) + 384)) << ( 0+6)
1316
+ | cast<U64>(to_fixed((g * 510) + 384)) << (16+6)
1317
+ | cast<U64>(to_fixed((b * 510) + 384)) << (32+6)
1318
+ | cast<U64>(to_fixed((a * 510) + 384)) << (48+6));
1319
1319
  }
1320
1320
 
1321
1321
  FINAL_STAGE(store_1010102, NoCtx) {
@@ -1521,7 +1521,7 @@ FINAL_STAGE(store_ffff, NoCtx) {
1521
1521
  // NOLINTNEXTLINE(misc-definitions-in-headers)
1522
1522
  void run_program(const Op* program, const void** contexts, SKCMS_MAYBE_UNUSED ptrdiff_t programSize,
1523
1523
  const char* src, char* dst, int n,
1524
- const size_t src_bpp, const size_t dst_bpp) {
1524
+ size_t src_bpp, size_t dst_bpp) {
1525
1525
  #if SKCMS_HAS_MUSTTAIL
1526
1526
  // Convert the program into an array of tailcall stages.
1527
1527
  StageFn stages[32];
@@ -101,6 +101,7 @@ namespace skcms_private {
101
101
  M(store_161616BE) \
102
102
  M(store_16161616BE) \
103
103
  M(store_101010x_XR) \
104
+ M(store_10101010_XR) \
104
105
  M(store_hhh) \
105
106
  M(store_hhhh) \
106
107
  M(store_fff) \
@@ -144,21 +145,21 @@ namespace baseline {
144
145
 
145
146
  void run_program(const Op* program, const void** contexts, ptrdiff_t programSize,
146
147
  const char* src, char* dst, int n,
147
- const size_t src_bpp, const size_t dst_bpp);
148
+ size_t src_bpp, size_t dst_bpp);
148
149
 
149
150
  }
150
151
  namespace hsw {
151
152
 
152
153
  void run_program(const Op* program, const void** contexts, ptrdiff_t programSize,
153
154
  const char* src, char* dst, int n,
154
- const size_t src_bpp, const size_t dst_bpp);
155
+ size_t src_bpp, size_t dst_bpp);
155
156
 
156
157
  }
157
158
  namespace skx {
158
159
 
159
160
  void run_program(const Op* program, const void** contexts, ptrdiff_t programSize,
160
161
  const char* src, char* dst, int n,
161
- const size_t src_bpp, const size_t dst_bpp);
162
+ size_t src_bpp, size_t dst_bpp);
162
163
 
163
164
  }
164
165
  } // namespace skcms_private