@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.
- package/android/cpp/jni/JniPlatformContext.cpp +1 -0
- package/cpp/api/JsiSkContourMeasure.h +1 -1
- package/cpp/api/JsiSkHostObjects.h +21 -10
- package/cpp/api/JsiSkParagraph.h +17 -27
- package/cpp/api/JsiSkPathEffect.h +1 -1
- package/cpp/api/JsiSkPictureFactory.h +1 -1
- package/cpp/api/recorder/Drawings.h +4 -3
- package/cpp/skia/include/codec/SkCodec.h +7 -2
- package/cpp/skia/include/config/SkUserConfig.h +11 -0
- package/cpp/skia/include/core/SkCanvas.h +11 -7
- package/cpp/skia/include/core/SkColor.h +10 -0
- package/cpp/skia/include/core/SkColorSpace.h +184 -2
- package/cpp/skia/include/core/SkColorType.h +114 -32
- package/cpp/skia/include/core/SkFontScanner.h +5 -8
- package/cpp/skia/include/core/SkFontStyle.h +1 -1
- package/cpp/skia/include/core/SkMaskFilter.h +0 -8
- package/cpp/skia/include/core/SkMilestone.h +1 -1
- package/cpp/skia/include/core/SkPath.h +1 -1
- package/cpp/skia/include/core/SkRRect.h +3 -1
- package/cpp/skia/include/core/SkShader.h +3 -3
- package/cpp/skia/include/core/SkString.h +8 -8
- package/cpp/skia/include/core/SkSurface.h +14 -0
- package/cpp/skia/include/core/SkTypeface.h +24 -7
- package/cpp/skia/include/effects/SkGradientShader.h +6 -1
- package/cpp/skia/include/effects/SkRuntimeEffect.h +1 -0
- package/cpp/skia/include/encode/SkPngEncoder.h +14 -0
- package/cpp/skia/include/gpu/GpuTypes.h +9 -0
- package/cpp/skia/include/gpu/ganesh/GrContextOptions.h +135 -133
- package/cpp/skia/include/gpu/ganesh/GrDirectContext.h +5 -0
- package/cpp/skia/include/gpu/ganesh/GrDriverBugWorkarounds.h +3 -3
- package/cpp/skia/include/gpu/ganesh/GrTypes.h +14 -9
- package/cpp/skia/include/gpu/graphite/Context.h +25 -2
- package/cpp/skia/include/gpu/graphite/ContextOptions.h +23 -5
- package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +20 -1
- package/cpp/skia/include/gpu/graphite/Image.h +1 -0
- package/cpp/skia/include/gpu/graphite/LogPriority.h +36 -0
- package/cpp/skia/include/gpu/graphite/PrecompileContext.h +52 -0
- package/cpp/skia/include/gpu/graphite/Recorder.h +6 -0
- package/cpp/skia/include/gpu/graphite/Recording.h +3 -1
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +4 -36
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypesUtils.h +48 -0
- package/cpp/skia/include/gpu/graphite/precompile/Precompile.h +3 -2
- package/cpp/skia/include/pathops/SkPathOps.h +9 -1
- package/cpp/skia/include/ports/SkFontMgr_FontConfigInterface.h +3 -0
- package/cpp/skia/include/private/SkPathRef.h +15 -21
- package/cpp/skia/include/private/base/SkAttributes.h +16 -10
- package/cpp/skia/include/private/base/SkMutex.h +8 -0
- package/cpp/skia/include/private/base/SkTArray.h +1 -1
- package/cpp/skia/include/private/base/SkTDArray.h +1 -1
- package/cpp/skia/include/private/base/SkTemplates.h +24 -11
- package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +1 -1
- package/cpp/skia/include/sksl/SkSLDebugTrace.h +0 -3
- package/cpp/skia/modules/skcms/src/Transform_inl.h +20 -20
- package/cpp/skia/modules/skcms/src/skcms_Transform.h +4 -3
- package/cpp/skia/modules/skcms/src/skcms_public.h +19 -15
- package/cpp/skia/modules/skresources/include/SkResources.h +3 -1
- package/cpp/skia/modules/svg/include/SkSVGCircle.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGContainer.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGFeLightSource.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGImage.h +2 -2
- package/cpp/skia/modules/svg/include/SkSVGPath.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGPoly.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRect.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +2 -0
- package/cpp/skia/modules/svg/include/SkSVGShape.h +1 -0
- package/cpp/skia/modules/svg/include/SkSVGText.h +1 -1
- package/cpp/skia/modules/svg/include/SkSVGTransformableNode.h +4 -0
- package/cpp/skia/modules/svg/include/SkSVGUse.h +1 -1
- package/cpp/skia/src/core/SkLRUCache.h +19 -13
- package/cpp/skia/src/core/SkTHash.h +50 -4
- package/cpp/skia/src/gpu/ganesh/gl/GrGLDefines.h +1 -0
- package/lib/commonjs/external/reanimated/useAnimatedImageValue.js +4 -3
- package/lib/commonjs/external/reanimated/useAnimatedImageValue.js.map +1 -1
- package/lib/commonjs/mock/index.js +1 -2
- package/lib/commonjs/mock/index.js.map +1 -1
- package/lib/commonjs/skia/web/Host.d.ts +1 -3
- package/lib/commonjs/skia/web/Host.js +7 -6
- package/lib/commonjs/skia/web/Host.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkFont.js +1 -1
- package/lib/commonjs/skia/web/JsiSkFont.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkFontMgr.js +1 -1
- package/lib/commonjs/skia/web/JsiSkFontMgr.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkImageFactory.js +1 -1
- package/lib/commonjs/skia/web/JsiSkImageFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js +6 -6
- package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js +2 -2
- package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/lib/commonjs/skia/web/JsiSkPathFactory.js +1 -1
- package/lib/commonjs/skia/web/JsiSkPathFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.js +1 -1
- package/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkia.js +4 -3
- package/lib/commonjs/skia/web/JsiSkia.js.map +1 -1
- package/lib/commonjs/skia/web/JsiVideo.js +2 -1
- package/lib/commonjs/skia/web/JsiVideo.js.map +1 -1
- package/lib/module/external/reanimated/useAnimatedImageValue.js +4 -3
- package/lib/module/external/reanimated/useAnimatedImageValue.js.map +1 -1
- package/lib/module/mock/index.js +1 -2
- package/lib/module/mock/index.js.map +1 -1
- package/lib/module/skia/web/Host.d.ts +1 -3
- package/lib/module/skia/web/Host.js +5 -4
- package/lib/module/skia/web/Host.js.map +1 -1
- package/lib/module/skia/web/JsiSkFont.js +2 -2
- package/lib/module/skia/web/JsiSkFont.js.map +1 -1
- package/lib/module/skia/web/JsiSkFontMgr.js +2 -2
- package/lib/module/skia/web/JsiSkFontMgr.js.map +1 -1
- package/lib/module/skia/web/JsiSkImageFactory.js +2 -2
- package/lib/module/skia/web/JsiSkImageFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkImageFilterFactory.js +7 -7
- package/lib/module/skia/web/JsiSkImageFilterFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkPathEffectFactory.js +3 -3
- package/lib/module/skia/web/JsiSkPathEffectFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/lib/module/skia/web/JsiSkPathFactory.js +2 -2
- package/lib/module/skia/web/JsiSkPathFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkTypefaceFontProvider.js +2 -2
- package/lib/module/skia/web/JsiSkTypefaceFontProvider.js.map +1 -1
- package/lib/module/skia/web/JsiSkia.js +4 -3
- package/lib/module/skia/web/JsiSkia.js.map +1 -1
- package/lib/module/skia/web/JsiVideo.js +2 -1
- package/lib/module/skia/web/JsiVideo.js.map +1 -1
- package/lib/typescript/lib/commonjs/mock/index.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/Host.d.ts +1 -3
- package/lib/typescript/lib/commonjs/skia/web/JsiSkFont.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkFontMgr.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFactory.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
- package/lib/typescript/lib/commonjs/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
- package/lib/typescript/lib/commonjs/skia/web/JsiSkia.d.ts +3 -3
- package/lib/typescript/lib/commonjs/skia/web/JsiVideo.d.ts +1 -1
- package/lib/typescript/lib/module/mock/index.d.ts +1 -1
- package/lib/typescript/lib/module/skia/Skia.web.d.ts +3 -3
- package/lib/typescript/lib/module/skia/web/Host.d.ts +1 -3
- package/lib/typescript/lib/module/skia/web/JsiSkFont.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkFontMgr.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkImageFactory.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkImageFilterFactory.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkPathEffectFactory.d.ts +2 -2
- package/lib/typescript/lib/module/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkTypefaceFontProvider.d.ts +1 -1
- package/lib/typescript/lib/module/skia/web/JsiSkia.d.ts +3 -3
- package/lib/typescript/lib/module/skia/web/JsiVideo.d.ts +1 -1
- package/lib/typescript/src/skia/web/Host.d.ts +1 -3
- package/lib/typescript/src/skia/web/JsiSkPathFactory.d.ts +1 -1
- package/package.json +1 -1
- package/src/external/reanimated/useAnimatedImageValue.ts +4 -3
- package/src/mock/index.ts +1 -2
- package/src/skia/web/Host.ts +5 -4
- package/src/skia/web/JsiSkFont.ts +3 -3
- package/src/skia/web/JsiSkFontMgr.ts +3 -3
- package/src/skia/web/JsiSkImageFactory.ts +3 -3
- package/src/skia/web/JsiSkImageFilterFactory.ts +8 -18
- package/src/skia/web/JsiSkPathEffectFactory.ts +5 -5
- package/src/skia/web/JsiSkPathFactory.ts +3 -8
- package/src/skia/web/JsiSkTypefaceFontProvider.ts +3 -3
- package/src/skia/web/JsiSkia.ts +7 -4
- package/src/skia/web/JsiVideo.ts +2 -1
@@ -34,7 +34,7 @@ public:
|
|
34
34
|
SkPoint tangent;
|
35
35
|
auto result = getObject()->getPosTan(dist, &position, &tangent);
|
36
36
|
if (!result) {
|
37
|
-
throw jsi::JSError(runtime, "
|
37
|
+
throw jsi::JSError(runtime, "getPosTan() failed");
|
38
38
|
}
|
39
39
|
auto posTan = jsi::Array(runtime, 2);
|
40
40
|
auto pos = jsi::Object::createFromHostObject(
|
@@ -54,20 +54,21 @@ public:
|
|
54
54
|
|
55
55
|
/**
|
56
56
|
* Returns the underlying object exposed by this host object. This object
|
57
|
-
* should be wrapped in a shared pointer of some kind
|
57
|
+
* should be wrapped in a shared pointer of some kind.
|
58
|
+
* Throws if the object has been disposed.
|
58
59
|
* @return Underlying object
|
59
60
|
*/
|
60
|
-
T getObject() { return
|
61
|
-
const T getObject() const { return
|
61
|
+
T getObject() { return validateObject(); }
|
62
|
+
const T getObject() const { return validateObject(); }
|
62
63
|
|
63
64
|
/**
|
64
|
-
Updates the inner object with a new version of the object.
|
65
|
+
* Updates the inner object with a new version of the object.
|
65
66
|
*/
|
66
67
|
void setObject(T object) { _object = object; }
|
67
68
|
|
68
69
|
/**
|
69
|
-
Dispose function that can be exposed to JS by using the JSI_API_TYPENAME
|
70
|
-
macro
|
70
|
+
* Dispose function that can be exposed to JS by using the JSI_API_TYPENAME
|
71
|
+
* macro.
|
71
72
|
*/
|
72
73
|
JSI_HOST_FUNCTION(dispose) {
|
73
74
|
safeDispose();
|
@@ -76,12 +77,22 @@ public:
|
|
76
77
|
|
77
78
|
protected:
|
78
79
|
/**
|
79
|
-
Override to implement
|
80
|
-
|
80
|
+
* Override to implement disposal of allocated resources like smart pointers.
|
81
|
+
* This method will only be called once for each instance of this class.
|
81
82
|
*/
|
82
83
|
virtual void releaseResources() = 0;
|
83
84
|
|
84
85
|
private:
|
86
|
+
/**
|
87
|
+
* Validates that _object was not disposed and returns it.
|
88
|
+
*/
|
89
|
+
T validateObject() const {
|
90
|
+
if (_isDisposed) {
|
91
|
+
throw std::runtime_error("Attempted to access a disposed object.");
|
92
|
+
}
|
93
|
+
return _object;
|
94
|
+
}
|
95
|
+
|
85
96
|
void safeDispose() {
|
86
97
|
if (!_isDisposed) {
|
87
98
|
_isDisposed = true;
|
@@ -90,12 +101,12 @@ private:
|
|
90
101
|
}
|
91
102
|
|
92
103
|
/**
|
93
|
-
* Wrapped object
|
104
|
+
* Wrapped object.
|
94
105
|
*/
|
95
106
|
T _object;
|
96
107
|
|
97
108
|
/**
|
98
|
-
Resource disposed flag
|
109
|
+
* Resource disposed flag.
|
99
110
|
*/
|
100
111
|
std::atomic<bool> _isDisposed = {false};
|
101
112
|
};
|
package/cpp/api/JsiSkParagraph.h
CHANGED
@@ -24,19 +24,19 @@
|
|
24
24
|
namespace RNSkia {
|
25
25
|
|
26
26
|
namespace jsi = facebook::jsi;
|
27
|
-
|
28
27
|
namespace para = skia::textlayout;
|
29
28
|
|
30
29
|
/**
|
31
|
-
Implementation of the Paragraph object in JSI
|
30
|
+
* Implementation of the Paragraph object in JSI
|
32
31
|
*/
|
33
|
-
class JsiSkParagraph
|
32
|
+
class JsiSkParagraph
|
33
|
+
: public JsiSkWrappingSharedPtrHostObject<para::Paragraph> {
|
34
34
|
public:
|
35
35
|
EXPORT_JSI_API_TYPENAME(JsiSkParagraph, Paragraph)
|
36
36
|
|
37
37
|
JSI_HOST_FUNCTION(layout) {
|
38
38
|
auto width = getArgumentAsNumber(runtime, arguments, count, 0);
|
39
|
-
|
39
|
+
getObject()->layout(width);
|
40
40
|
return jsi::Value::undefined();
|
41
41
|
}
|
42
42
|
|
@@ -45,34 +45,34 @@ public:
|
|
45
45
|
getArgumentAsHostObject<JsiSkCanvas>(runtime, arguments, count, 0);
|
46
46
|
auto x = getArgumentAsNumber(runtime, arguments, count, 1);
|
47
47
|
auto y = getArgumentAsNumber(runtime, arguments, count, 2);
|
48
|
-
|
48
|
+
getObject()->paint(jsiCanvas->getCanvas(), x, y);
|
49
49
|
return jsi::Value::undefined();
|
50
50
|
}
|
51
51
|
|
52
52
|
JSI_HOST_FUNCTION(getHeight) {
|
53
|
-
return static_cast<double>(
|
53
|
+
return static_cast<double>(getObject()->getHeight());
|
54
54
|
}
|
55
55
|
|
56
56
|
JSI_HOST_FUNCTION(getMaxWidth) {
|
57
|
-
return static_cast<double>(
|
57
|
+
return static_cast<double>(getObject()->getMaxWidth());
|
58
58
|
}
|
59
59
|
|
60
60
|
JSI_HOST_FUNCTION(getMaxIntrinsicWidth) {
|
61
|
-
return static_cast<double>(
|
61
|
+
return static_cast<double>(getObject()->getMaxIntrinsicWidth());
|
62
62
|
}
|
63
63
|
|
64
64
|
JSI_HOST_FUNCTION(getMinIntrinsicWidth) {
|
65
|
-
return static_cast<double>(
|
65
|
+
return static_cast<double>(getObject()->getMinIntrinsicWidth());
|
66
66
|
}
|
67
67
|
|
68
68
|
JSI_HOST_FUNCTION(getLongestLine) {
|
69
|
-
return static_cast<double>(
|
69
|
+
return static_cast<double>(getObject()->getLongestLine());
|
70
70
|
}
|
71
71
|
|
72
72
|
JSI_HOST_FUNCTION(getGlyphPositionAtCoordinate) {
|
73
73
|
auto dx = getArgumentAsNumber(runtime, arguments, count, 0);
|
74
74
|
auto dy = getArgumentAsNumber(runtime, arguments, count, 1);
|
75
|
-
auto result =
|
75
|
+
auto result = getObject()->getGlyphPositionAtCoordinate(dx, dy);
|
76
76
|
return result.position;
|
77
77
|
}
|
78
78
|
|
@@ -80,8 +80,8 @@ public:
|
|
80
80
|
auto start = getArgumentAsNumber(runtime, arguments, count, 0);
|
81
81
|
auto end = getArgumentAsNumber(runtime, arguments, count, 1);
|
82
82
|
auto result =
|
83
|
-
|
84
|
-
|
83
|
+
getObject()->getRectsForRange(start, end, para::RectHeightStyle::kTight,
|
84
|
+
para::RectWidthStyle::kTight);
|
85
85
|
auto returnValue = jsi::Array(runtime, result.size());
|
86
86
|
for (size_t i = 0; i < result.size(); ++i) {
|
87
87
|
returnValue.setValueAtIndex(
|
@@ -93,7 +93,7 @@ public:
|
|
93
93
|
|
94
94
|
JSI_HOST_FUNCTION(getLineMetrics) {
|
95
95
|
std::vector<para::LineMetrics> metrics;
|
96
|
-
|
96
|
+
getObject()->getLineMetrics(metrics);
|
97
97
|
auto returnValue = jsi::Array(runtime, metrics.size());
|
98
98
|
auto height = 0;
|
99
99
|
for (size_t i = 0; i < metrics.size(); ++i) {
|
@@ -110,7 +110,7 @@ public:
|
|
110
110
|
|
111
111
|
JSI_HOST_FUNCTION(getRectsForPlaceholders) {
|
112
112
|
std::vector<para::TextBox> placeholderInfos =
|
113
|
-
|
113
|
+
getObject()->getRectsForPlaceholders();
|
114
114
|
auto returnValue = jsi::Array(runtime, placeholderInfos.size());
|
115
115
|
for (size_t i = 0; i < placeholderInfos.size(); ++i) {
|
116
116
|
auto obj = jsi::Object(runtime);
|
@@ -124,12 +124,6 @@ public:
|
|
124
124
|
return returnValue;
|
125
125
|
}
|
126
126
|
|
127
|
-
JSI_HOST_FUNCTION(dispose) {
|
128
|
-
_paragraph = nullptr;
|
129
|
-
|
130
|
-
return jsi::Value::undefined();
|
131
|
-
}
|
132
|
-
|
133
127
|
JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkParagraph, layout),
|
134
128
|
JSI_EXPORT_FUNC(JsiSkParagraph, paint),
|
135
129
|
JSI_EXPORT_FUNC(JsiSkParagraph, getMaxWidth),
|
@@ -146,12 +140,8 @@ public:
|
|
146
140
|
|
147
141
|
explicit JsiSkParagraph(std::shared_ptr<RNSkPlatformContext> context,
|
148
142
|
para::ParagraphBuilder *paragraphBuilder)
|
149
|
-
:
|
150
|
-
|
151
|
-
}
|
152
|
-
|
153
|
-
public:
|
154
|
-
std::unique_ptr<para::Paragraph> _paragraph;
|
143
|
+
: JsiSkWrappingSharedPtrHostObject<para::Paragraph>(
|
144
|
+
std::move(context), std::move(paragraphBuilder->Build())) {}
|
155
145
|
};
|
156
146
|
|
157
147
|
} // namespace RNSkia
|
@@ -26,7 +26,7 @@ public:
|
|
26
26
|
std::move(pathEffect)) {}
|
27
27
|
|
28
28
|
EXPORT_JSI_API_TYPENAME(JsiSkPathEffect, PathEffect)
|
29
|
-
JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(
|
29
|
+
JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkPathEffect, dispose))
|
30
30
|
};
|
31
31
|
|
32
32
|
} // namespace RNSkia
|
@@ -45,7 +45,7 @@ public:
|
|
45
45
|
JSI_EXPORT_FUNCTIONS(JSI_EXPORT_FUNC(JsiSkPictureFactory, MakePicture))
|
46
46
|
|
47
47
|
explicit JsiSkPictureFactory(std::shared_ptr<RNSkPlatformContext> context)
|
48
|
-
: JsiSkHostObject(context) {}
|
48
|
+
: JsiSkHostObject(std::move(context)) {}
|
49
49
|
};
|
50
50
|
|
51
51
|
} // namespace RNSkia
|
@@ -874,9 +874,10 @@ public:
|
|
874
874
|
}
|
875
875
|
|
876
876
|
void draw(DrawingCtx *ctx) {
|
877
|
-
if (props.paragraph
|
878
|
-
props.paragraph->
|
879
|
-
|
877
|
+
if (props.paragraph) {
|
878
|
+
auto paragraph = props.paragraph->getObject();
|
879
|
+
paragraph->layout(props.width);
|
880
|
+
paragraph->paint(ctx->canvas, props.x, props.y);
|
880
881
|
}
|
881
882
|
}
|
882
883
|
};
|
@@ -412,6 +412,9 @@ public:
|
|
412
412
|
* If a scanline decode is in progress, scanline mode will end, requiring the client to call
|
413
413
|
* startScanlineDecode() in order to return to decoding scanlines.
|
414
414
|
*
|
415
|
+
* For certain codecs, reading into a smaller bitmap than the original dimensions may not
|
416
|
+
* produce correct results (e.g. animated webp).
|
417
|
+
*
|
415
418
|
* @return Result kSuccess, or another value explaining the type of failure.
|
416
419
|
*/
|
417
420
|
Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options*);
|
@@ -812,6 +815,7 @@ protected:
|
|
812
815
|
}
|
813
816
|
|
814
817
|
virtual bool onGetGainmapCodec(SkGainmapInfo*, std::unique_ptr<SkCodec>*) { return false; }
|
818
|
+
virtual bool onGetGainmapInfo(SkGainmapInfo*) { return false; }
|
815
819
|
|
816
820
|
// TODO(issues.skia.org/363544350): This API only works for JPEG images. Remove this API once
|
817
821
|
// it is no longer used.
|
@@ -1053,8 +1057,9 @@ private:
|
|
1053
1057
|
friend class PNGCodecGM; // for fillIncompleteImage
|
1054
1058
|
friend class SkSampledCodec;
|
1055
1059
|
friend class SkIcoCodec;
|
1056
|
-
friend class
|
1057
|
-
friend class
|
1060
|
+
friend class SkPngCodec; // for onGetGainmapCodec
|
1061
|
+
friend class SkAndroidCodec; // for handleFrameIndex
|
1062
|
+
friend class SkCodecPriv; // for fEncodedInfo
|
1058
1063
|
};
|
1059
1064
|
|
1060
1065
|
namespace SkCodecs {
|
@@ -74,6 +74,12 @@
|
|
74
74
|
*/
|
75
75
|
//#define SK_R32_SHIFT 16
|
76
76
|
|
77
|
+
/* This controls how much space should be pre-allocated in an SkCanvas object
|
78
|
+
to store the SkMatrix and clip via calls to SkCanvas::save() (and balanced with
|
79
|
+
SkCanvas::restore()).
|
80
|
+
*/
|
81
|
+
//#define SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT 32
|
82
|
+
|
77
83
|
/* Determines whether to build code that supports the Ganesh GPU backend. Some classes
|
78
84
|
that are not GPU-specific, such as SkShader subclasses, have optional code
|
79
85
|
that is used allows them to interact with this GPU backend. If you'd like to
|
@@ -95,6 +101,11 @@
|
|
95
101
|
//#define SK_HISTOGRAM_MEMORY_KB(name, sample)
|
96
102
|
//#define SK_HISTOGRAM_CUSTOM_MICROSECONDS_TIMES(name, sampleUSec, minUSec, maxUSec, bucketCount)
|
97
103
|
|
104
|
+
/*
|
105
|
+
* Skia can provide extensive logging of Graphite Pipeline lifetimes.
|
106
|
+
*/
|
107
|
+
//#define SK_PIPELINE_LIFETIME_LOGGING
|
108
|
+
|
98
109
|
// To use smaller but slower mipmap builder
|
99
110
|
//#define SK_USE_DRAWING_MIPMAP_DOWNSAMPLER
|
100
111
|
|
@@ -34,6 +34,7 @@
|
|
34
34
|
#include "include/private/base/SkDeque.h"
|
35
35
|
#include "include/private/base/SkTArray.h"
|
36
36
|
|
37
|
+
#include <cstddef>
|
37
38
|
#include <cstdint>
|
38
39
|
#include <cstring>
|
39
40
|
#include <memory>
|
@@ -2502,15 +2503,18 @@ private:
|
|
2502
2503
|
void reset(SkDevice* device);
|
2503
2504
|
};
|
2504
2505
|
|
2505
|
-
|
2506
|
-
static constexpr int
|
2507
|
-
|
2506
|
+
#if defined(SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT)
|
2507
|
+
static constexpr int kMCRecCount = SK_CANVAS_SAVE_RESTORE_PREALLOC_COUNT;
|
2508
|
+
#else
|
2509
|
+
static constexpr int kMCRecCount = 32; // common depth for save/restores
|
2510
|
+
#endif
|
2508
2511
|
|
2509
|
-
|
2512
|
+
// This stack allocation of memory will be used to house the first kMCRecCount
|
2513
|
+
// layers without need to call malloc.
|
2514
|
+
alignas(MCRec) std::byte fMCRecStorage[sizeof(MCRec) * kMCRecCount];
|
2510
2515
|
|
2511
|
-
SkDeque fMCStack;
|
2512
|
-
// points to top of stack
|
2513
|
-
MCRec* fMCRec;
|
2516
|
+
SkDeque fMCStack; // uses the stack memory
|
2517
|
+
MCRec* fMCRec; // points to top of stack for convenience
|
2514
2518
|
|
2515
2519
|
// Installed via init()
|
2516
2520
|
sk_sp<SkDevice> fRootDevice;
|
@@ -12,6 +12,7 @@
|
|
12
12
|
#include "include/core/SkScalar.h"
|
13
13
|
#include "include/core/SkTypes.h"
|
14
14
|
#include "include/private/base/SkCPUTypes.h"
|
15
|
+
#include "include/private/base/SkTPin.h"
|
15
16
|
|
16
17
|
#include <array>
|
17
18
|
#include <cstdint>
|
@@ -415,6 +416,15 @@ struct SkRGBA4f {
|
|
415
416
|
SkRGBA4f makeOpaque() const {
|
416
417
|
return { fR, fG, fB, 1.0f };
|
417
418
|
}
|
419
|
+
|
420
|
+
/**
|
421
|
+
Returns a copy of the SkRGBA4f but with the alpha component pinned to [0, 1].
|
422
|
+
|
423
|
+
@return color with pinned alpha
|
424
|
+
*/
|
425
|
+
SkRGBA4f pinAlpha() const {
|
426
|
+
return { fR, fG, fB, SkTPin(fA, 0.f, 1.f) };
|
427
|
+
}
|
418
428
|
};
|
419
429
|
|
420
430
|
/** \struct SkColor4f
|
@@ -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
|
-
|
55
|
-
|
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
|
*/
|