@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
@@ -94,7 +94,12 @@ public:
94
94
  kHSL,
95
95
  kHWB,
96
96
 
97
- kLastColorSpace = kHWB,
97
+ kDisplayP3,
98
+ kRec2020,
99
+ kProphotoRGB,
100
+ kA98RGB,
101
+
102
+ kLastColorSpace = kA98RGB,
98
103
  };
99
104
  static constexpr int kColorSpaceCount = static_cast<int>(ColorSpace::kLastColorSpace) + 1;
100
105
 
@@ -170,6 +170,7 @@ public:
170
170
 
171
171
  // Shader SkSL requires an entry point that looks like:
172
172
  // vec4 main(vec2 inCoords) { ... }
173
+ // The color that is returned should be premultiplied.
173
174
  static Result MakeForShader(SkString sksl, const Options&);
174
175
  static Result MakeForShader(SkString sksl) {
175
176
  return MakeForShader(std::move(sksl), Options{});
@@ -23,6 +23,7 @@ class SkImage;
23
23
  class SkPixmap;
24
24
  class SkWStream;
25
25
  struct skcms_ICCProfile;
26
+ struct SkGainmapInfo;
26
27
 
27
28
  namespace SkPngEncoder {
28
29
 
@@ -80,6 +81,19 @@ struct Options {
80
81
  */
81
82
  const skcms_ICCProfile* fICCProfile = nullptr;
82
83
  const char* fICCProfileDescription = nullptr;
84
+
85
+ /**
86
+ * If non-null, then a gainmap and its metadata will be encoded as png chunks.
87
+ * The gainmap will be encoded in a gmAP chunk as a full PNG container. The
88
+ * gainmap info will be encoded in a gdAT chunk inside of the gmAP chunk.
89
+ * This effectively is Option B proposed in this discussion for adding gainmaps
90
+ * into PNG: https://github.com/w3c/png/issues/380#issuecomment-2325163149.
91
+ *
92
+ * Note that if fGainmapInfo is null, then fGainmap will fail to encode, as the
93
+ * gainmap metadata is required to correctly interpret the encoded gainmap.
94
+ */
95
+ const SkPixmap* fGainmap = nullptr;
96
+ const SkGainmapInfo* fGainmapInfo = nullptr;
83
97
  };
84
98
 
85
99
  /**
@@ -79,6 +79,15 @@ enum class Origin : unsigned {
79
79
  kBottomLeft,
80
80
  };
81
81
 
82
+ enum class GpuStatsFlags : uint32_t {
83
+ kNone = 0b00,
84
+ kElapsedTime = 0b01,
85
+ };
86
+
87
+ struct GpuStats {
88
+ uint64_t elapsedTime = 0;
89
+ };
90
+
82
91
  } // namespace skgpu
83
92
 
84
93
 
@@ -75,8 +75,55 @@ struct SK_API GrContextOptions {
75
75
 
76
76
  GrContextOptions() {}
77
77
 
78
- // Suppress prints for the GrContext.
79
- bool fSuppressPrints = false;
78
+ /**
79
+ * If Skia is creating a default VMA allocator for the Vulkan backend this value will be used
80
+ * for the preferredLargeHeapBlockSize. If the value is not set, then Skia will use an
81
+ * inernally defined default size.
82
+ *
83
+ * However, it is highly discouraged to have Skia make a default allocator (and support for
84
+ * doing so will be removed soon, b/321962001). Instead clients should create their own
85
+ * allocator to pass into Skia where they can fine tune this value themeselves.
86
+ */
87
+ std::optional<uint64_t> fVulkanVMALargeHeapBlockSize;
88
+
89
+ /**
90
+ * Optional callback that can be passed into the GrDirectContext which will be called when the
91
+ * GrDirectContext is about to be destroyed. When this call is made, it will be safe for the
92
+ * client to delete the GPU backend context that is backing the GrDirectContext. The
93
+ * GrDirectContextDestroyedContext will be passed back to the client in the callback.
94
+ */
95
+ GrDirectContextDestroyedContext fContextDeleteContext = nullptr;
96
+ GrDirectContextDestroyedProc fContextDeleteProc = nullptr;
97
+
98
+ /**
99
+ * Executor to handle threaded work within Ganesh. If this is nullptr, then all work will be
100
+ * done serially on the main thread. To have worker threads assist with various tasks, set this
101
+ * to a valid SkExecutor instance. Currently, used for software path rendering, but may be used
102
+ * for other tasks.
103
+ */
104
+ SkExecutor* fExecutor = nullptr;
105
+
106
+ /**
107
+ * Cache in which to store compiled shader binaries between runs.
108
+ */
109
+ PersistentCache* fPersistentCache = nullptr;
110
+
111
+ /**
112
+ * If present, use this object to report shader compilation failures. If not, report failures
113
+ * via SkDebugf and assert.
114
+ */
115
+ ShaderErrorHandler* fShaderErrorHandler = nullptr;
116
+
117
+ /** Default minimum size to use when allocating buffers for uploading data to textures. The
118
+ larger the value the more uploads can be packed into one buffer, but at the cost of
119
+ more gpu memory allocated that may not be used. Uploads larger than the minimum will still
120
+ work by allocating a dedicated buffer. */
121
+ size_t fMinimumStagingBufferSize = 64 * 1024;
122
+
123
+ /**
124
+ * The maximum size of cache textures used for Skia's Glyph cache.
125
+ */
126
+ size_t fGlyphCacheTextureMaximumBytes = 2048 * 1024 * 4;
80
127
 
81
128
  /**
82
129
  * Controls whether we check for GL errors after functions that allocate resources (e.g.
@@ -86,6 +133,33 @@ struct SK_API GrContextOptions {
86
133
  */
87
134
  Enable fSkipGLErrorChecks = Enable::kDefault;
88
135
 
136
+ /**
137
+ * Can the glyph atlas use multiple textures. If allowed, the each texture's size is bound by
138
+ * fGlypheCacheTextureMaximumBytes.
139
+ */
140
+ Enable fAllowMultipleGlyphCacheTextures = Enable::kDefault;
141
+
142
+ /**
143
+ * Enables driver workaround to use draws instead of HW clears, e.g. glClear on the GL backend.
144
+ */
145
+ Enable fUseDrawInsteadOfClear = Enable::kDefault;
146
+
147
+ /**
148
+ * Allow Ganesh to more aggressively reorder operations to reduce the number of render passes.
149
+ * Offscreen draws will be done upfront instead of interrupting the main render pass when
150
+ * possible. May increase VRAM usage, but still observes the resource cache limit.
151
+ * Enabled by default.
152
+ */
153
+ Enable fReduceOpsTaskSplitting = Enable::kDefault;
154
+
155
+ /**
156
+ * This affects the usage of the PersistentCache. We can cache SkSL, backend source (GLSL), or
157
+ * backend binaries (GL program binaries). By default we cache binaries, but if the driver's
158
+ * binary loading/storing is believed to have bugs, this can be limited to caching GLSL.
159
+ * Caching GLSL strings still saves CPU work when a GL program is created.
160
+ */
161
+ ShaderCacheStrategy fShaderCacheStrategy = ShaderCacheStrategy::kBackendBinary;
162
+
89
163
  /** Overrides: These options override feature detection using backend API queries. These
90
164
  overrides can only reduce the feature set or limits, never increase them beyond the
91
165
  detected values. */
@@ -97,19 +171,48 @@ struct SK_API GrContextOptions {
97
171
  deduce the optimal value for this platform. */
98
172
  int fBufferMapThreshold = -1;
99
173
 
100
- /** Default minimum size to use when allocating buffers for uploading data to textures. The
101
- larger the value the more uploads can be packed into one buffer, but at the cost of
102
- more gpu memory allocated that may not be used. Uploads larger than the minimum will still
103
- work by allocating a dedicated buffer. */
104
- size_t fMinimumStagingBufferSize = 64 * 1024;
174
+ /**
175
+ * Maximum number of GPU programs or pipelines to keep active in the runtime cache.
176
+ */
177
+ int fRuntimeProgramCacheSize = 256;
105
178
 
106
179
  /**
107
- * Executor to handle threaded work within Ganesh. If this is nullptr, then all work will be
108
- * done serially on the main thread. To have worker threads assist with various tasks, set this
109
- * to a valid SkExecutor instance. Currently, used for software path rendering, but may be used
110
- * for other tasks.
180
+ * Specifies the number of samples Ganesh should use when performing internal draws with MSAA
181
+ * (hardware capabilities permitting).
182
+ *
183
+ * If 0, Ganesh will disable internal code paths that use multisampling.
111
184
  */
112
- SkExecutor* fExecutor = nullptr;
185
+ int fInternalMultisampleCount = 4;
186
+
187
+ /**
188
+ * In Skia's vulkan backend a single GrContext submit equates to the submission of a single
189
+ * primary command buffer to the VkQueue. This value specifies how many vulkan secondary command
190
+ * buffers we will cache for reuse on a given primary command buffer. A single submit may use
191
+ * more than this many secondary command buffers, but after the primary command buffer is
192
+ * finished on the GPU it will only hold on to this many secondary command buffers for reuse.
193
+ *
194
+ * A value of -1 means we will pick a limit value internally.
195
+ */
196
+ int fMaxCachedVulkanSecondaryCommandBuffers = -1;
197
+
198
+ /**
199
+ * Below this threshold size in device space distance field fonts won't be used. Distance field
200
+ * fonts don't support hinting which is more important at smaller sizes.
201
+ */
202
+ float fMinDistanceFieldFontSize = 18;
203
+
204
+ /**
205
+ * Above this threshold size in device space glyphs are drawn as individual paths.
206
+ */
207
+ #if defined(SK_BUILD_FOR_ANDROID)
208
+ float fGlyphsAsPathsFontSize = 384;
209
+ #elif defined(SK_BUILD_FOR_MAC)
210
+ float fGlyphsAsPathsFontSize = 256;
211
+ #else
212
+ float fGlyphsAsPathsFontSize = 324;
213
+ #endif
214
+
215
+ GrDriverBugWorkarounds fDriverBugWorkarounds;
113
216
 
114
217
  /** Construct mipmaps manually, via repeated downsampling draw-calls. This is used when
115
218
  the driver's implementation (glGenerateMipmap) contains bugs. This requires mipmap
@@ -142,34 +245,6 @@ struct SK_API GrContextOptions {
142
245
  */
143
246
  bool fDisableGpuYUVConversion = false;
144
247
 
145
- /**
146
- * The maximum size of cache textures used for Skia's Glyph cache.
147
- */
148
- size_t fGlyphCacheTextureMaximumBytes = 2048 * 1024 * 4;
149
-
150
- /**
151
- * Below this threshold size in device space distance field fonts won't be used. Distance field
152
- * fonts don't support hinting which is more important at smaller sizes.
153
- */
154
- float fMinDistanceFieldFontSize = 18;
155
-
156
- /**
157
- * Above this threshold size in device space glyphs are drawn as individual paths.
158
- */
159
- #if defined(SK_BUILD_FOR_ANDROID)
160
- float fGlyphsAsPathsFontSize = 384;
161
- #elif defined(SK_BUILD_FOR_MAC)
162
- float fGlyphsAsPathsFontSize = 256;
163
- #else
164
- float fGlyphsAsPathsFontSize = 324;
165
- #endif
166
-
167
- /**
168
- * Can the glyph atlas use multiple textures. If allowed, the each texture's size is bound by
169
- * fGlypheCacheTextureMaximumBytes.
170
- */
171
- Enable fAllowMultipleGlyphCacheTextures = Enable::kDefault;
172
-
173
248
  /**
174
249
  * Bugs on certain drivers cause stencil buffers to leak. This flag causes Skia to avoid
175
250
  * allocating stencil buffers and use alternate rasterization paths, avoiding the leak.
@@ -183,19 +258,6 @@ struct SK_API GrContextOptions {
183
258
  */
184
259
  bool fSharpenMipmappedTextures = true;
185
260
 
186
- /**
187
- * Enables driver workaround to use draws instead of HW clears, e.g. glClear on the GL backend.
188
- */
189
- Enable fUseDrawInsteadOfClear = Enable::kDefault;
190
-
191
- /**
192
- * Allow Ganesh to more aggressively reorder operations to reduce the number of render passes.
193
- * Offscreen draws will be done upfront instead of interrupting the main render pass when
194
- * possible. May increase VRAM usage, but still observes the resource cache limit.
195
- * Enabled by default.
196
- */
197
- Enable fReduceOpsTaskSplitting = Enable::kDefault;
198
-
199
261
  /**
200
262
  * Some ES3 contexts report the ES2 external image extension, but not the ES3 version.
201
263
  * If support for external images is critical, enabling this option will cause Ganesh to limit
@@ -210,60 +272,6 @@ struct SK_API GrContextOptions {
210
272
  */
211
273
  bool fDisableDriverCorrectnessWorkarounds = false;
212
274
 
213
- /**
214
- * Maximum number of GPU programs or pipelines to keep active in the runtime cache.
215
- */
216
- int fRuntimeProgramCacheSize = 256;
217
-
218
- /**
219
- * Cache in which to store compiled shader binaries between runs.
220
- */
221
- PersistentCache* fPersistentCache = nullptr;
222
-
223
- /**
224
- * This affects the usage of the PersistentCache. We can cache SkSL, backend source (GLSL), or
225
- * backend binaries (GL program binaries). By default we cache binaries, but if the driver's
226
- * binary loading/storing is believed to have bugs, this can be limited to caching GLSL.
227
- * Caching GLSL strings still saves CPU work when a GL program is created.
228
- */
229
- ShaderCacheStrategy fShaderCacheStrategy = ShaderCacheStrategy::kBackendBinary;
230
-
231
- /**
232
- * If present, use this object to report shader compilation failures. If not, report failures
233
- * via SkDebugf and assert.
234
- */
235
- ShaderErrorHandler* fShaderErrorHandler = nullptr;
236
-
237
- /**
238
- * Specifies the number of samples Ganesh should use when performing internal draws with MSAA
239
- * (hardware capabilities permitting).
240
- *
241
- * If 0, Ganesh will disable internal code paths that use multisampling.
242
- */
243
- int fInternalMultisampleCount = 4;
244
-
245
- /**
246
- * In Skia's vulkan backend a single GrContext submit equates to the submission of a single
247
- * primary command buffer to the VkQueue. This value specifies how many vulkan secondary command
248
- * buffers we will cache for reuse on a given primary command buffer. A single submit may use
249
- * more than this many secondary command buffers, but after the primary command buffer is
250
- * finished on the GPU it will only hold on to this many secondary command buffers for reuse.
251
- *
252
- * A value of -1 means we will pick a limit value internally.
253
- */
254
- int fMaxCachedVulkanSecondaryCommandBuffers = -1;
255
-
256
- /**
257
- * If Skia is creating a default VMA allocator for the Vulkan backend this value will be used
258
- * for the preferredLargeHeapBlockSize. If the value is not set, then Skia will use an
259
- * inernally defined default size.
260
- *
261
- * However, it is highly discouraged to have Skia make a default allocator (and support for
262
- * doing so will be removed soon, b/321962001). Instead clients should create their own
263
- * allocator to pass into Skia where they can fine tune this value themeselves.
264
- */
265
- std::optional<uint64_t> fVulkanVMALargeHeapBlockSize;
266
-
267
275
  /**
268
276
  * If true, the caps will never support mipmaps.
269
277
  */
@@ -307,20 +315,32 @@ struct SK_API GrContextOptions {
307
315
  */
308
316
  bool fAlwaysUseTexStorageWhenAvailable = false;
309
317
 
310
- /**
311
- * Optional callback that can be passed into the GrDirectContext which will be called when the
312
- * GrDirectContext is about to be destroyed. When this call is made, it will be safe for the
313
- * client to delete the GPU backend context that is backing the GrDirectContext. The
314
- * GrDirectContextDestroyedContext will be passed back to the client in the callback.
315
- */
316
- GrDirectContextDestroyedContext fContextDeleteContext = nullptr;
317
- GrDirectContextDestroyedProc fContextDeleteProc = nullptr;
318
+ // Suppress prints for the GrContext.
319
+ bool fSuppressPrints = false;
318
320
 
319
321
  #if defined(GPU_TEST_UTILS)
320
322
  /**
321
323
  * Private options that are only meant for testing within Skia's tools.
322
324
  */
323
325
 
326
+ /**
327
+ * Include or exclude specific GPU path renderers.
328
+ */
329
+ GpuPathRenderers fGpuPathRenderers = GpuPathRenderers::kDefault;
330
+
331
+ /**
332
+ * Specify the GPU resource cache limit. Equivalent to calling `setResourceCacheLimit` on the
333
+ * context at construction time.
334
+ *
335
+ * A value of -1 means use the default limit value.
336
+ */
337
+ int fResourceCacheLimitOverride = -1;
338
+
339
+ /**
340
+ * Maximum width and height of internal texture atlases.
341
+ */
342
+ int fMaxTextureAtlasSize = 2048;
343
+
324
344
  /**
325
345
  * Testing-only mode to exercise allocation failures in the flush-time callback objects.
326
346
  * For now it only simulates allocation failure during the preFlush callback.
@@ -368,26 +388,8 @@ struct SK_API GrContextOptions {
368
388
  */
369
389
  bool fDisallowWriteAndTransferPixelRowBytes = false;
370
390
 
371
- /**
372
- * Include or exclude specific GPU path renderers.
373
- */
374
- GpuPathRenderers fGpuPathRenderers = GpuPathRenderers::kDefault;
375
-
376
- /**
377
- * Specify the GPU resource cache limit. Equivalent to calling `setResourceCacheLimit` on the
378
- * context at construction time.
379
- *
380
- * A value of -1 means use the default limit value.
381
- */
382
- int fResourceCacheLimitOverride = -1;
383
-
384
- /**
385
- * Maximum width and height of internal texture atlases.
386
- */
387
- int fMaxTextureAtlasSize = 2048;
388
391
  #endif
389
392
 
390
- GrDriverBugWorkarounds fDriverBugWorkarounds;
391
393
  };
392
394
 
393
395
  #endif
@@ -271,6 +271,11 @@ public:
271
271
  */
272
272
  void purgeUnlockedResources(GrPurgeResourceOptions opts);
273
273
 
274
+ /*
275
+ * Gets the types of GPU stats supported by this Context.
276
+ */
277
+ skgpu::GpuStatsFlags supportedGpuStats() const;
278
+
274
279
  /**
275
280
  * Gets the maximum supported texture size.
276
281
  */
@@ -34,8 +34,10 @@ enum GrDriverBugWorkaroundType {
34
34
 
35
35
  class SK_API GrDriverBugWorkarounds {
36
36
  public:
37
- GrDriverBugWorkarounds();
37
+ GrDriverBugWorkarounds() = default;
38
38
  GrDriverBugWorkarounds(const GrDriverBugWorkarounds&) = default;
39
+ ~GrDriverBugWorkarounds() = default;
40
+
39
41
  explicit GrDriverBugWorkarounds(const std::vector<int32_t>& workarounds);
40
42
 
41
43
  GrDriverBugWorkarounds& operator=(const GrDriverBugWorkarounds&) = default;
@@ -43,8 +45,6 @@ class SK_API GrDriverBugWorkarounds {
43
45
  // Turn on any workarounds listed in |workarounds| (but don't turn any off).
44
46
  void applyOverrides(const GrDriverBugWorkarounds& workarounds);
45
47
 
46
- ~GrDriverBugWorkarounds();
47
-
48
48
  #define GPU_OP(type, name) bool name = false;
49
49
  GPU_DRIVER_BUG_WORKAROUNDS(GPU_OP)
50
50
  #undef GPU_OP
@@ -9,17 +9,13 @@
9
9
  #define GrTypes_DEFINED
10
10
 
11
11
  #include "include/core/SkTypes.h"
12
+ #include "include/gpu/GpuTypes.h"
12
13
  #include "include/private/base/SkTo.h" // IWYU pragma: keep
13
14
 
14
15
  #include <cstddef>
15
16
  #include <cstdint>
16
17
  class GrBackendSemaphore;
17
18
 
18
- namespace skgpu {
19
- enum class Protected : bool;
20
- enum class Renderable : bool;
21
- }
22
-
23
19
  ///////////////////////////////////////////////////////////////////////////////
24
20
 
25
21
  /**
@@ -110,6 +106,8 @@ static const uint32_t kAll_GrBackendState = 0xffffffff;
110
106
 
111
107
  typedef void* GrGpuFinishedContext;
112
108
  typedef void (*GrGpuFinishedProc)(GrGpuFinishedContext finishedContext);
109
+ typedef void (*GrGpuFinishedWithStatsProc)(GrGpuFinishedContext finishedContext,
110
+ const skgpu::GpuStats&);
113
111
 
114
112
  typedef void* GrGpuSubmittedContext;
115
113
  typedef void (*GrGpuSubmittedProc)(GrGpuSubmittedContext submittedContext, bool success);
@@ -131,10 +129,15 @@ typedef void (*GrDirectContextDestroyedProc)(GrDirectContextDestroyedContext des
131
129
  * and returned in initialized GrBackendSemaphore objects. The GrBackendSemaphore objects
132
130
  * themselves can be deleted as soon as this function returns.
133
131
  *
134
- * If a finishedProc is provided, the finishedProc will be called when all work submitted to the gpu
135
- * from this flush call and all previous flush calls has finished on the GPU. If the flush call
136
- * fails due to an error and nothing ends up getting sent to the GPU, the finished proc is called
137
- * immediately.
132
+ * If a finishedProc or finishedWithStatsProc is provided, the proc will be called when all work
133
+ * submitted to the gpu from this flush call and all previous flush calls has finished on the GPU.
134
+ * If the flush call fails due to an error and nothing ends up getting sent to the GPU, the finished
135
+ * proc is called immediately. If both types of proc are provided then finishedWithStatsProc is
136
+ * preferred.
137
+ *
138
+ * When finishedWithStatsProc is called the GpuStats passed will contain valid values for stats
139
+ * by requested by gpuStatsFlags, assuming the stats are supported by the underlying backend GPU
140
+ * context and the GPU work completed successfully.
138
141
  *
139
142
  * If a submittedProc is provided, the submittedProc will be called when all work from this flush
140
143
  * call is submitted to the GPU. If the flush call fails due to an error and nothing will get sent
@@ -148,8 +151,10 @@ typedef void (*GrDirectContextDestroyedProc)(GrDirectContextDestroyedContext des
148
151
  */
149
152
  struct GrFlushInfo {
150
153
  size_t fNumSemaphores = 0;
154
+ skgpu::GpuStatsFlags fGpuStatsFlags = skgpu::GpuStatsFlags::kNone;
151
155
  GrBackendSemaphore* fSignalSemaphores = nullptr;
152
156
  GrGpuFinishedProc fFinishedProc = nullptr;
157
+ GrGpuFinishedWithStatsProc fFinishedWithStatsProc = nullptr;
153
158
  GrGpuFinishedContext fFinishedContext = nullptr;
154
159
  GrGpuSubmittedProc fSubmittedProc = nullptr;
155
160
  GrGpuSubmittedContext fSubmittedContext = nullptr;
@@ -16,6 +16,10 @@
16
16
  #include "include/gpu/graphite/Recorder.h"
17
17
  #include "include/private/base/SingleOwner.h"
18
18
 
19
+ #if defined(GPU_TEST_UTILS)
20
+ #include "include/private/base/SkMutex.h"
21
+ #endif
22
+
19
23
  #include <chrono>
20
24
  #include <functional>
21
25
  #include <memory>
@@ -33,7 +37,7 @@ class Context;
33
37
  class ContextPriv;
34
38
  class GlobalCache;
35
39
  class PaintOptions;
36
- class PlotUploadTracker;
40
+ class PrecompileContext;
37
41
  class QueueManager;
38
42
  class Recording;
39
43
  class ResourceProvider;
@@ -53,6 +57,11 @@ public:
53
57
 
54
58
  std::unique_ptr<Recorder> makeRecorder(const RecorderOptions& = {});
55
59
 
60
+ /** Creates a helper object that can be moved to a different thread and used
61
+ * for precompilation.
62
+ */
63
+ std::unique_ptr<PrecompileContext> makePrecompileContext();
64
+
56
65
  bool insertRecording(const InsertRecordingInfo&);
57
66
  bool submit(SyncToCpu = SyncToCpu::kNo);
58
67
 
@@ -218,6 +227,12 @@ public:
218
227
  */
219
228
  size_t maxBudgetedBytes() const;
220
229
 
230
+ /**
231
+ * Sets the size of Context's gpu memory cache budget in bytes. If the new budget is lower than
232
+ * the current budget, the cache will try to free resources to get under the new budget.
233
+ */
234
+ void setMaxBudgetedBytes(size_t bytes);
235
+
221
236
  /**
222
237
  * Enumerates all cached GPU resources owned by the Context and dumps their memory to
223
238
  * traceMemoryDump.
@@ -240,6 +255,11 @@ public:
240
255
  */
241
256
  bool supportsProtectedContent() const;
242
257
 
258
+ /*
259
+ * Gets the types of GPU stats supported by this Context.
260
+ */
261
+ GpuStatsFlags supportedGpuStats() const;
262
+
243
263
  // Provides access to functions that aren't part of the public API.
244
264
  ContextPriv priv();
245
265
  const ContextPriv priv() const; // NOLINT(readability-const-return-type)
@@ -343,11 +363,14 @@ private:
343
363
  mutable SingleOwner fSingleOwner;
344
364
 
345
365
  #if defined(GPU_TEST_UTILS)
366
+ void deregisterRecorder(const Recorder*) SK_EXCLUDES(fTestingLock);
367
+
346
368
  // In test builds a Recorder may track the Context that was used to create it.
347
369
  bool fStoreContextRefInRecorder = false;
348
370
  // If this tracking is on, to allow the client to safely delete this Context or its Recorders
349
371
  // in any order we must also track the Recorders created here.
350
- std::vector<Recorder*> fTrackedRecorders;
372
+ SkMutex fTestingLock;
373
+ std::vector<Recorder*> fTrackedRecorders SK_GUARDED_BY(fTestingLock);
351
374
  #endif
352
375
 
353
376
  // Needed for MessageBox handling
@@ -8,11 +8,13 @@
8
8
  #ifndef skgpu_graphite_ContextOptions_DEFINED
9
9
  #define skgpu_graphite_ContextOptions_DEFINED
10
10
 
11
+ #include "include/core/SkRefCnt.h"
11
12
  #include "include/private/base/SkAPI.h"
12
13
  #include "include/private/base/SkMath.h"
13
14
 
14
15
  #include <optional>
15
16
 
17
+ class SkData;
16
18
  namespace skgpu { class ShaderErrorHandler; }
17
19
 
18
20
  namespace skgpu::graphite {
@@ -85,12 +87,12 @@ struct SK_API ContextOptions {
85
87
  bool fSupportBilerpFromGlyphAtlas = false;
86
88
 
87
89
  /**
88
- * Disable caching of glyph uploads at the start of each Recording. These can add additional
89
- * overhead and are only necessary if Recordings are replayed or played out of order.
90
- *
91
- * Deprecated, now only used to set requireOrderedRecordings Caps.
90
+ * For the moment, if Recordings are replayed in the order they are recorded, then
91
+ * Graphite can make certain assumptions that allow for better performance. Otherwise
92
+ * we have to flush some caches at the start of each Recording to ensure that they can
93
+ * be played back properly.
92
94
  */
93
- bool fDisableCachedGlyphUploads = false;
95
+ bool fRequireOrderedRecordings = false;
94
96
 
95
97
  static constexpr size_t kDefaultContextBudget = 256 * (1 << 20);
96
98
  /**
@@ -118,6 +120,22 @@ struct SK_API ContextOptions {
118
120
  */
119
121
  std::optional<uint64_t> fVulkanVMALargeHeapBlockSize;
120
122
 
123
+ /** Client-provided context that is passed to client-provided PipelineCallback. */
124
+ using PipelineCallbackContext = void*;
125
+ /** Client-provided callback that is called whenever Graphite encounters a new Pipeline. */
126
+ using PipelineCallback = void (*)(PipelineCallbackContext context, sk_sp<SkData> pipelineData);
127
+
128
+ /**
129
+ * These two members allow a client to register a callback that will be invoked
130
+ * whenever Graphite encounters a new Pipeline. The callback will be passed an
131
+ * sk_sp<SkData> that a client can take ownership of and serialize. The SkData
132
+ * contains all the information Graphite requires to recreate the Pipeline at
133
+ * a later date. The SkData is versioned however, so must be regenerated and
134
+ * re-serialized when it becomes out of date.
135
+ */
136
+ PipelineCallbackContext fPipelineCallbackContext = nullptr;
137
+ PipelineCallback fPipelineCallback = nullptr;
138
+
121
139
  /**
122
140
  * Private options that are only meant for testing within Skia's tools.
123
141
  */
@@ -30,13 +30,23 @@ class Task;
30
30
  using GpuFinishedContext = void*;
31
31
  using GpuFinishedProc = void (*)(GpuFinishedContext finishedContext, CallbackResult);
32
32
 
33
+ using GpuFinishedWithStatsProc = void (*)(GpuFinishedContext finishedContext,
34
+ CallbackResult,
35
+ const GpuStats&);
36
+
33
37
  /**
34
38
  * The fFinishedProc is called when the Recording has been submitted and finished on the GPU, or
35
39
  * when there is a failure that caused it not to be submitted. The callback will always be called
36
40
  * and the caller can use the callback to know it is safe to free any resources associated with
37
41
  * the Recording that they may be holding onto. If the Recording is successfully submitted to the
38
42
  * GPU the callback will be called with CallbackResult::kSuccess once the GPU has finished. All
39
- * other cases where some failure occured it will be called with CallbackResult::kFailed.
43
+ * other cases where some failure occurred it will be called with CallbackResult::kFailed.
44
+ *
45
+ * Alternatively, the client can provide fFinishedProcWithStats. This provides additional
46
+ * information about execution of the recording on the GPU. Only the stats requested using
47
+ * fStatsFlags will be valid and only if CallbackResult is kSuccess. If both fFinishedProc
48
+ * and fFinishedProcWithStats are provided the latter is preferred and the former won't be
49
+ * called.
40
50
  *
41
51
  * The fTargetSurface, if provided, is used as a target for any draws recorded onto a deferred
42
52
  * canvas returned from Recorder::makeDeferredCanvas. This target surface must be provided iff
@@ -74,8 +84,10 @@ struct InsertRecordingInfo {
74
84
  size_t fNumSignalSemaphores = 0;
75
85
  BackendSemaphore* fSignalSemaphores = nullptr;
76
86
 
87
+ GpuStatsFlags fGpuStatsFlags = GpuStatsFlags::kNone;
77
88
  GpuFinishedContext fFinishedContext = nullptr;
78
89
  GpuFinishedProc fFinishedProc = nullptr;
90
+ GpuFinishedWithStatsProc fFinishedWithStatsProc = nullptr;
79
91
  };
80
92
 
81
93
  /**
@@ -87,8 +99,15 @@ struct InsertRecordingInfo {
87
99
  * other cases where some failure occured it will be called with CallbackResult::kFailed.
88
100
  */
89
101
  struct InsertFinishInfo {
102
+ InsertFinishInfo() = default;
103
+ InsertFinishInfo(GpuFinishedContext context, GpuFinishedProc proc)
104
+ : fFinishedContext{context}, fFinishedProc{proc} {}
105
+ InsertFinishInfo(GpuFinishedContext context, GpuFinishedWithStatsProc proc)
106
+ : fFinishedContext{context}, fFinishedWithStatsProc{proc} {}
90
107
  GpuFinishedContext fFinishedContext = nullptr;
91
108
  GpuFinishedProc fFinishedProc = nullptr;
109
+ GpuFinishedWithStatsProc fFinishedWithStatsProc = nullptr;
110
+ GpuStatsFlags fGpuStatsFlags = GpuStatsFlags::kNone;
92
111
  };
93
112
 
94
113
  /**