@shopify/react-native-skia 0.1.213 → 0.1.214
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/rnskia-android/SkiaOpenGLHelper.h +3 -2
- package/android/cpp/rnskia-android/SkiaOpenGLSurfaceFactory.cpp +9 -2
- package/cpp/api/JsiSkSurface.h +4 -1
- package/cpp/skia/include/android/GrAHardwareBufferUtils.h +99 -0
- package/cpp/skia/include/android/SkHeifDecoder.h +10 -3
- package/cpp/skia/include/codec/SkAvifDecoder.h +1 -0
- package/cpp/skia/include/codec/SkBmpDecoder.h +1 -0
- package/cpp/skia/include/codec/SkCodec.h +4 -3
- package/cpp/skia/include/codec/SkEncodedImageFormat.h +0 -3
- package/cpp/skia/include/codec/SkGifDecoder.h +1 -0
- package/cpp/skia/include/codec/SkIcoDecoder.h +1 -0
- package/cpp/skia/include/codec/SkJpegDecoder.h +1 -0
- package/cpp/skia/include/codec/SkJpegxlDecoder.h +1 -0
- package/cpp/skia/include/codec/SkPngDecoder.h +1 -0
- package/cpp/skia/include/codec/SkRawDecoder.h +1 -0
- package/cpp/skia/include/codec/SkWbmpDecoder.h +1 -0
- package/cpp/skia/include/codec/SkWebpDecoder.h +1 -0
- package/cpp/skia/include/config/SkUserConfig.h +0 -2
- package/cpp/skia/include/core/SkBitmap.h +8 -8
- package/cpp/skia/include/core/SkCanvas.h +37 -50
- package/cpp/skia/include/core/SkCapabilities.h +2 -7
- package/cpp/skia/include/core/SkColor.h +1 -1
- package/cpp/skia/include/core/SkColorFilter.h +6 -0
- package/cpp/skia/include/core/SkColorTable.h +3 -0
- package/cpp/skia/include/core/SkColorType.h +2 -0
- package/cpp/skia/include/core/SkContourMeasure.h +12 -8
- package/cpp/skia/include/core/SkDocument.h +1 -0
- package/cpp/skia/include/core/SkFont.h +11 -2
- package/cpp/skia/include/core/SkFontMgr.h +2 -3
- package/cpp/skia/include/core/SkGraphics.h +3 -13
- package/cpp/skia/include/core/SkImage.h +57 -111
- package/cpp/skia/include/core/SkImageFilter.h +6 -1
- package/cpp/skia/include/core/SkImageGenerator.h +8 -0
- package/cpp/skia/include/core/SkImageInfo.h +0 -2
- package/cpp/skia/include/core/SkM44.h +7 -3
- package/cpp/skia/include/core/SkMallocPixelRef.h +4 -1
- package/cpp/skia/include/core/SkMatrix.h +17 -17
- package/cpp/skia/include/core/SkMesh.h +71 -61
- package/cpp/skia/include/core/SkMilestone.h +1 -1
- package/cpp/skia/include/core/SkOverdrawCanvas.h +25 -0
- package/cpp/skia/include/core/SkPaint.h +1 -1
- package/cpp/skia/include/core/SkPath.h +12 -4
- package/cpp/skia/include/core/SkPathMeasure.h +3 -4
- package/cpp/skia/include/core/SkPicture.h +19 -6
- package/cpp/skia/include/core/SkPictureRecorder.h +6 -6
- package/cpp/skia/include/core/SkPixmap.h +2 -3
- package/cpp/skia/include/core/SkRRect.h +1 -1
- package/cpp/skia/include/core/SkRect.h +107 -110
- package/cpp/skia/include/core/SkRefCnt.h +1 -1
- package/cpp/skia/include/core/SkRegion.h +7 -1
- package/cpp/skia/include/core/SkSerialProcs.h +14 -0
- package/cpp/skia/include/core/SkShader.h +9 -0
- package/cpp/skia/include/core/SkStream.h +9 -9
- package/cpp/skia/include/core/SkString.h +1 -1
- package/cpp/skia/include/core/SkSurface.h +14 -25
- package/cpp/skia/include/core/SkTextBlob.h +17 -4
- package/cpp/skia/include/core/SkTiledImageUtils.h +28 -0
- package/cpp/skia/include/core/SkTypeface.h +7 -2
- package/cpp/skia/include/core/SkTypes.h +4 -12
- package/cpp/skia/include/docs/SkPDFDocument.h +17 -3
- package/cpp/skia/include/effects/SkImageFilters.h +73 -24
- package/cpp/skia/include/effects/SkRuntimeEffect.h +20 -51
- package/cpp/skia/include/gpu/GpuTypes.h +13 -0
- package/cpp/skia/include/gpu/GrBackendSurface.h +95 -262
- package/cpp/skia/include/gpu/GrContextOptions.h +7 -1
- package/cpp/skia/include/gpu/GrDirectContext.h +138 -128
- package/cpp/skia/include/gpu/GrRecordingContext.h +9 -4
- package/cpp/skia/include/gpu/GrSurfaceInfo.h +0 -24
- package/cpp/skia/include/gpu/GrTypes.h +16 -1
- package/cpp/skia/include/gpu/GrYUVABackendTextures.h +4 -4
- package/cpp/skia/include/gpu/d3d/GrD3DTypes.h +2 -2
- package/cpp/skia/include/gpu/ganesh/SkImageGanesh.h +44 -12
- package/cpp/skia/include/gpu/ganesh/SkMeshGanesh.h +57 -0
- package/cpp/skia/include/gpu/ganesh/SkSurfaceGanesh.h +2 -1
- package/cpp/skia/include/gpu/ganesh/gl/GrGLBackendSurface.h +58 -0
- package/cpp/skia/include/gpu/ganesh/gl/GrGLDirectContext.h +29 -0
- package/cpp/skia/include/gpu/ganesh/mtl/SkSurfaceMetal.h +1 -1
- package/cpp/skia/include/gpu/ganesh/vk/GrVkBackendSurface.h +67 -0
- package/cpp/skia/include/gpu/gl/GrGLInterface.h +2 -2
- package/cpp/skia/include/gpu/graphite/BackendTexture.h +14 -3
- package/cpp/skia/include/gpu/graphite/Context.h +93 -13
- package/cpp/skia/include/gpu/graphite/ContextOptions.h +19 -8
- package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +23 -0
- package/cpp/skia/include/gpu/graphite/Image.h +56 -0
- package/cpp/skia/include/gpu/graphite/ImageProvider.h +5 -0
- package/cpp/skia/include/gpu/graphite/Recorder.h +26 -9
- package/cpp/skia/include/gpu/graphite/Recording.h +7 -5
- package/cpp/skia/include/gpu/graphite/TextureInfo.h +8 -0
- package/cpp/skia/include/gpu/graphite/mtl/MtlGraphiteTypes.h +2 -2
- package/cpp/skia/include/gpu/mtl/GrMtlTypes.h +2 -2
- package/cpp/skia/include/gpu/vk/GrVkTypes.h +4 -3
- package/cpp/skia/include/ports/SkCFObject.h +1 -1
- package/cpp/skia/include/private/SkGainmapInfo.h +4 -13
- package/cpp/skia/include/private/SkJpegGainmapEncoder.h +1 -24
- package/cpp/skia/include/private/SkWeakRefCnt.h +1 -1
- package/cpp/skia/include/private/base/SkAnySubclass.h +73 -0
- package/cpp/skia/include/private/base/SkAssert.h +106 -12
- package/cpp/skia/include/private/base/SkAttributes.h +0 -12
- package/cpp/skia/include/private/base/SkFeatures.h +0 -3
- package/cpp/skia/include/private/base/SkFloatingPoint.h +58 -105
- package/cpp/skia/include/private/base/SkSpan_impl.h +18 -12
- package/cpp/skia/include/private/base/SkTArray.h +22 -17
- package/cpp/skia/include/private/base/SkTDArray.h +5 -6
- package/cpp/skia/include/private/base/SkTemplates.h +50 -30
- package/cpp/skia/include/private/chromium/GrDeferredDisplayListRecorder.h +5 -2
- package/cpp/skia/include/private/chromium/GrSurfaceCharacterization.h +2 -2
- package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +13 -8
- package/cpp/skia/include/private/chromium/SkDiscardableMemory.h +1 -1
- package/cpp/skia/include/private/chromium/SkImageChromium.h +16 -3
- package/cpp/skia/include/private/chromium/Slug.h +11 -4
- package/cpp/skia/include/private/gpu/ganesh/GrD3DTypesMinimal.h +1 -1
- package/cpp/skia/include/private/gpu/ganesh/GrGLTypesPriv.h +6 -9
- package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +29 -13
- package/cpp/skia/include/private/gpu/ganesh/GrVkTypesPriv.h +2 -28
- package/cpp/skia/include/private/gpu/graphite/ContextOptionsPriv.h +34 -0
- package/cpp/skia/include/private/gpu/graphite/DawnTypesPriv.h +6 -0
- package/cpp/skia/include/private/gpu/graphite/MtlGraphiteTypesPriv.h +8 -0
- package/cpp/skia/include/private/gpu/graphite/VulkanGraphiteTypesPriv.h +10 -0
- package/cpp/skia/include/utils/SkBase64.h +2 -2
- package/cpp/skia/include/utils/SkNWayCanvas.h +1 -11
- package/cpp/skia/include/utils/SkNoDrawCanvas.h +0 -2
- package/cpp/skia/include/utils/SkPaintFilterCanvas.h +1 -2
- package/cpp/skia/include/utils/SkShadowUtils.h +15 -1
- package/cpp/skia/include/utils/SkTextUtils.h +1 -1
- package/cpp/skia/modules/skparagraph/include/Paragraph.h +107 -1
- package/cpp/skia/modules/skparagraph/include/ParagraphBuilder.h +3 -2
- package/cpp/skia/modules/skparagraph/include/ParagraphStyle.h +4 -0
- package/cpp/skia/modules/skparagraph/include/TypefaceFontProvider.h +5 -3
- package/cpp/skia/modules/svg/include/SkSVGAttributeParser.h +4 -0
- package/cpp/skia/src/core/SkChecksum.h +2 -1
- package/cpp/skia/src/core/SkPathPriv.h +1 -1
- package/cpp/skia/src/core/SkTHash.h +19 -9
- package/ios/RNSkia-iOS/RNSkMetalCanvasProvider.mm +3 -1
- package/ios/RNSkia-iOS/SkiaMetalSurfaceFactory.mm +1 -1
- package/lib/commonjs/dom/nodes/datatypes/Rect.js +5 -1
- package/lib/commonjs/dom/nodes/datatypes/Rect.js.map +1 -1
- package/lib/commonjs/external/reanimated/index.d.ts +1 -0
- package/lib/commonjs/external/reanimated/index.js +13 -0
- package/lib/commonjs/external/reanimated/index.js.map +1 -1
- package/lib/commonjs/external/reanimated/moduleWrapper.js +3 -8
- package/lib/commonjs/external/reanimated/moduleWrapper.js.map +1 -1
- package/lib/commonjs/external/reanimated/renderHelpers.js +46 -1
- package/lib/commonjs/external/reanimated/renderHelpers.js.map +1 -1
- package/lib/commonjs/external/reanimated/useDerivedValueOnJS.d.ts +2 -0
- package/lib/commonjs/external/reanimated/useDerivedValueOnJS.js +26 -0
- package/lib/commonjs/external/reanimated/useDerivedValueOnJS.js.map +1 -0
- package/lib/commonjs/external/reanimated/useSharedValueEffect.js +2 -5
- package/lib/commonjs/external/reanimated/useSharedValueEffect.js.map +1 -1
- package/lib/commonjs/skia/types/MaskFilter.js +4 -0
- package/lib/commonjs/skia/types/MaskFilter.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkPicture.js +2 -1
- package/lib/commonjs/skia/web/JsiSkPicture.js.map +1 -1
- package/lib/commonjs/views/SkiaBaseWebView.js +1 -1
- package/lib/commonjs/views/SkiaBaseWebView.js.map +1 -1
- package/lib/commonjs/views/types.js +3 -0
- package/lib/commonjs/views/types.js.map +1 -1
- package/lib/module/dom/nodes/datatypes/Rect.js +5 -1
- package/lib/module/dom/nodes/datatypes/Rect.js.map +1 -1
- package/lib/module/external/reanimated/index.d.ts +1 -0
- package/lib/module/external/reanimated/index.js +1 -0
- package/lib/module/external/reanimated/index.js.map +1 -1
- package/lib/module/external/reanimated/moduleWrapper.js +1 -9
- package/lib/module/external/reanimated/moduleWrapper.js.map +1 -1
- package/lib/module/external/reanimated/renderHelpers.js +48 -2
- package/lib/module/external/reanimated/renderHelpers.js.map +1 -1
- package/lib/module/external/reanimated/useDerivedValueOnJS.d.ts +2 -0
- package/lib/module/external/reanimated/useDerivedValueOnJS.js +15 -0
- package/lib/module/external/reanimated/useDerivedValueOnJS.js.map +1 -0
- package/lib/module/external/reanimated/useSharedValueEffect.js +3 -6
- package/lib/module/external/reanimated/useSharedValueEffect.js.map +1 -1
- package/lib/module/skia/types/MaskFilter.js +3 -0
- package/lib/module/skia/types/MaskFilter.js.map +1 -1
- package/lib/module/views/types.js +3 -0
- package/lib/module/views/types.js.map +1 -1
- package/lib/typescript/src/external/reanimated/index.d.ts +1 -0
- package/lib/typescript/src/external/reanimated/useDerivedValueOnJS.d.ts +2 -0
- package/libs/android/arm64-v8a/libskia.a +0 -0
- package/libs/android/arm64-v8a/libskottie.a +0 -0
- package/libs/android/arm64-v8a/libskparagraph.a +0 -0
- package/libs/android/arm64-v8a/libsksg.a +0 -0
- package/libs/android/arm64-v8a/libskshaper.a +0 -0
- package/libs/android/arm64-v8a/libskunicode.a +0 -0
- package/libs/android/arm64-v8a/libsvg.a +0 -0
- package/libs/android/armeabi-v7a/libskia.a +0 -0
- package/libs/android/armeabi-v7a/libskottie.a +0 -0
- package/libs/android/armeabi-v7a/libskparagraph.a +0 -0
- package/libs/android/armeabi-v7a/libsksg.a +0 -0
- package/libs/android/armeabi-v7a/libskshaper.a +0 -0
- package/libs/android/armeabi-v7a/libskunicode.a +0 -0
- package/libs/android/armeabi-v7a/libsvg.a +0 -0
- package/libs/android/x86/libskia.a +0 -0
- package/libs/android/x86/libskottie.a +0 -0
- package/libs/android/x86/libskparagraph.a +0 -0
- package/libs/android/x86/libsksg.a +0 -0
- package/libs/android/x86/libskshaper.a +0 -0
- package/libs/android/x86/libskunicode.a +0 -0
- package/libs/android/x86/libsvg.a +0 -0
- package/libs/android/x86_64/libskia.a +0 -0
- package/libs/android/x86_64/libskottie.a +0 -0
- package/libs/android/x86_64/libskparagraph.a +0 -0
- package/libs/android/x86_64/libsksg.a +0 -0
- package/libs/android/x86_64/libskshaper.a +0 -0
- package/libs/android/x86_64/libskunicode.a +0 -0
- package/libs/android/x86_64/libsvg.a +0 -0
- package/libs/ios/libskia.xcframework/Info.plist +5 -5
- package/libs/ios/libskia.xcframework/ios-arm64_arm64e/libskia.a +0 -0
- package/libs/ios/libskia.xcframework/ios-arm64_arm64e_x86_64-simulator/libskia.a +0 -0
- package/libs/ios/libskottie.xcframework/ios-arm64_arm64e/libskottie.a +0 -0
- package/libs/ios/libskottie.xcframework/ios-arm64_arm64e_x86_64-simulator/libskottie.a +0 -0
- package/libs/ios/libskparagraph.xcframework/Info.plist +5 -5
- package/libs/ios/libskparagraph.xcframework/ios-arm64_arm64e/libskparagraph.a +0 -0
- package/libs/ios/libskparagraph.xcframework/ios-arm64_arm64e_x86_64-simulator/libskparagraph.a +0 -0
- package/libs/ios/libsksg.xcframework/Info.plist +5 -5
- package/libs/ios/libsksg.xcframework/ios-arm64_arm64e/libsksg.a +0 -0
- package/libs/ios/libsksg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsksg.a +0 -0
- package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e/libskshaper.a +0 -0
- package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e_x86_64-simulator/libskshaper.a +0 -0
- package/libs/ios/libskunicode.xcframework/Info.plist +5 -5
- package/libs/ios/libskunicode.xcframework/ios-arm64_arm64e/libskunicode.a +0 -0
- package/libs/ios/libskunicode.xcframework/ios-arm64_arm64e_x86_64-simulator/libskunicode.a +0 -0
- package/libs/ios/libsvg.xcframework/Info.plist +5 -5
- package/libs/ios/libsvg.xcframework/ios-arm64_arm64e/libsvg.a +0 -0
- package/libs/ios/libsvg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsvg.a +0 -0
- package/package.json +1 -1
- package/react-native-skia.podspec +1 -1
- package/src/dom/nodes/datatypes/Rect.ts +6 -2
- package/src/external/reanimated/index.ts +1 -0
- package/src/external/reanimated/moduleWrapper.ts +6 -10
- package/src/external/reanimated/renderHelpers.ts +41 -1
- package/src/external/reanimated/useDerivedValueOnJS.ts +24 -0
- package/src/external/reanimated/useSharedValueEffect.ts +4 -7
- package/cpp/skia/include/core/SkDeferredDisplayList.h +0 -15
- package/cpp/skia/include/core/SkDeferredDisplayListRecorder.h +0 -15
- package/cpp/skia/include/core/SkPromiseImageTexture.h +0 -20
- package/cpp/skia/include/core/SkSurfaceCharacterization.h +0 -15
- package/cpp/skia/include/core/SkTime.h +0 -63
- package/cpp/skia/include/effects/SkOpPathEffect.h +0 -43
- package/cpp/skia/include/effects/SkStrokeAndFillPathEffect.h +0 -28
- package/cpp/skia/include/gpu/GrBackendSurfaceMutableState.h +0 -32
- package/cpp/skia/include/gpu/dawn/GrDawnTypes.h +0 -95
- package/cpp/skia/include/private/SkBitmaskEnum.h +0 -59
- package/cpp/skia/include/private/SkSLDefines.h +0 -64
- package/cpp/skia/include/private/SkShadowFlags.h +0 -27
- package/cpp/skia/include/private/gpu/ganesh/GrDawnTypesPriv.h +0 -26
- /package/cpp/skia/{include/private/base → src/core}/SkPathEnums.h +0 -0
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
#include "include/private/base/SkTemplates.h"
|
|
24
24
|
#include "include/private/base/SkTo.h"
|
|
25
25
|
#include "include/private/base/SkTypeTraits.h"
|
|
26
|
+
#include "include/sksl/SkSLDebugTrace.h"
|
|
27
|
+
#include "include/sksl/SkSLVersion.h"
|
|
26
28
|
|
|
27
29
|
#include <cstddef>
|
|
28
30
|
#include <cstdint>
|
|
@@ -34,16 +36,7 @@
|
|
|
34
36
|
#include <utility>
|
|
35
37
|
#include <vector>
|
|
36
38
|
|
|
37
|
-
#ifdef SK_ENABLE_SKSL
|
|
38
|
-
|
|
39
|
-
#include "include/sksl/SkSLDebugTrace.h"
|
|
40
|
-
#include "include/sksl/SkSLVersion.h"
|
|
41
|
-
|
|
42
|
-
class GrRecordingContext;
|
|
43
|
-
class SkFilterColorProgram;
|
|
44
|
-
class SkImage;
|
|
45
39
|
struct SkIPoint;
|
|
46
|
-
struct SkImageInfo;
|
|
47
40
|
|
|
48
41
|
namespace SkSL {
|
|
49
42
|
class DebugTracePriv;
|
|
@@ -217,25 +210,18 @@ public:
|
|
|
217
210
|
size_t childCount,
|
|
218
211
|
const SkMatrix* localMatrix = nullptr) const;
|
|
219
212
|
sk_sp<SkShader> makeShader(sk_sp<const SkData> uniforms,
|
|
220
|
-
SkSpan<ChildPtr> children,
|
|
213
|
+
SkSpan<const ChildPtr> children,
|
|
221
214
|
const SkMatrix* localMatrix = nullptr) const;
|
|
222
215
|
|
|
223
|
-
sk_sp<SkImage> makeImage(GrRecordingContext*,
|
|
224
|
-
sk_sp<const SkData> uniforms,
|
|
225
|
-
SkSpan<ChildPtr> children,
|
|
226
|
-
const SkMatrix* localMatrix,
|
|
227
|
-
SkImageInfo resultInfo,
|
|
228
|
-
bool mipmapped) const;
|
|
229
|
-
|
|
230
216
|
sk_sp<SkColorFilter> makeColorFilter(sk_sp<const SkData> uniforms) const;
|
|
231
217
|
sk_sp<SkColorFilter> makeColorFilter(sk_sp<const SkData> uniforms,
|
|
232
218
|
sk_sp<SkColorFilter> children[],
|
|
233
219
|
size_t childCount) const;
|
|
234
220
|
sk_sp<SkColorFilter> makeColorFilter(sk_sp<const SkData> uniforms,
|
|
235
|
-
SkSpan<ChildPtr> children) const;
|
|
221
|
+
SkSpan<const ChildPtr> children) const;
|
|
236
222
|
|
|
237
223
|
sk_sp<SkBlender> makeBlender(sk_sp<const SkData> uniforms,
|
|
238
|
-
SkSpan<ChildPtr> children = {}) const;
|
|
224
|
+
SkSpan<const ChildPtr> children = {}) const;
|
|
239
225
|
|
|
240
226
|
/**
|
|
241
227
|
* Creates a new Runtime Effect patterned after an already-existing one. The new shader behaves
|
|
@@ -281,14 +267,15 @@ public:
|
|
|
281
267
|
|
|
282
268
|
private:
|
|
283
269
|
enum Flags {
|
|
284
|
-
kUsesSampleCoords_Flag
|
|
285
|
-
kAllowColorFilter_Flag
|
|
286
|
-
kAllowShader_Flag
|
|
287
|
-
kAllowBlender_Flag
|
|
288
|
-
kSamplesOutsideMain_Flag
|
|
289
|
-
kUsesColorTransform_Flag
|
|
290
|
-
kAlwaysOpaque_Flag
|
|
291
|
-
kAlphaUnchanged_Flag
|
|
270
|
+
kUsesSampleCoords_Flag = 0x001,
|
|
271
|
+
kAllowColorFilter_Flag = 0x002,
|
|
272
|
+
kAllowShader_Flag = 0x004,
|
|
273
|
+
kAllowBlender_Flag = 0x008,
|
|
274
|
+
kSamplesOutsideMain_Flag = 0x010,
|
|
275
|
+
kUsesColorTransform_Flag = 0x020,
|
|
276
|
+
kAlwaysOpaque_Flag = 0x040,
|
|
277
|
+
kAlphaUnchanged_Flag = 0x080,
|
|
278
|
+
kDisableOptimization_Flag = 0x100,
|
|
292
279
|
};
|
|
293
280
|
|
|
294
281
|
SkRuntimeEffect(std::unique_ptr<SkSL::Program> baseProgram,
|
|
@@ -316,7 +303,6 @@ private:
|
|
|
316
303
|
bool alwaysOpaque() const { return (fFlags & kAlwaysOpaque_Flag); }
|
|
317
304
|
bool isAlphaUnchanged() const { return (fFlags & kAlphaUnchanged_Flag); }
|
|
318
305
|
|
|
319
|
-
const SkFilterColorProgram* getFilterColorProgram() const;
|
|
320
306
|
const SkSL::RP::Program* getRPProgram(SkSL::DebugTracePriv* debugTrace) const;
|
|
321
307
|
|
|
322
308
|
#if defined(SK_GANESH)
|
|
@@ -328,7 +314,6 @@ private:
|
|
|
328
314
|
friend class SkRuntimeBlender; //
|
|
329
315
|
friend class SkRuntimeColorFilter; //
|
|
330
316
|
|
|
331
|
-
friend class SkFilterColorProgram;
|
|
332
317
|
friend class SkRuntimeEffectPriv;
|
|
333
318
|
|
|
334
319
|
uint32_t fHash;
|
|
@@ -341,8 +326,6 @@ private:
|
|
|
341
326
|
std::vector<Child> fChildren;
|
|
342
327
|
std::vector<SkSL::SampleUsage> fSampleUsages;
|
|
343
328
|
|
|
344
|
-
std::unique_ptr<SkFilterColorProgram> fFilterColorProgram;
|
|
345
|
-
|
|
346
329
|
uint32_t fFlags; // Flags
|
|
347
330
|
};
|
|
348
331
|
|
|
@@ -434,8 +417,8 @@ public:
|
|
|
434
417
|
|
|
435
418
|
// Get access to the collated uniforms and children (in the order expected by APIs like
|
|
436
419
|
// makeShader on the effect):
|
|
437
|
-
sk_sp<const SkData> uniforms() { return fUniforms; }
|
|
438
|
-
SkSpan<SkRuntimeEffect::ChildPtr> children() { return fChildren; }
|
|
420
|
+
sk_sp<const SkData> uniforms() const { return fUniforms; }
|
|
421
|
+
SkSpan<const SkRuntimeEffect::ChildPtr> children() const { return fChildren; }
|
|
439
422
|
|
|
440
423
|
protected:
|
|
441
424
|
SkRuntimeEffectBuilder() = delete;
|
|
@@ -495,17 +478,11 @@ public:
|
|
|
495
478
|
SkRuntimeShaderBuilder(const SkRuntimeShaderBuilder&) = default;
|
|
496
479
|
~SkRuntimeShaderBuilder();
|
|
497
480
|
|
|
498
|
-
sk_sp<SkShader> makeShader(const SkMatrix* localMatrix = nullptr);
|
|
499
|
-
sk_sp<SkImage> makeImage(GrRecordingContext*,
|
|
500
|
-
const SkMatrix* localMatrix,
|
|
501
|
-
SkImageInfo resultInfo,
|
|
502
|
-
bool mipmapped);
|
|
481
|
+
sk_sp<SkShader> makeShader(const SkMatrix* localMatrix = nullptr) const;
|
|
503
482
|
|
|
504
483
|
private:
|
|
505
|
-
using INHERITED = SkRuntimeEffectBuilder;
|
|
506
|
-
|
|
507
484
|
explicit SkRuntimeShaderBuilder(sk_sp<SkRuntimeEffect> effect, sk_sp<SkData> uniforms)
|
|
508
|
-
:
|
|
485
|
+
: SkRuntimeEffectBuilder(std::move(effect), std::move(uniforms)) {}
|
|
509
486
|
|
|
510
487
|
friend class SkRuntimeImageFilter;
|
|
511
488
|
};
|
|
@@ -521,10 +498,7 @@ public:
|
|
|
521
498
|
SkRuntimeColorFilterBuilder(const SkRuntimeColorFilterBuilder&) = delete;
|
|
522
499
|
SkRuntimeColorFilterBuilder& operator=(const SkRuntimeColorFilterBuilder&) = delete;
|
|
523
500
|
|
|
524
|
-
sk_sp<SkColorFilter> makeColorFilter();
|
|
525
|
-
|
|
526
|
-
private:
|
|
527
|
-
using INHERITED = SkRuntimeEffectBuilder;
|
|
501
|
+
sk_sp<SkColorFilter> makeColorFilter() const;
|
|
528
502
|
};
|
|
529
503
|
|
|
530
504
|
/**
|
|
@@ -538,12 +512,7 @@ public:
|
|
|
538
512
|
SkRuntimeBlendBuilder(const SkRuntimeBlendBuilder&) = delete;
|
|
539
513
|
SkRuntimeBlendBuilder& operator=(const SkRuntimeBlendBuilder&) = delete;
|
|
540
514
|
|
|
541
|
-
sk_sp<SkBlender> makeBlender();
|
|
542
|
-
|
|
543
|
-
private:
|
|
544
|
-
using INHERITED = SkRuntimeEffectBuilder;
|
|
515
|
+
sk_sp<SkBlender> makeBlender() const;
|
|
545
516
|
};
|
|
546
517
|
|
|
547
|
-
#endif // SK_ENABLE_SKSL
|
|
548
|
-
|
|
549
518
|
#endif // SkRuntimeEffect_DEFINED
|
|
@@ -24,6 +24,11 @@ enum class BackendApi : unsigned {
|
|
|
24
24
|
kMetal,
|
|
25
25
|
kVulkan,
|
|
26
26
|
kMock,
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Graphite doesn't support some context types (e.g. Direct3D) and will return Unsupported.
|
|
30
|
+
*/
|
|
31
|
+
kUnsupported,
|
|
27
32
|
};
|
|
28
33
|
|
|
29
34
|
/** Indicates whether an allocation should count against a cache budget. */
|
|
@@ -66,6 +71,14 @@ enum class Renderable : bool {
|
|
|
66
71
|
kYes = true,
|
|
67
72
|
};
|
|
68
73
|
|
|
74
|
+
/**
|
|
75
|
+
* What is the logical origin of a BackendTexture passed into Skia
|
|
76
|
+
*/
|
|
77
|
+
enum class Origin : unsigned {
|
|
78
|
+
kTopLeft,
|
|
79
|
+
kBottomLeft,
|
|
80
|
+
};
|
|
81
|
+
|
|
69
82
|
} // namespace skgpu
|
|
70
83
|
|
|
71
84
|
|