@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
@@ -39,6 +39,85 @@ struct SK_API SkColorSpacePrimaries {
39
39
  bool toXYZD50(skcms_Matrix3x3* toXYZD50) const;
40
40
  };
41
41
 
42
+ namespace SkNamedPrimaries {
43
+
44
+ ////////////////////////////////////////////////////////////////////////////////
45
+ // Color primaries defined by ITU-T H.273, table 2. Names are given by the first
46
+ // specification referenced in the value's row.
47
+
48
+ // Rec. ITU-R BT.709-6, value 1.
49
+ static constexpr SkColorSpacePrimaries kRec709 = {
50
+ 0.64f, 0.33f, 0.3f, 0.6f, 0.15f, 0.06f, 0.3127f, 0.329f};
51
+
52
+ // Rec. ITU-R BT.470-6 System M (historical), value 4.
53
+ static constexpr SkColorSpacePrimaries kRec470SystemM = {
54
+ 0.67f, 0.33f, 0.21f, 0.71f, 0.14f, 0.08f, 0.31f, 0.316f};
55
+
56
+ // Rec. ITU-R BT.470-6 System B, G (historical), value 5.
57
+ static constexpr SkColorSpacePrimaries kRec470SystemBG = {
58
+ 0.64f, 0.33f, 0.29f, 0.60f, 0.15f, 0.06f, 0.3127f, 0.3290f};
59
+
60
+ // Rec. ITU-R BT.601-7 525, value 6.
61
+ static constexpr SkColorSpacePrimaries kRec601 = {
62
+ 0.630f, 0.340f, 0.310f, 0.595f, 0.155f, 0.070f, 0.3127f, 0.3290f};
63
+
64
+ // SMPTE ST 240, value 7 (functionally the same as value 6).
65
+ static constexpr SkColorSpacePrimaries kSMPTE_ST_240 = kRec601;
66
+
67
+ // Generic film (colour filters using Illuminant C), value 8.
68
+ static constexpr SkColorSpacePrimaries kGenericFilm = {
69
+ 0.681f, 0.319f, 0.243f, 0.692f, 0.145f, 0.049f, 0.310f, 0.316f};
70
+
71
+ // Rec. ITU-R BT.2020-2, value 9.
72
+ static constexpr SkColorSpacePrimaries kRec2020{
73
+ 0.708f, 0.292f, 0.170f, 0.797f, 0.131f, 0.046f, 0.3127f, 0.3290f};
74
+
75
+ // SMPTE ST 428-1, value 10.
76
+ static constexpr SkColorSpacePrimaries kSMPTE_ST_428_1 = {
77
+ 1.f, 0.f, 0.f, 1.f, 0.f, 0.f, 1.f / 3.f, 1.f / 3.f};
78
+
79
+ // SMPTE RP 431-2, value 11.
80
+ static constexpr SkColorSpacePrimaries kSMPTE_RP_431_2 = {
81
+ 0.680f, 0.320f, 0.265f, 0.690f, 0.150f, 0.060f, 0.314f, 0.351f};
82
+
83
+ // SMPTE EG 432-1, value 12.
84
+ static constexpr SkColorSpacePrimaries kSMPTE_EG_432_1 = {
85
+ 0.680f, 0.320f, 0.265f, 0.690f, 0.150f, 0.060f, 0.3127f, 0.3290f};
86
+
87
+ // No corresponding industry specification identified, value 22.
88
+ // This is sometimes referred to as EBU 3213-E, but that document doesn't
89
+ // specify these values.
90
+ static constexpr SkColorSpacePrimaries kITU_T_H273_Value22 = {
91
+ 0.630f, 0.340f, 0.295f, 0.605f, 0.155f, 0.077f, 0.3127f, 0.3290f};
92
+
93
+ // Mapping between names of color primaries and the number of the corresponding
94
+ // row in ITU-T H.273, table 2. As above, the constants are named based on the
95
+ // first specification referenced in the value's row.
96
+ enum class CicpId : uint8_t {
97
+ // Value 0 is reserved.
98
+ kRec709 = 1,
99
+ // Value 2 is unspecified.
100
+ // Value 3 is reserved.
101
+ kRec470SystemM = 4,
102
+ kRec470SystemBG = 5,
103
+ kRec601 = 6,
104
+ kSMPTE_ST_240 = 7,
105
+ kGenericFilm = 8,
106
+ kRec2020 = 9,
107
+ kSMPTE_ST_428_1 = 10,
108
+ kSMPTE_RP_431_2 = 11,
109
+ kSMPTE_EG_432_1 = 12,
110
+ // Values 13-21 are reserved.
111
+ kITU_T_H273_Value22 = 22,
112
+ // Values 23-255 are reserved.
113
+ };
114
+
115
+ // https://www.w3.org/TR/css-color-4/#predefined-prophoto-rgb
116
+ static constexpr SkColorSpacePrimaries kProPhotoRGB = {
117
+ 0.7347f, 0.2653f, 0.1596f, 0.8404f, 0.0366f, 0.0001f, 0.34567f, 0.35850f};
118
+
119
+ } // namespace SkNamedPrimaries
120
+
42
121
  namespace SkNamedTransferFn {
43
122
 
44
123
  // Like SkNamedGamut::kSRGB, keeping this bitwise exactly the same as skcms makes things fastest.
@@ -48,18 +127,98 @@ static constexpr skcms_TransferFunction kSRGB =
48
127
  static constexpr skcms_TransferFunction k2Dot2 =
49
128
  { 2.2f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f };
50
129
 
130
+ static constexpr skcms_TransferFunction kRec2020 = {
131
+ 2.22222f, 0.909672f, 0.0903276f, 0.222222f, 0.0812429f, 0, 0};
132
+
133
+ ////////////////////////////////////////////////////////////////////////////////
134
+ // Color primaries defined by ITU-T H.273, table 3. Names are given by the first
135
+ // specification referenced in the value's row.
136
+
137
+ // Rec. ITU-R BT.709-6, value 1.
138
+ static constexpr skcms_TransferFunction kRec709 = {2.222222222222f,
139
+ 0.909672415686f,
140
+ 0.090327584314f,
141
+ 0.222222222222f,
142
+ 0.081242858299f,
143
+ 0.f,
144
+ 0.f};
145
+
146
+ // Rec. ITU-R BT.470-6 System M (historical) assumed display gamma 2.2, value 4.
147
+ static constexpr skcms_TransferFunction kRec470SystemM = {2.2f, 1.f, 0.f, 0.f, 0.f, 0.f, 0.f};
148
+
149
+ // Rec. ITU-R BT.470-6 System B, G (historical) assumed display gamma 2.8,
150
+ // value 5.
151
+ static constexpr skcms_TransferFunction kRec470SystemBG = {2.8f, 1.f, 0.f, 0.f, 0.f, 0.f, 0.f};
152
+
153
+ // Rec. ITU-R BT.601-7, same as kRec709, value 6.
154
+ static constexpr skcms_TransferFunction kRec601 = kRec709;
155
+
156
+ // SMPTE ST 240, value 7.
157
+ static constexpr skcms_TransferFunction kSMPTE_ST_240 = {
158
+ 2.222222222222f, 0.899626676224f, 0.100373323776f, 0.25f, 0.091286342118f, 0.f, 0.f};
159
+
160
+ // Linear, value 8
51
161
  static constexpr skcms_TransferFunction kLinear =
52
162
  { 1.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f };
53
163
 
54
- static constexpr skcms_TransferFunction kRec2020 =
55
- {2.22222f, 0.909672f, 0.0903276f, 0.222222f, 0.0812429f, 0, 0};
164
+ // IEC 61966-2-4, value 11, same as kRec709 (but is explicitly extended).
165
+ static constexpr skcms_TransferFunction kIEC61966_2_4 = kRec709;
166
+
167
+ // IEC 61966-2-1 sRGB, value 13.
168
+ static constexpr skcms_TransferFunction kIEC61966_2_1 = kSRGB;
169
+
170
+ // Rec. ITU-R BT.2020-2 (10-bit system), value 14.
171
+ static constexpr skcms_TransferFunction kRec2020_10bit = kRec709;
56
172
 
173
+ // Rec. ITU-R BT.2020-2 (12-bit system), value 15.
174
+ static constexpr skcms_TransferFunction kRec2020_12bit = kRec709;
175
+
176
+ // Rec. ITU-R BT.2100-2 perceptual quantization (PQ) system, value 16.
57
177
  static constexpr skcms_TransferFunction kPQ =
58
178
  {-2.0f, -107/128.0f, 1.0f, 32/2523.0f, 2413/128.0f, -2392/128.0f, 8192/1305.0f };
59
179
 
180
+ // SMPTE ST 428-1, value 17.
181
+ static constexpr skcms_TransferFunction kSMPTE_ST_428_1 = {
182
+ 2.6f, 1.034080527699f, 0.f, 0.f, 0.f, 0.f, 0.f};
183
+
184
+ // Rec. ITU-R BT.2100-2 hybrid log-gamma (HLG) system, value 18.
60
185
  static constexpr skcms_TransferFunction kHLG =
61
186
  {-3.0f, 2.0f, 2.0f, 1/0.17883277f, 0.28466892f, 0.55991073f, 0.0f };
62
187
 
188
+ // Mapping between transfer function names and the number of the corresponding
189
+ // row in ITU-T H.273, table 3. As above, the constants are named based on the
190
+ // first specification referenced in the value's row.
191
+ enum class CicpId : uint8_t {
192
+ // Value 0 is reserved.
193
+ kRec709 = 1,
194
+ // Value 2 is unspecified.
195
+ // Value 3 is reserved.
196
+ kRec470SystemM = 4,
197
+ kRec470SystemBG = 5,
198
+ kRec601 = 6,
199
+ kSMPTE_ST_240 = 7,
200
+ kLinear = 8,
201
+ // Value 9 is not supported by `SkColorSpace::MakeCICP`.
202
+ // Value 10 is not supported by `SkColorSpace::MakeCICP`.
203
+ kIEC61966_2_4 = 11,
204
+ // Value 12 is not supported by `SkColorSpace::MakeCICP`.
205
+ kIEC61966_2_1 = 13,
206
+ kSRGB = kIEC61966_2_1,
207
+ kRec2020_10bit = 14,
208
+ kRec2020_12bit = 15,
209
+ kPQ = 16,
210
+ kSMPTE_ST_428_1 = 17,
211
+ kHLG = 18,
212
+ // Values 19-255 are reserved.
213
+ };
214
+
215
+ // https://w3.org/TR/css-color-4/#valdef-color-prophoto-rgb
216
+ // "The transfer curve is a gamma function with a value of 1/1.8"
217
+ static constexpr skcms_TransferFunction kProPhotoRGB = {1.8f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f};
218
+
219
+ // https://www.w3.org/TR/css-color-4/#predefined-a98-rgb
220
+ static constexpr skcms_TransferFunction kA98RGB = k2Dot2;
221
+
63
222
  } // namespace SkNamedTransferFn
