@shopify/react-native-skia 1.12.0 → 1.12.1

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 (161) hide show
  1. package/android/cpp/jni/JniPlatformContext.cpp +1 -0
  2. package/cpp/api/JsiSkContourMeasure.h +1 -1
  3. package/cpp/api/JsiSkHostObjects.h +21 -10
  4. package/cpp/api/JsiSkParagraph.h +17 -27
  5. package/cpp/api/JsiSkPathEffect.h +1 -1
  6. package/cpp/api/JsiSkPictureFactory.h +1 -1
  7. package/cpp/api/recorder/Drawings.h +4 -3
  8. package/cpp/skia/include/codec/SkCodec.h +7 -2
  9. package/cpp/skia/include/config/SkUserConfig.h +11 -0
  10. package/cpp/skia/include/core/SkCanvas.h +11 -7
  11. package/cpp/skia/include/core/SkColor.h +10 -0
  12. package/cpp/skia/include/core/SkColorSpace.h +184 -2
  13. package/cpp/skia/include/core/SkColorType.h +114 -32
  14. package/cpp/skia/include/core/SkFontScanner.h +5 -8
  15. package/cpp/skia/include/core/SkFontStyle.h +1 -1
  16. package/cpp/skia/include/core/SkMaskFilter.h +0 -8
  17. package/cpp/skia/include/core/SkMilestone.h +1 -1
  18. package/cpp/skia/include/core/SkPath.h +1 -1
  19. package/cpp/skia/include/core/SkRRect.h +3 -1
  20. package/cpp/skia/include/core/SkShader.h +3 -3
  21. package/cpp/skia/include/core/SkString.h +8 -8
  22. package/cpp/skia/include/core/SkSurface.h +14 -0
  23. package/cpp/skia/include/core/SkTypeface.h +24 -7
  24. package/cpp/skia/include/effects/SkGradientShader.h +6 -1
  25. package/cpp/skia/include/effects/SkRuntimeEffect.h +1 -0
  26. package/cpp/skia/include/encode/SkPngEncoder.h +14 -0
  27. package/cpp/skia/include/gpu/GpuTypes.h +9 -0
  28. package/cpp/skia/include/gpu/ganesh/GrContextOptions.h +135 -133
  29. package/cpp/skia/include/gpu/ganesh/GrDirectContext.h +5 -0
  30. package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h +3 -3
  31. package/cpp/skia/include/gpu/ganesh/GrTypes.h +14 -9
  32. package/cpp/skia/include/gpu/graphite/Context.h +25 -2
  33. package/cpp/skia/include/gpu/graphite/ContextOptions.h +23 -5
  34. package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +20 -1
  35. package/cpp/skia/include/gpu/graphite/Image.h +1 -0
  36. package/cpp/skia/include/gpu/graphite/LogPriority.h +36 -0
  37. package/cpp/skia/include/gpu/graphite/PrecompileContext.h +52 -0
  38. package/cpp/skia/include/gpu/graphite/Recorder.h +6 -0
  39. package/cpp/skia/include/gpu/graphite/Recording.h +3 -1
  40. package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +4 -36
  41. package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypesUtils.h +48 -0
  42. package/cpp/skia/include/gpu/graphite/precompile/Precompile.h +3 -2
  43. package/cpp/skia/include/pathops/SkPathOps.h +9 -1
  44. package/cpp/skia/include/ports/SkFontMgr_FontConfigInterface.h +3 -0
  45. package/cpp/skia/include/private/SkPathRef.h +15 -21
  46. package/cpp/skia/include/private/base/SkAttributes.h +16 -10
  47. package/cpp/skia/include/private/base/SkMutex.h +8 -0
  48. package/cpp/skia/include/private/base/SkTArray.h +1 -1
  49. package/cpp/skia/include/private/base/SkTDArray.h +1 -1
  50. package/cpp/skia/include/private/base/SkTemplates.h +24 -11
  51. package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +1 -1
  52. package/cpp/skia/include/sksl/SkSLDebugTrace.h +0 -3
  53. package/cpp/skia/modules/skcms/src/Transform_inl.h +20 -20
  54. package/cpp/skia/modules/skcms/src/skcms_Transform.h +4 -3
  55. package/cpp/skia/modules/skcms/src/skcms_public.h +19 -15
  56. package/cpp/skia/modules/skresources/include/SkResources.h +3 -1
  57. package/cpp/skia/modules/svg/include/SkSVGCircle.h +1 -1
  58. package/cpp/skia/modules/svg/include/SkSVGContainer.h +1 -1
  59. package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +1 -1
  60. package/cpp/skia/modules/svg/include/SkSVGImage.h +2 -2
  61. package/cpp/skia/modules/svg/include/SkSVGPath.h +1 -1
  62. package/cpp/skia/modules/svg/include/SkSVGPoly.h +1 -1
  63. package/cpp/skia/modules/svg/include/SkSVGRect.h +1 -1
  64. package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +2 -0
  65. package/cpp/skia/modules/svg/include/SkSVGShape.h +1 -0
  66. package/cpp/skia/modules/svg/include/SkSVGText.h +1 -1
  67. package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +4 -0
  68. package/cpp/skia/modules/svg/include/SkSVGUse.h +1 -1
  69. package/cpp/skia/src/core/SkLRUCache.h +19 -13
  70. package/cpp/skia/src/core/SkTHash.h +50 -4
  71. package/cpp/skia/src/gpu/ganesh/gl/GrGLDefines.h +1 -0
  72. package/lib/commonjs/external/reanimated/useAnimatedImageValue.js +4 -3
  73. package/lib/commonjs/external/reanimated/useAnimatedImageValue.js.map +1 -1
  74. package/lib/commonjs/mock/index.js +1 -2
  75. package/lib/commonjs/mock/index.js.map +1 -1
  76. package/lib/commonjs/skia/web/Host.d.ts +1 -3
  77. package/lib/commonjs/skia/web/Host.js +7 -6
  78. package/lib/commonjs/skia/web/Host.js.map +1 -1
  79. package/lib/commonjs/skia/web/JsiSkFont.js +1 -1
  80. package/lib/commonjs/skia/web/JsiSkFont.js.map +1 -1
  81. package/lib/commonjs/skia/web/JsiSkFontMgr.js +1 -1
  82. package/lib/commonjs/skia/web/JsiSkFontMgr.js.map +1 -1
  83. package/lib/commonjs/skia/web/JsiSkImageFactory.js +1 -1
  84. package/lib/commonjs/skia/web/JsiSkImageFactory.js.map +1 -1
  85. package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js +6 -6
  86. package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js.map +1 -1
  87. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js +2 -2
  88. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js.map +1 -1
  89. package/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
  90. package/lib/commonjs/skia/web/JsiSkPathFactory.js +1 -1
  91. package/lib/commonjs/skia/web/JsiSkPathFactory.js.map +1 -1
  92. package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.js +1 -1
  93. package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
  94. package/lib/commonjs/skia/web/JsiSkia.js +4 -3
  95. package/lib/commonjs/skia/web/JsiSkia.js.map +1 -1
  96. package/lib/commonjs/skia/web/JsiVideo.js +2 -1
  97. package/lib/commonjs/skia/web/JsiVideo.js.map +1 -1
  98. package/lib/module/external/reanimated/useAnimatedImageValue.js +4 -3
  99. package/lib/module/external/reanimated/useAnimatedImageValue.js.map +1 -1
  100. package/lib/module/mock/index.js +1 -2
  101. package/lib/module/mock/index.js.map +1 -1
  102. package/lib/module/skia/web/Host.d.ts +1 -3
  103. package/lib/module/skia/web/Host.js +5 -4
  104. package/lib/module/skia/web/Host.js.map +1 -1
  105. package/lib/module/skia/web/JsiSkFont.js +2 -2
  106. package/lib/module/skia/web/JsiSkFont.js.map +1 -1
  107. package/lib/module/skia/web/JsiSkFontMgr.js +2 -2
  108. package/lib/module/skia/web/JsiSkFontMgr.js.map +1 -1
  109. package/lib/module/skia/web/JsiSkImageFactory.js +2 -2
  110. package/lib/module/skia/web/JsiSkImageFactory.js.map +1 -1
  111. package/lib/module/skia/web/JsiSkImageFilterFactory.js +7 -7
  112. package/lib/module/skia/web/JsiSkImageFilterFactory.js.map +1 -1
  113. package/lib/module/skia/web/JsiSkPathEffectFactory.js +3 -3
  114. package/lib/module/skia/web/JsiSkPathEffectFactory.js.map +1 -1
  115. package/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
  116. package/lib/module/skia/web/JsiSkPathFactory.js +2 -2
  117. package/lib/module/skia/web/JsiSkPathFactory.js.map +1 -1
  118. package/lib/module/skia/web/JsiSkTypefaceFontProvider.js +2 -2
  119. package/lib/module/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
  120. package/lib/module/skia/web/JsiSkia.js +4 -3
  121. package/lib/module/skia/web/JsiSkia.js.map +1 -1
  122. package/lib/module/skia/web/JsiVideo.js +2 -1
  123. package/lib/module/skia/web/JsiVideo.js.map +1 -1
  124. package/lib/typescript/lib/commonjs/mock/index.d.ts +1 -1
  125. package/lib/typescript/lib/commonjs/skia/web/Host.d.ts +1 -3
  126. package/lib/typescript/lib/commonjs/skia/web/JsiSkFont.d.ts +1 -1
  127. package/lib/typescript/lib/commonjs/skia/web/JsiSkFontMgr.d.ts +1 -1
  128. package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFactory.d.ts +1 -1
  129. package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
  130. package/lib/typescript/lib/commonjs/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
  131. package/lib/typescript/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
  132. package/lib/typescript/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
  133. package/lib/typescript/lib/commonjs/skia/web/JsiSkia.d.ts +3 -3
  134. package/lib/typescript/lib/commonjs/skia/web/JsiVideo.d.ts +1 -1
  135. package/lib/typescript/lib/module/mock/index.d.ts +1 -1
  136. package/lib/typescript/lib/module/skia/Skia.web.d.ts +3 -3
  137. package/lib/typescript/lib/module/skia/web/Host.d.ts +1 -3
  138. package/lib/typescript/lib/module/skia/web/JsiSkFont.d.ts +1 -1
  139. package/lib/typescript/lib/module/skia/web/JsiSkFontMgr.d.ts +1 -1
  140. package/lib/typescript/lib/module/skia/web/JsiSkImageFactory.d.ts +1 -1
  141. package/lib/typescript/lib/module/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
  142. package/lib/typescript/lib/module/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
  143. package/lib/typescript/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
  144. package/lib/typescript/lib/module/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
  145. package/lib/typescript/lib/module/skia/web/JsiSkia.d.ts +3 -3
  146. package/lib/typescript/lib/module/skia/web/JsiVideo.d.ts +1 -1
  147. package/lib/typescript/src/skia/web/Host.d.ts +1 -3
  148. package/lib/typescript/src/skia/web/JsiSkPathFactory.d.ts +1 -1
  149. package/package.json +1 -1
  150. package/src/external/reanimated/useAnimatedImageValue.ts +4 -3
  151. package/src/mock/index.ts +1 -2
  152. package/src/skia/web/Host.ts +5 -4
  153. package/src/skia/web/JsiSkFont.ts +3 -3
  154. package/src/skia/web/JsiSkFontMgr.ts +3 -3
  155. package/src/skia/web/JsiSkImageFactory.ts +3 -3
  156. package/src/skia/web/JsiSkImageFilterFactory.ts +8 -18
  157. package/src/skia/web/JsiSkPathEffectFactory.ts +5 -5
  158. package/src/skia/web/JsiSkPathFactory.ts +3 -8
  159. package/src/skia/web/JsiSkTypefaceFontProvider.ts +3 -3
  160. package/src/skia/web/JsiSkia.ts +7 -4
  161. package/src/skia/web/JsiVideo.ts +2 -1
@@ -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
 
@@ -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