@nativescript/canvas 2.0.0-rc.11 → 2.0.0-rc.13
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/Canvas/index.android.js +6 -0
- package/Canvas/index.android.js.map +1 -1
- package/Canvas/index.ios.js +7 -1
- package/Canvas/index.ios.js.map +1 -1
- package/Canvas2D/Path2D/index.js.map +1 -1
- package/Fonts/FontFace.android.js +7 -3
- package/Fonts/FontFace.android.js.map +1 -1
- package/Fonts/FontFace.ios.d.ts +1 -0
- package/Fonts/FontFace.ios.js +10 -3
- package/Fonts/FontFace.ios.js.map +1 -1
- package/WebGPU/GPUCompilationInfo.d.ts +10 -0
- package/WebGPU/GPUCompilationInfo.js +20 -0
- package/WebGPU/GPUCompilationInfo.js.map +1 -0
- package/WebGPU/GPUCompilationMessage.d.ts +11 -0
- package/WebGPU/GPUCompilationMessage.js +30 -0
- package/WebGPU/GPUCompilationMessage.js.map +1 -0
- package/WebGPU/GPUQueue.js.map +1 -1
- package/WebGPU/GPUShaderModule.d.ts +2 -0
- package/WebGPU/GPUShaderModule.js +10 -0
- package/WebGPU/GPUShaderModule.js.map +1 -1
- package/WebGPU/index.d.ts +2 -0
- package/WebGPU/index.js +2 -0
- package/WebGPU/index.js.map +1 -1
- package/package.json +1 -1
- package/platforms/android/canvas-release.aar +0 -0
- package/platforms/ios/CanvasNative.xcframework/Info.plist +5 -5
- package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/CanvasNative +0 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/canvas_native.h +35 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.abi.json +27 -27
- package/platforms/ios/CanvasNative.xcframework/ios-arm64/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative +0 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/Relocations/aarch64/CanvasNative.yml +954 -954
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/CanvasNative +0 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/canvas_native.h +35 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json +27 -27
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json +27 -27
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/_CodeSignature/CodeResources +14 -14
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative +0 -0
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/Relocations/aarch64/CanvasNative.yml +955 -955
- package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/Relocations/x86_64/CanvasNative.yml +824 -824
- package/platforms/ios/src/cpp/Caches.h +6 -0
- package/platforms/ios/src/cpp/NativeType.h +3 -1
- package/platforms/ios/src/cpp/webgpu/GPUCompilationInfoImpl.cpp +88 -0
- package/platforms/ios/src/cpp/webgpu/GPUCompilationInfoImpl.h +49 -0
- package/platforms/ios/src/cpp/webgpu/GPUCompilationMessageImpl.cpp +193 -0
- package/platforms/ios/src/cpp/webgpu/GPUCompilationMessageImpl.h +64 -0
- package/platforms/ios/src/cpp/webgpu/GPUShaderModuleImpl.cpp +23 -0
- package/platforms/ios/src/cpp/webgpu/GPUShaderModuleImpl.h +2 -0
|
Binary file
|
|
@@ -277,6 +277,12 @@ typedef enum CanvasGPUAutoLayoutMode {
|
|
|
277
277
|
CanvasGPUAutoLayoutModeAuto,
|
|
278
278
|
} CanvasGPUAutoLayoutMode;
|
|
279
279
|
|
|
280
|
+
typedef enum CanvasGPUCompilationMessageType {
|
|
281
|
+
CanvasGPUCompilationMessageTypeError,
|
|
282
|
+
CanvasGPUCompilationMessageTypeWarning,
|
|
283
|
+
CanvasGPUCompilationMessageTypeInfo,
|
|
284
|
+
} CanvasGPUCompilationMessageType;
|
|
285
|
+
|
|
280
286
|
typedef enum CanvasGPUErrorFilter {
|
|
281
287
|
/**
|
|
282
288
|
* Catch only out-of-memory errors.
|
|
@@ -704,6 +710,10 @@ typedef struct CanvasGPUCommandBuffer CanvasGPUCommandBuffer;
|
|
|
704
710
|
|
|
705
711
|
typedef struct CanvasGPUCommandEncoder CanvasGPUCommandEncoder;
|
|
706
712
|
|
|
713
|
+
typedef struct CanvasGPUCompilationInfo CanvasGPUCompilationInfo;
|
|
714
|
+
|
|
715
|
+
typedef struct CanvasGPUCompilationMessage CanvasGPUCompilationMessage;
|
|
716
|
+
|
|
707
717
|
typedef struct CanvasGPUComputePassEncoder CanvasGPUComputePassEncoder;
|
|
708
718
|
|
|
709
719
|
typedef struct CanvasGPUComputePipeline CanvasGPUComputePipeline;
|
|
@@ -2003,7 +2013,9 @@ void canvas_native_context_2d_path_test(int64_t context);
|
|
|
2003
2013
|
|
|
2004
2014
|
void canvas_native_context_2d_conic_test(int64_t context);
|
|
2005
2015
|
|
|
2016
|
+
#if !defined(TARGET_OS_ANDROID)
|
|
2006
2017
|
void canvas_native_context_set_render_func(int64_t value, void *data, void (*render)(const void*));
|
|
2018
|
+
#endif
|
|
2007
2019
|
|
|
2008
2020
|
void canvas_native_context_clear_render_func(int64_t value);
|
|
2009
2021
|
|
|
@@ -3704,6 +3716,29 @@ void canvas_native_webgpu_shader_module_reference(const struct CanvasGPUShaderMo
|
|
|
3704
3716
|
|
|
3705
3717
|
void canvas_native_webgpu_shader_module_release(const struct CanvasGPUShaderModule *shader_module);
|
|
3706
3718
|
|
|
3719
|
+
struct CanvasGPUCompilationInfo *canvas_native_webgpu_device_create_shader_module_get_compilation_info(const struct CanvasGPUShaderModule *shader_module);
|
|
3720
|
+
|
|
3721
|
+
uintptr_t canvas_native_webgpu_compilation_info_get_messages_count(struct CanvasGPUCompilationInfo *info);
|
|
3722
|
+
|
|
3723
|
+
struct CanvasGPUCompilationMessage *canvas_native_webgpu_compilation_info_get_message_at(struct CanvasGPUCompilationInfo *info,
|
|
3724
|
+
uintptr_t index);
|
|
3725
|
+
|
|
3726
|
+
void canvas_native_webgpu_compilation_info_release(struct CanvasGPUCompilationInfo *info);
|
|
3727
|
+
|
|
3728
|
+
void canvas_native_webgpu_compilation_message_release(struct CanvasGPUCompilationMessage *message);
|
|
3729
|
+
|
|
3730
|
+
const char *canvas_native_webgpu_compilation_message_get_message(struct CanvasGPUCompilationMessage *message);
|
|
3731
|
+
|
|
3732
|
+
enum CanvasGPUCompilationMessageType canvas_native_webgpu_compilation_message_get_type(struct CanvasGPUCompilationMessage *message);
|
|
3733
|
+
|
|
3734
|
+
uint64_t canvas_native_webgpu_compilation_message_get_line_num(struct CanvasGPUCompilationMessage *message);
|
|
3735
|
+
|
|
3736
|
+
uint64_t canvas_native_webgpu_compilation_message_get_line_pos(struct CanvasGPUCompilationMessage *message);
|
|
3737
|
+
|
|
3738
|
+
uint64_t canvas_native_webgpu_compilation_message_get_offset(struct CanvasGPUCompilationMessage *message);
|
|
3739
|
+
|
|
3740
|
+
uint64_t canvas_native_webgpu_compilation_message_get_length(struct CanvasGPUCompilationMessage *message);
|
|
3741
|
+
|
|
3707
3742
|
struct CanvasGPUSupportedLimits *canvas_native_webgpu_create_limits(void);
|
|
3708
3743
|
|
|
3709
3744
|
void canvas_native_webgpu_limits_release(struct CanvasGPUSupportedLimits *limits);
|
|
Binary file
|
|
Binary file
|
|
@@ -11879,181 +11879,181 @@
|
|
|
11879
11879
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11880
11880
|
"kind": "BooleanLiteral",
|
|
11881
11881
|
"offset": 296,
|
|
11882
|
-
"length":
|
|
11883
|
-
"value": "
|
|
11882
|
+
"length": 5,
|
|
11883
|
+
"value": "false"
|
|
11884
11884
|
},
|
|
11885
11885
|
{
|
|
11886
11886
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11887
11887
|
"kind": "IntegerLiteral",
|
|
11888
|
-
"offset":
|
|
11888
|
+
"offset": 559,
|
|
11889
11889
|
"length": 4,
|
|
11890
11890
|
"value": "1"
|
|
11891
11891
|
},
|
|
11892
11892
|
{
|
|
11893
11893
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11894
11894
|
"kind": "IntegerLiteral",
|
|
11895
|
-
"offset":
|
|
11895
|
+
"offset": 577,
|
|
11896
11896
|
"length": 4,
|
|
11897
11897
|
"value": "2"
|
|
11898
11898
|
},
|
|
11899
11899
|
{
|
|
11900
11900
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11901
11901
|
"kind": "IntegerLiteral",
|
|
11902
|
-
"offset":
|
|
11902
|
+
"offset": 595,
|
|
11903
11903
|
"length": 4,
|
|
11904
11904
|
"value": "3"
|
|
11905
11905
|
},
|
|
11906
11906
|
{
|
|
11907
11907
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11908
11908
|
"kind": "IntegerLiteral",
|
|
11909
|
-
"offset":
|
|
11909
|
+
"offset": 613,
|
|
11910
11910
|
"length": 9,
|
|
11911
11911
|
"value": "4"
|
|
11912
11912
|
},
|
|
11913
11913
|
{
|
|
11914
11914
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11915
11915
|
"kind": "BooleanLiteral",
|
|
11916
|
-
"offset":
|
|
11916
|
+
"offset": 1520,
|
|
11917
11917
|
"length": 5,
|
|
11918
11918
|
"value": "false"
|
|
11919
11919
|
},
|
|
11920
11920
|
{
|
|
11921
11921
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11922
11922
|
"kind": "IntegerLiteral",
|
|
11923
|
-
"offset":
|
|
11923
|
+
"offset": 2948,
|
|
11924
11924
|
"length": 1,
|
|
11925
11925
|
"value": "1"
|
|
11926
11926
|
},
|
|
11927
11927
|
{
|
|
11928
11928
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11929
11929
|
"kind": "BooleanLiteral",
|
|
11930
|
-
"offset":
|
|
11930
|
+
"offset": 2851,
|
|
11931
11931
|
"length": 4,
|
|
11932
11932
|
"value": "true"
|
|
11933
11933
|
},
|
|
11934
11934
|
{
|
|
11935
11935
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11936
11936
|
"kind": "IntegerLiteral",
|
|
11937
|
-
"offset":
|
|
11937
|
+
"offset": 3127,
|
|
11938
11938
|
"length": 1,
|
|
11939
11939
|
"value": "0"
|
|
11940
11940
|
},
|
|
11941
11941
|
{
|
|
11942
11942
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11943
11943
|
"kind": "BooleanLiteral",
|
|
11944
|
-
"offset":
|
|
11944
|
+
"offset": 3169,
|
|
11945
11945
|
"length": 5,
|
|
11946
11946
|
"value": "false"
|
|
11947
11947
|
},
|
|
11948
11948
|
{
|
|
11949
11949
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11950
11950
|
"kind": "BooleanLiteral",
|
|
11951
|
-
"offset":
|
|
11951
|
+
"offset": 3224,
|
|
11952
11952
|
"length": 5,
|
|
11953
11953
|
"value": "false"
|
|
11954
11954
|
},
|
|
11955
11955
|
{
|
|
11956
11956
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11957
11957
|
"kind": "BooleanLiteral",
|
|
11958
|
-
"offset":
|
|
11958
|
+
"offset": 6336,
|
|
11959
11959
|
"length": 4,
|
|
11960
11960
|
"value": "true"
|
|
11961
11961
|
},
|
|
11962
11962
|
{
|
|
11963
11963
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11964
11964
|
"kind": "BooleanLiteral",
|
|
11965
|
-
"offset":
|
|
11965
|
+
"offset": 6370,
|
|
11966
11966
|
"length": 4,
|
|
11967
11967
|
"value": "true"
|
|
11968
11968
|
},
|
|
11969
11969
|
{
|
|
11970
11970
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11971
11971
|
"kind": "BooleanLiteral",
|
|
11972
|
-
"offset":
|
|
11972
|
+
"offset": 6400,
|
|
11973
11973
|
"length": 4,
|
|
11974
11974
|
"value": "true"
|
|
11975
11975
|
},
|
|
11976
11976
|
{
|
|
11977
11977
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11978
11978
|
"kind": "BooleanLiteral",
|
|
11979
|
-
"offset":
|
|
11979
|
+
"offset": 6453,
|
|
11980
11980
|
"length": 5,
|
|
11981
11981
|
"value": "false"
|
|
11982
11982
|
},
|
|
11983
11983
|
{
|
|
11984
11984
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11985
11985
|
"kind": "IntegerLiteral",
|
|
11986
|
-
"offset":
|
|
11986
|
+
"offset": 6495,
|
|
11987
11987
|
"length": 1,
|
|
11988
11988
|
"value": "0"
|
|
11989
11989
|
},
|
|
11990
11990
|
{
|
|
11991
11991
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11992
11992
|
"kind": "BooleanLiteral",
|
|
11993
|
-
"offset":
|
|
11993
|
+
"offset": 6535,
|
|
11994
11994
|
"length": 4,
|
|
11995
11995
|
"value": "true"
|
|
11996
11996
|
},
|
|
11997
11997
|
{
|
|
11998
11998
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11999
11999
|
"kind": "BooleanLiteral",
|
|
12000
|
-
"offset":
|
|
12000
|
+
"offset": 6581,
|
|
12001
12001
|
"length": 5,
|
|
12002
12002
|
"value": "false"
|
|
12003
12003
|
},
|
|
12004
12004
|
{
|
|
12005
12005
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12006
12006
|
"kind": "BooleanLiteral",
|
|
12007
|
-
"offset":
|
|
12007
|
+
"offset": 6614,
|
|
12008
12008
|
"length": 5,
|
|
12009
12009
|
"value": "false"
|
|
12010
12010
|
},
|
|
12011
12011
|
{
|
|
12012
12012
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12013
12013
|
"kind": "BooleanLiteral",
|
|
12014
|
-
"offset":
|
|
12014
|
+
"offset": 6654,
|
|
12015
12015
|
"length": 5,
|
|
12016
12016
|
"value": "false"
|
|
12017
12017
|
},
|
|
12018
12018
|
{
|
|
12019
12019
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12020
12020
|
"kind": "BooleanLiteral",
|
|
12021
|
-
"offset":
|
|
12021
|
+
"offset": 6692,
|
|
12022
12022
|
"length": 5,
|
|
12023
12023
|
"value": "false"
|
|
12024
12024
|
},
|
|
12025
12025
|
{
|
|
12026
12026
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12027
12027
|
"kind": "BooleanLiteral",
|
|
12028
|
-
"offset":
|
|
12028
|
+
"offset": 6732,
|
|
12029
12029
|
"length": 5,
|
|
12030
12030
|
"value": "false"
|
|
12031
12031
|
},
|
|
12032
12032
|
{
|
|
12033
12033
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12034
12034
|
"kind": "BooleanLiteral",
|
|
12035
|
-
"offset":
|
|
12035
|
+
"offset": 17007,
|
|
12036
12036
|
"length": 5,
|
|
12037
12037
|
"value": "false"
|
|
12038
12038
|
},
|
|
12039
12039
|
{
|
|
12040
12040
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12041
12041
|
"kind": "BooleanLiteral",
|
|
12042
|
-
"offset":
|
|
12042
|
+
"offset": 17442,
|
|
12043
12043
|
"length": 5,
|
|
12044
12044
|
"value": "false"
|
|
12045
12045
|
},
|
|
12046
12046
|
{
|
|
12047
12047
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12048
12048
|
"kind": "IntegerLiteral",
|
|
12049
|
-
"offset":
|
|
12049
|
+
"offset": 17493,
|
|
12050
12050
|
"length": 3,
|
|
12051
12051
|
"value": "300"
|
|
12052
12052
|
},
|
|
12053
12053
|
{
|
|
12054
12054
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12055
12055
|
"kind": "IntegerLiteral",
|
|
12056
|
-
"offset":
|
|
12056
|
+
"offset": 17670,
|
|
12057
12057
|
"length": 3,
|
|
12058
12058
|
"value": "150"
|
|
12059
12059
|
},
|
|
@@ -11879,181 +11879,181 @@
|
|
|
11879
11879
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11880
11880
|
"kind": "BooleanLiteral",
|
|
11881
11881
|
"offset": 296,
|
|
11882
|
-
"length":
|
|
11883
|
-
"value": "
|
|
11882
|
+
"length": 5,
|
|
11883
|
+
"value": "false"
|
|
11884
11884
|
},
|
|
11885
11885
|
{
|
|
11886
11886
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11887
11887
|
"kind": "IntegerLiteral",
|
|
11888
|
-
"offset":
|
|
11888
|
+
"offset": 559,
|
|
11889
11889
|
"length": 4,
|
|
11890
11890
|
"value": "1"
|
|
11891
11891
|
},
|
|
11892
11892
|
{
|
|
11893
11893
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11894
11894
|
"kind": "IntegerLiteral",
|
|
11895
|
-
"offset":
|
|
11895
|
+
"offset": 577,
|
|
11896
11896
|
"length": 4,
|
|
11897
11897
|
"value": "2"
|
|
11898
11898
|
},
|
|
11899
11899
|
{
|
|
11900
11900
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11901
11901
|
"kind": "IntegerLiteral",
|
|
11902
|
-
"offset":
|
|
11902
|
+
"offset": 595,
|
|
11903
11903
|
"length": 4,
|
|
11904
11904
|
"value": "3"
|
|
11905
11905
|
},
|
|
11906
11906
|
{
|
|
11907
11907
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11908
11908
|
"kind": "IntegerLiteral",
|
|
11909
|
-
"offset":
|
|
11909
|
+
"offset": 613,
|
|
11910
11910
|
"length": 9,
|
|
11911
11911
|
"value": "4"
|
|
11912
11912
|
},
|
|
11913
11913
|
{
|
|
11914
11914
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11915
11915
|
"kind": "BooleanLiteral",
|
|
11916
|
-
"offset":
|
|
11916
|
+
"offset": 1520,
|
|
11917
11917
|
"length": 5,
|
|
11918
11918
|
"value": "false"
|
|
11919
11919
|
},
|
|
11920
11920
|
{
|
|
11921
11921
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11922
11922
|
"kind": "IntegerLiteral",
|
|
11923
|
-
"offset":
|
|
11923
|
+
"offset": 2948,
|
|
11924
11924
|
"length": 1,
|
|
11925
11925
|
"value": "1"
|
|
11926
11926
|
},
|
|
11927
11927
|
{
|
|
11928
11928
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11929
11929
|
"kind": "BooleanLiteral",
|
|
11930
|
-
"offset":
|
|
11930
|
+
"offset": 2851,
|
|
11931
11931
|
"length": 4,
|
|
11932
11932
|
"value": "true"
|
|
11933
11933
|
},
|
|
11934
11934
|
{
|
|
11935
11935
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11936
11936
|
"kind": "IntegerLiteral",
|
|
11937
|
-
"offset":
|
|
11937
|
+
"offset": 3127,
|
|
11938
11938
|
"length": 1,
|
|
11939
11939
|
"value": "0"
|
|
11940
11940
|
},
|
|
11941
11941
|
{
|
|
11942
11942
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11943
11943
|
"kind": "BooleanLiteral",
|
|
11944
|
-
"offset":
|
|
11944
|
+
"offset": 3169,
|
|
11945
11945
|
"length": 5,
|
|
11946
11946
|
"value": "false"
|
|
11947
11947
|
},
|
|
11948
11948
|
{
|
|
11949
11949
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11950
11950
|
"kind": "BooleanLiteral",
|
|
11951
|
-
"offset":
|
|
11951
|
+
"offset": 3224,
|
|
11952
11952
|
"length": 5,
|
|
11953
11953
|
"value": "false"
|
|
11954
11954
|
},
|
|
11955
11955
|
{
|
|
11956
11956
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11957
11957
|
"kind": "BooleanLiteral",
|
|
11958
|
-
"offset":
|
|
11958
|
+
"offset": 6336,
|
|
11959
11959
|
"length": 4,
|
|
11960
11960
|
"value": "true"
|
|
11961
11961
|
},
|
|
11962
11962
|
{
|
|
11963
11963
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11964
11964
|
"kind": "BooleanLiteral",
|
|
11965
|
-
"offset":
|
|
11965
|
+
"offset": 6370,
|
|
11966
11966
|
"length": 4,
|
|
11967
11967
|
"value": "true"
|
|
11968
11968
|
},
|
|
11969
11969
|
{
|
|
11970
11970
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11971
11971
|
"kind": "BooleanLiteral",
|
|
11972
|
-
"offset":
|
|
11972
|
+
"offset": 6400,
|
|
11973
11973
|
"length": 4,
|
|
11974
11974
|
"value": "true"
|
|
11975
11975
|
},
|
|
11976
11976
|
{
|
|
11977
11977
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11978
11978
|
"kind": "BooleanLiteral",
|
|
11979
|
-
"offset":
|
|
11979
|
+
"offset": 6453,
|
|
11980
11980
|
"length": 5,
|
|
11981
11981
|
"value": "false"
|
|
11982
11982
|
},
|
|
11983
11983
|
{
|
|
11984
11984
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11985
11985
|
"kind": "IntegerLiteral",
|
|
11986
|
-
"offset":
|
|
11986
|
+
"offset": 6495,
|
|
11987
11987
|
"length": 1,
|
|
11988
11988
|
"value": "0"
|
|
11989
11989
|
},
|
|
11990
11990
|
{
|
|
11991
11991
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11992
11992
|
"kind": "BooleanLiteral",
|
|
11993
|
-
"offset":
|
|
11993
|
+
"offset": 6535,
|
|
11994
11994
|
"length": 4,
|
|
11995
11995
|
"value": "true"
|
|
11996
11996
|
},
|
|
11997
11997
|
{
|
|
11998
11998
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
11999
11999
|
"kind": "BooleanLiteral",
|
|
12000
|
-
"offset":
|
|
12000
|
+
"offset": 6581,
|
|
12001
12001
|
"length": 5,
|
|
12002
12002
|
"value": "false"
|
|
12003
12003
|
},
|
|
12004
12004
|
{
|
|
12005
12005
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12006
12006
|
"kind": "BooleanLiteral",
|
|
12007
|
-
"offset":
|
|
12007
|
+
"offset": 6614,
|
|
12008
12008
|
"length": 5,
|
|
12009
12009
|
"value": "false"
|
|
12010
12010
|
},
|
|
12011
12011
|
{
|
|
12012
12012
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12013
12013
|
"kind": "BooleanLiteral",
|
|
12014
|
-
"offset":
|
|
12014
|
+
"offset": 6654,
|
|
12015
12015
|
"length": 5,
|
|
12016
12016
|
"value": "false"
|
|
12017
12017
|
},
|
|
12018
12018
|
{
|
|
12019
12019
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12020
12020
|
"kind": "BooleanLiteral",
|
|
12021
|
-
"offset":
|
|
12021
|
+
"offset": 6692,
|
|
12022
12022
|
"length": 5,
|
|
12023
12023
|
"value": "false"
|
|
12024
12024
|
},
|
|
12025
12025
|
{
|
|
12026
12026
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12027
12027
|
"kind": "BooleanLiteral",
|
|
12028
|
-
"offset":
|
|
12028
|
+
"offset": 6732,
|
|
12029
12029
|
"length": 5,
|
|
12030
12030
|
"value": "false"
|
|
12031
12031
|
},
|
|
12032
12032
|
{
|
|
12033
12033
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12034
12034
|
"kind": "BooleanLiteral",
|
|
12035
|
-
"offset":
|
|
12035
|
+
"offset": 17007,
|
|
12036
12036
|
"length": 5,
|
|
12037
12037
|
"value": "false"
|
|
12038
12038
|
},
|
|
12039
12039
|
{
|
|
12040
12040
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12041
12041
|
"kind": "BooleanLiteral",
|
|
12042
|
-
"offset":
|
|
12042
|
+
"offset": 17442,
|
|
12043
12043
|
"length": 5,
|
|
12044
12044
|
"value": "false"
|
|
12045
12045
|
},
|
|
12046
12046
|
{
|
|
12047
12047
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12048
12048
|
"kind": "IntegerLiteral",
|
|
12049
|
-
"offset":
|
|
12049
|
+
"offset": 17493,
|
|
12050
12050
|
"length": 3,
|
|
12051
12051
|
"value": "300"
|
|
12052
12052
|
},
|
|
12053
12053
|
{
|
|
12054
12054
|
"filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
|
|
12055
12055
|
"kind": "IntegerLiteral",
|
|
12056
|
-
"offset":
|
|
12056
|
+
"offset": 17670,
|
|
12057
12057
|
"length": 3,
|
|
12058
12058
|
"value": "150"
|
|
12059
12059
|
},
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
</data>
|
|
23
23
|
<key>Headers/canvas_native.h</key>
|
|
24
24
|
<data>
|
|
25
|
-
|
|
25
|
+
C/Wyxq5eKOQnfPuEGEfMur6k8Wk=
|
|
26
26
|
</data>
|
|
27
27
|
<key>Info.plist</key>
|
|
28
28
|
<data>
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
</data>
|
|
31
31
|
<key>Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo</key>
|
|
32
32
|
<data>
|
|
33
|
-
|
|
33
|
+
vLLTcUynDVQBXk/cBp7/U8DcNK8=
|
|
34
34
|
</data>
|
|
35
35
|
<key>Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
|
|
36
36
|
<data>
|
|
37
|
-
|
|
37
|
+
RRGInXVloPDMldZvkdwHkrEGLiM=
|
|
38
38
|
</data>
|
|
39
39
|
<key>Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
40
40
|
<data>
|
|
41
|
-
|
|
41
|
+
7DgoTPQWZWDXVrgczaIzMEKLbO8=
|
|
42
42
|
</data>
|
|
43
43
|
<key>Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
44
44
|
<data>
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
</data>
|
|
55
55
|
<key>Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
|
56
56
|
<data>
|
|
57
|
-
|
|
57
|
+
LnCfkTcZbbNA0fFyWYtXoeJ5snQ=
|
|
58
58
|
</data>
|
|
59
59
|
<key>Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
60
60
|
<data>
|
|
61
|
-
|
|
61
|
+
7DgoTPQWZWDXVrgczaIzMEKLbO8=
|
|
62
62
|
</data>
|
|
63
63
|
<key>Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
64
64
|
<data>
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
</data>
|
|
75
75
|
<key>Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
|
76
76
|
<data>
|
|
77
|
-
|
|
77
|
+
lisru02tDXUEVabTymty2Dd8O5g=
|
|
78
78
|
</data>
|
|
79
79
|
<key>Modules/module.modulemap</key>
|
|
80
80
|
<data>
|
|
@@ -155,28 +155,28 @@
|
|
|
155
155
|
<dict>
|
|
156
156
|
<key>hash2</key>
|
|
157
157
|
<data>
|
|
158
|
-
|
|
158
|
+
7neDXvnm27IXB53sz7LMSDWDsL2GTJHD29CTIb+2rKc=
|
|
159
159
|
</data>
|
|
160
160
|
</dict>
|
|
161
161
|
<key>Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo</key>
|
|
162
162
|
<dict>
|
|
163
163
|
<key>hash2</key>
|
|
164
164
|
<data>
|
|
165
|
-
|
|
165
|
+
stnzkGop0PmsdYgOeqj59EOUoEV4kIbrrtEWadDzYKc=
|
|
166
166
|
</data>
|
|
167
167
|
</dict>
|
|
168
168
|
<key>Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
|
|
169
169
|
<dict>
|
|
170
170
|
<key>hash2</key>
|
|
171
171
|
<data>
|
|
172
|
-
|
|
172
|
+
Dq3YYpVVYJ3obQVfnUBvfCmZtlXKFCsyV4pMpcswmZY=
|
|
173
173
|
</data>
|
|
174
174
|
</dict>
|
|
175
175
|
<key>Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
176
176
|
<dict>
|
|
177
177
|
<key>hash2</key>
|
|
178
178
|
<data>
|
|
179
|
-
|
|
179
|
+
E9MXtsxZTSEZ6lRL6+41EodoGTwIUnbgUduRvwWe8Pg=
|
|
180
180
|
</data>
|
|
181
181
|
</dict>
|
|
182
182
|
<key>Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
@@ -204,14 +204,14 @@
|
|
|
204
204
|
<dict>
|
|
205
205
|
<key>hash2</key>
|
|
206
206
|
<data>
|
|
207
|
-
|
|
207
|
+
eamPn+Mjpw2flo+qjisVqq545uyMOHGnXN30/FTHDIM=
|
|
208
208
|
</data>
|
|
209
209
|
</dict>
|
|
210
210
|
<key>Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
211
211
|
<dict>
|
|
212
212
|
<key>hash2</key>
|
|
213
213
|
<data>
|
|
214
|
-
|
|
214
|
+
E9MXtsxZTSEZ6lRL6+41EodoGTwIUnbgUduRvwWe8Pg=
|
|
215
215
|
</data>
|
|
216
216
|
</dict>
|
|
217
217
|
<key>Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
<dict>
|
|
240
240
|
<key>hash2</key>
|
|
241
241
|
<data>
|
|
242
|
-
|
|
242
|
+
82GqNeSgdo9F6/1Xyma0Gk9cjF97SPQlgInodBkbXw8=
|
|
243
243
|
</data>
|
|
244
244
|
</dict>
|
|
245
245
|
<key>Modules/module.modulemap</key>
|