64
223
 
65
224
  namespace SkNamedGamut {
@@ -122,6 +281,29 @@ public:
122
281
  static sk_sp<SkColorSpace> MakeRGB(const skcms_TransferFunction& transferFn,
123
282
  const skcms_Matrix3x3& toXYZ);
124
283
 
284
+ /**
285
+ * Create an SkColorSpace from code points specified in Rec. ITU-T H.273.
286
+ * Null will be returned for invalid or unsupported combination of code
287
+ * points.
288
+ *
289
+ * Parameters:
290
+ *
291
+ * - `color_primaries` identifies an entry in Rec. ITU-T H.273, Table 2.
292
+ * - `transfer_characteristics` identifies an entry in Rec. ITU-T H.273, Table 3.
293
+ *
294
+ * `SkColorSpace` (and the underlying `skcms_ICCProfile`) only supports RGB
295
+ * color spaces and therefore this function does not take a
296
+ * `matrix_coefficients` parameter - the caller is expected to verify that
297
+ * `matrix_coefficients` is `0`.
298
+ *
299
+ * Narrow range images are extremely rare - see
300
+ * https://github.com/w3c/png/issues/312#issuecomment-2327349614. Therefore
301
+ * this function doesn't take a `video_full_range_flag` - the caller is
302
+ * expected to verify that it is `1` (indicating a full range image).
303
+ */
304
+ static sk_sp<SkColorSpace> MakeCICP(SkNamedPrimaries::CicpId color_primaries,
305
+ SkNamedTransferFn::CicpId transfer_characteristics);
306
+
125
307
  /**
126
308
  * Create an SkColorSpace from a parsed (skcms) ICC profile.
127
309
  */
@@ -15,43 +15,125 @@
15
15
 
16
16
  kN32_SkColorType selects the native 32-bit ARGB format for the current configuration. This can
17
17
  lead to inconsistent results across platforms, so use with caution.
18
- */
19
- enum SkColorType : int {
20
- kUnknown_SkColorType, //!< uninitialized
21
- kAlpha_8_SkColorType, //!< pixel with alpha in 8-bit byte
22
- kRGB_565_SkColorType, //!< pixel with 5 bits red, 6 bits green, 5 bits blue, in 16-bit word
23
- kARGB_4444_SkColorType, //!< pixel with 4 bits for alpha, red, green, blue; in 16-bit word
24
- kRGBA_8888_SkColorType, //!< pixel with 8 bits for red, green, blue, alpha; in 32-bit word
25
- kRGB_888x_SkColorType, //!< pixel with 8 bits each for red, green, blue; in 32-bit word
26
- kBGRA_8888_SkColorType, //!< pixel with 8 bits for blue, green, red, alpha; in 32-bit word
27
- kRGBA_1010102_SkColorType, //!< 10 bits for red, green, blue; 2 bits for alpha; in 32-bit word
28
- kBGRA_1010102_SkColorType, //!< 10 bits for blue, green, red; 2 bits for alpha; in 32-bit word
29
- kRGB_101010x_SkColorType, //!< pixel with 10 bits each for red, green, blue; in 32-bit word
30
- kBGR_101010x_SkColorType, //!< pixel with 10 bits each for blue, green, red; in 32-bit word
31
- kBGR_101010x_XR_SkColorType, //!< pixel with 10 bits each for blue, green, red; in 32-bit word, extended range
32
- kBGRA_10101010_XR_SkColorType, //!< pixel with 10 bits each for blue, green, red, alpha; in 64-bit word, extended range
33
- kRGBA_10x6_SkColorType, //!< pixel with 10 used bits (most significant) followed by 6 unused
34
- // bits for red, green, blue, alpha; in 64-bit word
35
- kGray_8_SkColorType, //!< pixel with grayscale level in 8-bit byte
36
- kRGBA_F16Norm_SkColorType, //!< pixel with half floats in [0,1] for red, green, blue, alpha;
37
- // in 64-bit word
38
- kRGBA_F16_SkColorType, //!< pixel with half floats for red, green, blue, alpha;
39
- // in 64-bit word
40
- kRGB_F16F16F16x_SkColorType, //!< pixel with half floats for red, green, blue; in 64-bit word
41
- kRGBA_F32_SkColorType, //!< pixel using C float for red, green, blue, alpha; in 128-bit word
42
18
 
43
- // The following 6 colortypes are just for reading from - not for rendering to
44
- kR8G8_unorm_SkColorType, //!< pixel with a uint8_t for red and green
19
+ By default, Skia operates with the assumption of a little-Endian system. The names of each
20
+ SkColorType implicitly define the channel ordering and size in memory. Due to historical reasons
21
+ the names do not follow 100% identical convention, but are typically labeled from least
22
+ significant to most significant. To help clarify when the actual data layout differs from the
23
+ default convention, every SkColorType's comment includes a bit-labeled description of a pixel
24
+ in that color type on a LE system.
45
25
 
46
- kA16_float_SkColorType, //!< pixel with a half float for alpha
47
- kR16G16_float_SkColorType, //!< pixel with a half float for red and green
26
+ Unless specified otherwise, a channel's value is treated as an unsigned integer with a range of
27
+ of [0, 2^N-1] and this is mapped uniformly to a floating point value of [0.0, 1.0]. Some color
28
+ types instead store data directly in 32-bit floating point (assumed to be IEEE), or in 16-bit
29
+ "half" floating point values. A half float, or F16/float16, is interpreted as FP 1-5-10 or
30
+ Bits: [sign:15 exp:14..10 man:9..0]
31
+ */
32
+ enum SkColorType : int {
33
+ // Unknown or unrepresentable as an SkColorType.
34
+ kUnknown_SkColorType,
35
+ // Single channel data (8-bit) interpreted as an alpha value. RGB are 0.
36
+ // Bits: [A:7..0]
37
+ kAlpha_8_SkColorType,
38
+ // Three channel BGR data (5 bits red, 6 bits green, 5 bits blue) packed into a LE 16-bit word.
39
+ // NOTE: The name of this enum value does not match the standard convention for SkColorType.
40
+ // Bits: [R:15..11 G:10..5 B:4..0]
41
+ kRGB_565_SkColorType,
42
+ // Four channel ABGR data (4 bits per channel) packed into a LE 16-bit word.
43
+ // NOTE: The name of this enum value does not match the standard convention for SkColorType.
44
+ // Bits: [R:15..12 G:11..8 B:7..4 A:3..0]
45
+ kARGB_4444_SkColorType,
46
+ // Four channel RGBA data (8 bits per channel) packed into a LE 32-bit word.
47
+ // Bits: [A:31..24 B:23..16 G:15..8 R:7..0]
48
+ kRGBA_8888_SkColorType,
49
+ // Three channel RGB data (8 bits per channel) packed into a LE 32-bit word. The remaining bits
50
+ // are ignored and alpha is forced to opaque.
51
+ // Bits: [x:31..24 B:23..16 G:15..8 R:7..0]
52
+ kRGB_888x_SkColorType,
53
+ // Four channel BGRA data (8 bits per channel) packed into a LE 32-bit word. R and B are swapped
54
+ // relative to kRGBA_8888.
55
+ // Bits: [A:31..24 R:23..16 G:15..8 B:7..0]
56
+ kBGRA_8888_SkColorType,
57
+ // Four channel RGBA data (10 bits per color, 2 bits for alpha) packed into a LE 32-bit word.
58
+ // Bits: [A:31..30 B:29..20 G:19..10 R:9..0]
59
+ kRGBA_1010102_SkColorType,
60
+ // Four channel BGRA data (10 bits per color, 2 bits for alpha) packed into a LE 32-bit word.
61
+ // R and B are swapped relative to kRGBA_1010102.
62
+ // Bits: [A:31..30 R:29..20 G:19..10 B:9..0]
63
+ kBGRA_1010102_SkColorType,
64
+ // Three channel RGB data (10 bits per channel) packed into a LE 32-bit word. The remaining bits
65
+ // are ignored and alpha is forced to opaque.
66
+ // Bits: [x:31..30 B:29..20 G:19..10 R:9..0]
67
+ kRGB_101010x_SkColorType,
68
+ // Three channel BGR data (10 bits per channel) packed into a LE 32-bit word. The remaining bits
69
+ // are ignored and alpha is forced to opaque. R and B are swapped relative to kRGB_101010x.
70
+ // Bits: [x:31..30 R:29..20 G:19..10 B:9..0]
71
+ kBGR_101010x_SkColorType,
72
+ // Three channel BGR data (10 bits per channel) packed into a LE 32-bit word. The remaining bits
73
+ // are ignored and alpha is forced to opaque. Instead of normalizing [0, 1023] to [0.0, 1.0] the
74
+ // color channels map to an extended range of [-0.752941, 1.25098], compatible with
75
+ // MTLPixelFormatBGR10_XR.
76
+ // Bits: [x:31..30 R:29..20 G:19..10 B:9..0]
77
+ kBGR_101010x_XR_SkColorType,
78
+ // Four channel BGRA data (10 bits per channel) packed into a LE 64-bit word. Each channel is
79
+ // preceded by 6 bits of padding. Instead of normalizing [0, 1023] to [0.0, 1.0] the color and
80
+ // alpha channels map to an extended range of [-0.752941, 1.25098], compatible with
81
+ // MTLPixelFormatBGRA10_XR.
82
+ // Bits: [A:63..54 x:53..48 R:47..38 x:37..32 G:31..22 x:21..16 B:15..6 x:5..0]
83
+ kBGRA_10101010_XR_SkColorType,
84
+ // Four channel RGBA data (10 bits per channel) packed into a LE 64-bit word. Each channel is
85
+ // preceded by 6 bits of padding.
86
+ // Bits: [A:63..54 x:53..48 B:47..38 x:37..32 G:31..22 x:21..16 R:15..6 x:5..0]
87
+ kRGBA_10x6_SkColorType,
88
+ // Single channel data (8-bit) interpreted as a grayscale value (e.g. replicated to RGB).
89
+ // Bits: [G:7..0]
90
+ kGray_8_SkColorType,
91
+ // Four channel RGBA data (16-bit half-float per channel) packed into a LE 64-bit word. Values
92
+ // are assumed to be in [0.0,1.0] range, unlike kRGBA_F16.
93
+ // Bits: [A:63..48 B:47..32 G:31..16 R:15..0]
94
+ kRGBA_F16Norm_SkColorType,
95
+ // Four channel RGBA data (16-bit half-float per channel) packed into a LE 64-bit word.
96
+ // This has extended range compared to kRGBA_F16Norm.
97
+ // Bits: [A:63..48 B:47..32 G:31..16 R:15..0]
98
+ kRGBA_F16_SkColorType,
99
+ // Three channel RGB data (16-bit half-float per channel) packed into a LE 64-bit word. The last
100
+ // 16 bits are ignored and alpha is forced to opaque.
101
+ // Bits: [x:63..48 B:47..32 G:31..16 R:15..0]
102
+ kRGB_F16F16F16x_SkColorType,
103
+ // Four channel RGBA data (32-bit float per channel) packed into a LE 128-bit word.
104
+ // Bits: [A:127..96 B:95..64 G:63..32 R:31..0]
105
+ kRGBA_F32_SkColorType,
48
106
 
49
- kA16_unorm_SkColorType, //!< pixel with a little endian uint16_t for alpha
50
- kR16G16_unorm_SkColorType, //!< pixel with a little endian uint16_t for red and green
51
- kR16G16B16A16_unorm_SkColorType, //!< pixel with a little endian uint16_t for red, green, blue
52
- // and alpha
107
+ // The following 8 colortypes are just for reading from - not for rendering to
53
108
 
109
+ // Two channel RG data (8 bits per channel). Blue is forced to 0, alpha is forced to opaque.
110
+ // Bits: [G:15..8 R:7..0]
111
+ kR8G8_unorm_SkColorType,
112
+ // Single channel data (16-bit half-float) interpreted as alpha. RGB are 0.
113
+ // Bits: [A:15..0]
114
+ kA16_float_SkColorType,
115
+ // Two channel RG data (16-bit half-float per channel) packed into a LE 32-bit word.
116
+ // Blue is forced to 0, alpha is forced to opaque.
117
+ // Bits: [G:31..16 R:15..0]
118
+ kR16G16_float_SkColorType,
119
+ // Single channel data (16 bits) interpreted as alpha. RGB are 0.
120
+ // Bits: [A:15..0]
121
+ kA16_unorm_SkColorType,
122
+ // Two channel RG data (16 bits per channel) packed into a LE 32-bit word. B is forced to 0,
123
+ // alpha is forced to opaque.
124
+ // Bits: [G:31..16 R:15..0]
125
+ kR16G16_unorm_SkColorType,
126
+ // Four channel RGBA data (16 bits per channel) packed into a LE 64-bit word.
127
+ // Bits: [A:63..48 B:47..32 G:31..16 R:15..0]
128
+ kR16G16B16A16_unorm_SkColorType,
129
+ // Four channel RGBA data (8 bits per channel) packed into a LE 32-bit word. The RGB values are
130
+ // assumed to be encoded with the sRGB transfer function, which can be decoded automatically
131
+ // by GPU hardware with certain texture formats.
132
+ // Bits: [A:31..24 B:23..16 G:15..8 R:7..0]
54
133
  kSRGBA_8888_SkColorType,
134
+ // Single channel data (8 bits) interpreted as red. G and B are forced to 0, alpha is forced to
135
+ // opaque.
136
+ // Bits: [R:7..0]
55
137
  kR8_unorm_SkColorType,
56
138
 
57
139
  kLastEnum_SkColorType = kR8_unorm_SkColorType, //!< last valid value
@@ -9,6 +9,7 @@
9
9
  #define SKFONTSCANNER_H_
10
10
 
11
11
  #include "include/core/SkFontArguments.h"
12
+ #include "include/core/SkFontParameters.h"
12
13
  #include "include/core/SkRefCnt.h"
13
14
  #include "include/core/SkTypes.h"
14
15
  #include "include/private/base/SkFixed.h"
@@ -22,13 +23,8 @@ class SkTypeface;
22
23
  class SkFontScanner : public SkNoncopyable {
23
24
  public:
24
25
  virtual ~SkFontScanner() = default;
25
- struct AxisDefinition {
26
- SkFourByteTag fTag;
27
- SkScalar fMinimum;
28
- SkScalar fDefault;
29
- SkScalar fMaximum;
30
- };
31
- typedef skia_private::STArray<4, AxisDefinition, true> AxisDefinitions;
26
+ using AxisDefinitions = skia_private::STArray<4, SkFontParameters::Variation::Axis, true>;
27
+ using VariationPosition = skia_private::STArray<4, SkFontArguments::VariationPosition::Coordinate, true>;
32
28
 
33
29
  virtual bool scanFile(SkStreamAsset* stream, int* numFaces) const = 0;
34
30
  virtual bool scanFace(SkStreamAsset* stream, int faceIndex, int* numInstances) const = 0;
@@ -39,7 +35,8 @@ public:
39
35
  SkString* name,
40
36
  SkFontStyle* style,
41
37
  bool* isFixedPitch,
42
- AxisDefinitions* axes) const = 0;
38
+ AxisDefinitions* axes,
39
+ VariationPosition* position) const = 0;
43
40
  virtual sk_sp<SkTypeface> MakeFromStream(std::unique_ptr<SkStreamAsset> stream,
44
41
  const SkFontArguments& args) const = 0;
45
42
  virtual SkFourByteTag getFactoryId() const = 0;
@@ -41,7 +41,7 @@ public:
41
41
  kUltraExpanded_Width = 9,
42
42
  };
43
43
 
44
- enum Slant {
44
+ enum Slant : uint8_t {
45
45
  kUpright_Slant,
46
46
  kItalic_Slant,
47
47
  kOblique_Slant,
@@ -17,7 +17,6 @@
17
17
 
18
18
  enum SkBlurStyle : int;
19
19
  struct SkDeserialProcs;
20
- struct SkRect;
21
20
 
22
21
  /** \class SkMaskFilter
23
22
 
@@ -35,13 +34,6 @@ public:
35
34
  static sk_sp<SkMaskFilter> MakeBlur(SkBlurStyle style, SkScalar sigma,
36
35
  bool respectCTM = true);
37
36
 
38
- /**
39
- * Returns the approximate bounds that would result from filtering the src rect.
40
- * The actual result may be different, but it should be contained within the
41
- * returned bounds.
42
- */
43
- SkRect approximateFilteredBounds(const SkRect& src) const;
44
-
45
37
  static sk_sp<SkMaskFilter> Deserialize(const void* data, size_t size,
46
38
  const SkDeserialProcs* procs = nullptr);
47
39
 
@@ -5,5 +5,5 @@
5
5
  * found in the LICENSE file.
6
6
  */
7
7
  #ifndef SK_MILESTONE
8
- #define SK_MILESTONE 132
8
+ #define SK_MILESTONE 134
9
9
  #endif
@@ -1909,7 +1909,7 @@ private:
1909
1909
  void shrinkToFit();
1910
1910
 
1911
1911
  // Creates a new Path after the supplied arguments have been validated by
1912
- // sk_path_analyze_verbs().
1912
+ // SkPathPriv::AnalyzeVerbs().
1913
1913
  static SkPath MakeInternal(const SkPathVerbAnalysis& analsis,
1914
1914
  const SkPoint points[],
1915
1915
  const uint8_t verbs[],
@@ -13,6 +13,7 @@
13
13
  #include "include/core/SkScalar.h"
14
14
  #include "include/core/SkSpan.h"
15
15
  #include "include/core/SkTypes.h"
16
+ #include "include/private/base/SkMacros.h"
16
17
 
17
18
  #include <cstdint>
18
19
  #include <cstring>
@@ -33,6 +34,7 @@ class SkString;
33
34
  If either axis radii is zero or less: radii are stored as zero; corner is square.
34
35
  If corner curves overlap, radii are proportionally reduced to fit within bounds.
35
36
  */
37
+ SK_BEGIN_REQUIRE_DENSE
36
38
  class SK_API SkRRect {
37
39
  public:
38
40
 
@@ -511,11 +513,11 @@ private:
511
513
  SkVector fRadii[4] = {{0, 0}, {0, 0}, {0,0}, {0,0}};
512
514
  // use an explicitly sized type so we're sure the class is dense (no uninitialized bytes)
513
515
  int32_t fType = kEmpty_Type;
514
- // TODO: add padding so we can use memcpy for flattening and not copy uninitialized data
515
516
 
516
517
  // to access fRadii directly
517
518
  friend class SkPath;
518
519
  friend class SkRRectPriv;
519
520
  };
521
+ SK_END_REQUIRE_DENSE
520
522
 
521
523
  #endif
@@ -25,9 +25,9 @@ struct SkSamplingOptions;
25
25
 
26
26
  /** \class SkShader
27
27
  *
28
- * Shaders specify the source color(s) for what is being drawn. If a paint
29
- * has no shader, then the paint's color is used. If the paint has a
30
- * shader, then the shader's color(s) are use instead, but they are
28
+ * Shaders specify the premultiplied source color(s) for what is being drawn.
29
+ * If a paint has no shader, then the paint's color is used. If the paint has a
30
+ * shader, then the shader's color(s) are used instead, but they are
31
31
  * modulated by the paint's alpha. This makes it easy to create a shader
32
32
  * once (e.g. bitmap tiling or gradient) and then change its transparency
33
33
  * w/o having to modify the original shader... only the paint's alpha needs
@@ -28,13 +28,13 @@ static inline bool SkStrStartsWith(const char string[], const char prefixStr[])
28
28
  SkASSERT(prefixStr);
29
29
  return !strncmp(string, prefixStr, strlen(prefixStr));
30
30
  }
31
- static inline bool SkStrStartsWith(const char string[], const char prefixChar) {
31
+ static inline bool SkStrStartsWith(const char string[], char prefixChar) {
32
32
  SkASSERT(string);
33
33
  return (prefixChar == *string);
34
34
  }
35
35
 
36
36
  bool SkStrEndsWith(const char string[], const char suffixStr[]);
37
- bool SkStrEndsWith(const char string[], const char suffixChar);
37
+ bool SkStrEndsWith(const char string[], char suffixChar);
38
38
 
39
39
  int SkStrStartsWithOneOf(const char string[], const char prefixes[]);
40
40
 
@@ -44,7 +44,7 @@ static inline int SkStrFind(const char string[], const char substring[]) {
44
44
  return SkToInt(first - &string[0]);
45
45
  }
46
46
 
47
- static inline int SkStrFindLastOf(const char string[], const char subchar) {
47
+ static inline int SkStrFindLastOf(const char string[], char subchar) {
48
48
  const char* last = strrchr(string, subchar);
49
49
  if (nullptr == last) return -1;
50
50
  return SkToInt(last - &string[0]);
@@ -55,7 +55,7 @@ static inline bool SkStrContains(const char string[], const char substring[]) {
55
55
  SkASSERT(substring);
56
56
  return (-1 != SkStrFind(string, substring));
57
57
  }
58
- static inline bool SkStrContains(const char string[], const char subchar) {
58
+ static inline bool SkStrContains(const char string[], char subchar) {
59
59
  SkASSERT(string);
60
60
  char tmp[2];
61
61
  tmp[0] = subchar;
@@ -142,25 +142,25 @@ public:
142
142
  bool startsWith(const char prefixStr[]) const {
143
143
  return SkStrStartsWith(fRec->data(), prefixStr);
144
144
  }
145
- bool startsWith(const char prefixChar) const {
145
+ bool startsWith(char prefixChar) const {
146
146
  return SkStrStartsWith(fRec->data(), prefixChar);
147
147
  }
148
148
  bool endsWith(const char suffixStr[]) const {
149
149
  return SkStrEndsWith(fRec->data(), suffixStr);
150
150
  }
151
- bool endsWith(const char suffixChar) const {
151
+ bool endsWith(char suffixChar) const {
152
152
  return SkStrEndsWith(fRec->data(), suffixChar);
153
153
  }
154
154
  bool contains(const char substring[]) const {
155
155
  return SkStrContains(fRec->data(), substring);
156
156
  }
157
- bool contains(const char subchar) const {
157
+ bool contains(char subchar) const {
158
158
  return SkStrContains(fRec->data(), subchar);
159
159
  }
160
160
  int find(const char substring[]) const {
161
161
  return SkStrFind(fRec->data(), substring);
162
162
  }
163
- int findLastOf(const char subchar) const {
163
+ int findLastOf(char subchar) const {
164
164
  return SkStrFindLastOf(fRec->data(), subchar);
165
165
  }
166
166
 
@@ -330,6 +330,20 @@ public:
330
330
  */
331
331
  sk_sp<SkImage> makeImageSnapshot(const SkIRect& bounds);
332
332
 
333
+ /** Returns an SkImage capturing the current SkSurface contents. However, the contents of the
334
+ SkImage are only valid as long as no other writes to the SkSurface occur. If writes to the
335
+ original SkSurface happen then contents of the SkImage are undefined. However, continued use
336
+ of the SkImage should not cause crashes or similar fatal behavior.
337
+
338
+ This API is useful for cases where the client either immediately destroys the SkSurface
339
+ after the SkImage is created or knows they will destroy the SkImage before writing to the
340
+ SkSurface again.
341
+
342
+ This API can be more performant than makeImageSnapshot as it never does an internal copy
343
+ of the data assuming the user frees either the SkImage or SkSurface as described above.
344
+ */
345
+ sk_sp<SkImage> makeTemporaryImage();
346
+
333
347
  /** Draws SkSurface contents to canvas, with its top-left corner at (x, y).
334
348
 
335
349
  If SkPaint paint is not nullptr, apply SkColorFilter, alpha, SkImageFilter, and SkBlendMode.
@@ -53,20 +53,18 @@ typedef uint32_t SkFontTableTag;
53
53
  class SK_API SkTypeface : public SkWeakRefCnt {
54
54
  public:
55
55
  /** Returns the typeface's intrinsic style attributes. */
56
- SkFontStyle fontStyle() const {
57
- return fStyle;
58
- }
56
+ SkFontStyle fontStyle() const;
59
57
 
60
58
  /** Returns true if style() has the kBold bit set. */
61
- bool isBold() const { return fStyle.weight() >= SkFontStyle::kSemiBold_Weight; }
59
+ bool isBold() const;
62
60
 
63
61
  /** Returns true if style() has the kItalic bit set. */
64
- bool isItalic() const { return fStyle.slant() != SkFontStyle::kUpright_Slant; }
62
+ bool isItalic() const;
65
63
 
66
64
  /** Returns true if the typeface claims to be fixed-pitch.
67
65
  * This is a style bit, advance widths may vary even if this returns true.
68
66
  */
69
- bool isFixedPitch() const { return fIsFixedPitch; }
67
+ bool isFixedPitch() const;
70
68
 
71
69
  /** Copy into 'coordinates' (allocated by the caller) the design variation coordinates.
72
70
  *
@@ -287,6 +285,20 @@ public:
287
285
  */
288
286
  bool getPostScriptName(SkString* name) const;
289
287
 
288
+ /**
289
+ * If the primary resource backing this typeface has a name (like a file
290
+ * path or URL) representable by unicode code points, the `resourceName`
291
+ * will be set. The primary purpose is as a user facing indication about
292
+ * where the data was obtained (which font file was used).
293
+ *
294
+ * Returns the number of resources backing this typeface.
295
+ *
296
+ * For local font collections resource name will often be a file path. The
297
+ * file path may or may not exist. If it does exist, using it to create an
298
+ * SkTypeface may or may not create a similar SkTypeface to this one.
299
+ */
300
+ int getResourceName(SkString* resourceName) const;
301
+
290
302
  /**
291
303
  * Return a stream for the contents of the font data, or NULL on failure.
292
304
  * If ttcIndex is not null, it is set to the TrueTypeCollection index
@@ -349,6 +361,10 @@ protected:
349
361
  /** Sets the font style. If used, must be called in the constructor. */
350
362
  void setFontStyle(SkFontStyle style) { fStyle = style; }
351
363
 
364
+ virtual SkFontStyle onGetFontStyle() const; // TODO: = 0;
365
+
366
+ virtual bool onGetFixedPitch() const; // TODO: = 0;
367
+
352
368
  // Must return a valid scaler context. It can not return nullptr.
353
369
  virtual std::unique_ptr<SkScalerContext> onCreateScalerContext(const SkScalerContextEffects&,
354
370
  const SkDescriptor*) const = 0;
@@ -398,6 +414,7 @@ protected:
398
414
  */
399
415
  virtual void onGetFamilyName(SkString* familyName) const = 0;
400
416
  virtual bool onGetPostScriptName(SkString*) const = 0;
417
+ virtual int onGetResourceName(SkString* resourceName) const; // TODO: = 0;
401
418
 
402
419
  /** Returns an iterator over the family names in the font. */
403
420
  virtual LocalizedStrings* onCreateFamilyNameIterator() const = 0;
@@ -424,7 +441,7 @@ private:
424
441
  std::unique_ptr<SkAdvancedTypefaceMetrics> getAdvancedMetrics() const;
425
442
  friend class SkRandomTypeface; // getAdvancedMetrics
426
443
  friend class SkPDFFont; // getAdvancedMetrics
427
- friend class SkTypeface_fontconfig;
444
+ friend class SkTypeface_proxy;
428
445
 
429
446
  friend class SkFontPriv; // getGlyphToUnicodeMap
430
447