@nativescript/canvas 2.0.0-webgpu.3 → 2.0.0-webgpu.30

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 (197) hide show
  1. package/Canvas/common.d.ts +4 -9
  2. package/Canvas/common.js +37 -126
  3. package/Canvas/common.js.map +1 -1
  4. package/Canvas/index.android.d.ts +0 -1
  5. package/Canvas/index.android.js +45 -38
  6. package/Canvas/index.android.js.map +1 -1
  7. package/Canvas/index.d.ts +11 -3
  8. package/Canvas/index.ios.js +49 -40
  9. package/Canvas/index.ios.js.map +1 -1
  10. package/Canvas/utils.d.ts +3 -0
  11. package/Canvas/utils.js +85 -0
  12. package/Canvas/utils.js.map +1 -0
  13. package/Canvas2D/CanvasRenderingContext2D/index.d.ts +1 -0
  14. package/Canvas2D/CanvasRenderingContext2D/index.js +1 -0
  15. package/Canvas2D/CanvasRenderingContext2D/index.js.map +1 -1
  16. package/Dom/Group.d.ts +1 -2
  17. package/Dom/Group.js.map +1 -1
  18. package/Dom/Image.js +0 -1
  19. package/Dom/Image.js.map +1 -1
  20. package/Dom/Paint.d.ts +1 -1
  21. package/Dom/shapes/Path.d.ts +1 -1
  22. package/ImageAsset/index.js +77 -33
  23. package/ImageAsset/index.js.map +1 -1
  24. package/ImageBitmap/index.js +107 -20
  25. package/ImageBitmap/index.js.map +1 -1
  26. package/README.md +2 -4
  27. package/WebGL/WebGLRenderingContext/index.js +73 -31
  28. package/WebGL/WebGLRenderingContext/index.js.map +1 -1
  29. package/WebGL2/WebGL2RenderingContext/index.js +4 -4
  30. package/WebGL2/WebGL2RenderingContext/index.js.map +1 -1
  31. package/WebGPU/GPU.js +4 -3
  32. package/WebGPU/GPU.js.map +1 -1
  33. package/WebGPU/GPUAdapter.d.ts +6 -3
  34. package/WebGPU/GPUAdapter.js +31 -0
  35. package/WebGPU/GPUAdapter.js.map +1 -1
  36. package/WebGPU/GPUBindGroup.d.ts +1 -0
  37. package/WebGPU/GPUBindGroup.js +3 -0
  38. package/WebGPU/GPUBindGroup.js.map +1 -1
  39. package/WebGPU/GPUBindGroupLayout.d.ts +1 -0
  40. package/WebGPU/GPUBindGroupLayout.js +3 -0
  41. package/WebGPU/GPUBindGroupLayout.js.map +1 -1
  42. package/WebGPU/GPUBuffer.js +10 -2
  43. package/WebGPU/GPUBuffer.js.map +1 -1
  44. package/WebGPU/GPUCanvasContext.d.ts +3 -2
  45. package/WebGPU/GPUCanvasContext.js +52 -10
  46. package/WebGPU/GPUCanvasContext.js.map +1 -1
  47. package/WebGPU/GPUCommandBuffer.d.ts +1 -0
  48. package/WebGPU/GPUCommandBuffer.js +3 -0
  49. package/WebGPU/GPUCommandBuffer.js.map +1 -1
  50. package/WebGPU/GPUCommandEncoder.d.ts +3 -9
  51. package/WebGPU/GPUCommandEncoder.js +94 -41
  52. package/WebGPU/GPUCommandEncoder.js.map +1 -1
  53. package/WebGPU/GPUComputePassEncoder.d.ts +1 -0
  54. package/WebGPU/GPUComputePassEncoder.js +3 -0
  55. package/WebGPU/GPUComputePassEncoder.js.map +1 -1
  56. package/WebGPU/GPUComputePipeline.d.ts +1 -0
  57. package/WebGPU/GPUComputePipeline.js +3 -0
  58. package/WebGPU/GPUComputePipeline.js.map +1 -1
  59. package/WebGPU/GPUDevice.d.ts +17 -79
  60. package/WebGPU/GPUDevice.js +76 -91
  61. package/WebGPU/GPUDevice.js.map +1 -1
  62. package/WebGPU/GPUExternalTexture.d.ts +1 -0
  63. package/WebGPU/GPUExternalTexture.js +3 -0
  64. package/WebGPU/GPUExternalTexture.js.map +1 -1
  65. package/WebGPU/GPUPipelineLayout.d.ts +1 -0
  66. package/WebGPU/GPUPipelineLayout.js +3 -0
  67. package/WebGPU/GPUPipelineLayout.js.map +1 -1
  68. package/WebGPU/GPUQuerySet.d.ts +1 -0
  69. package/WebGPU/GPUQuerySet.js +3 -0
  70. package/WebGPU/GPUQuerySet.js.map +1 -1
  71. package/WebGPU/GPUQueue.d.ts +1 -0
  72. package/WebGPU/GPUQueue.js +56 -14
  73. package/WebGPU/GPUQueue.js.map +1 -1
  74. package/WebGPU/GPURenderBundle.d.ts +1 -0
  75. package/WebGPU/GPURenderBundle.js +3 -0
  76. package/WebGPU/GPURenderBundle.js.map +1 -1
  77. package/WebGPU/GPURenderBundleEncoder.d.ts +4 -2
  78. package/WebGPU/GPURenderBundleEncoder.js +7 -3
  79. package/WebGPU/GPURenderBundleEncoder.js.map +1 -1
  80. package/WebGPU/GPURenderPassEncoder.d.ts +2 -1
  81. package/WebGPU/GPURenderPassEncoder.js +5 -2
  82. package/WebGPU/GPURenderPassEncoder.js.map +1 -1
  83. package/WebGPU/GPURenderPipeline.d.ts +1 -0
  84. package/WebGPU/GPURenderPipeline.js +3 -0
  85. package/WebGPU/GPURenderPipeline.js.map +1 -1
  86. package/WebGPU/GPUSampler.d.ts +1 -0
  87. package/WebGPU/GPUSampler.js +3 -0
  88. package/WebGPU/GPUSampler.js.map +1 -1
  89. package/WebGPU/GPUShaderModule.d.ts +1 -1
  90. package/WebGPU/GPUShaderModule.js +2 -2
  91. package/WebGPU/GPUShaderModule.js.map +1 -1
  92. package/WebGPU/GPUTexture.d.ts +1 -0
  93. package/WebGPU/GPUTexture.js +3 -0
  94. package/WebGPU/GPUTexture.js.map +1 -1
  95. package/WebGPU/GPUTextureView.d.ts +1 -0
  96. package/WebGPU/GPUTextureView.js +3 -0
  97. package/WebGPU/GPUTextureView.js.map +1 -1
  98. package/WebGPU/Interfaces.d.ts +95 -4
  99. package/WebGPU/Types.d.ts +9 -1
  100. package/WebGPU/Utils.d.ts +6 -0
  101. package/WebGPU/Utils.js +224 -0
  102. package/WebGPU/Utils.js.map +1 -1
  103. package/angular/esm2022/index.mjs +4 -4
  104. package/angular/fesm2022/nativescript-canvas-angular.mjs +4 -4
  105. package/package.json +1 -1
  106. package/platforms/android/canvas-release.aar +0 -0
  107. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/CanvasNative +0 -0
  108. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/CanvasNative-Swift.h +39 -10
  109. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/canvas_ios.h +7 -0
  110. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/canvas_native.h +227 -62
  111. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Info.plist +0 -0
  112. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
  113. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.abi.json +1635 -151
  114. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.private.swiftinterface +57 -1
  115. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  116. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftinterface +57 -1
  117. package/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/NSCCanvas.nib +0 -0
  118. package/platforms/ios/CanvasNative.xcframework/ios-arm64/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative +0 -0
  119. package/platforms/ios/CanvasNative.xcframework/ios-arm64/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/Relocations/aarch64/CanvasNative.yml +690 -644
  120. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/CanvasNative +0 -0
  121. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/CanvasNative-Swift.h +78 -20
  122. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/canvas_ios.h +7 -0
  123. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/canvas_native.h +227 -62
  124. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Info.plist +0 -0
  125. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  126. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  127. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json +1635 -151
  128. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +57 -1
  129. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  130. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftinterface +57 -1
  131. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json +1635 -151
  132. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +57 -1
  133. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  134. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +57 -1
  135. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/NSCCanvas.nib +0 -0
  136. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/_CodeSignature/CodeResources +27 -27
  137. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative +0 -0
  138. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/Relocations/aarch64/CanvasNative.yml +692 -646
  139. package/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/Relocations/x86_64/CanvasNative.yml +730 -684
  140. package/platforms/ios/src/NSOperationQueueWrapper.h +1 -1
  141. package/platforms/ios/src/NSOperationQueueWrapper.mm +41 -9
  142. package/platforms/ios/src/cpp/AsyncCallback.h +16 -8
  143. package/platforms/ios/src/cpp/CanvasJSIModule.cpp +208 -789
  144. package/platforms/ios/src/cpp/ImageAssetImpl.cpp +18 -28
  145. package/platforms/ios/src/cpp/ImageAssetImpl.h +3 -3
  146. package/platforms/ios/src/cpp/ImageBitmapImpl.cpp +60 -3
  147. package/platforms/ios/src/cpp/ImageBitmapImpl.h +10 -3
  148. package/platforms/ios/src/cpp/PromiseCallback.h +1 -2
  149. package/platforms/ios/src/cpp/canvas2d/CanvasRenderingContext2DImpl.cpp +1 -1
  150. package/platforms/ios/src/cpp/canvas2d/CanvasRenderingContext2DImpl.h +3 -3
  151. package/platforms/ios/src/cpp/canvas2d/Path2D.h +5 -5
  152. package/platforms/ios/src/cpp/webgl/WebGLRenderingContext.cpp +106 -1
  153. package/platforms/ios/src/cpp/webgpu/GPUAdapterImpl.cpp +26 -23
  154. package/platforms/ios/src/cpp/webgpu/GPUBindGroupImpl.cpp +31 -5
  155. package/platforms/ios/src/cpp/webgpu/GPUBindGroupImpl.h +4 -1
  156. package/platforms/ios/src/cpp/webgpu/GPUBindGroupLayoutImpl.cpp +26 -0
  157. package/platforms/ios/src/cpp/webgpu/GPUBindGroupLayoutImpl.h +3 -0
  158. package/platforms/ios/src/cpp/webgpu/GPUBufferImpl.cpp +41 -7
  159. package/platforms/ios/src/cpp/webgpu/GPUBufferImpl.h +4 -0
  160. package/platforms/ios/src/cpp/webgpu/GPUCanvasContextImpl.cpp +11 -5
  161. package/platforms/ios/src/cpp/webgpu/GPUCommandBufferImpl.cpp +28 -1
  162. package/platforms/ios/src/cpp/webgpu/GPUCommandBufferImpl.h +3 -0
  163. package/platforms/ios/src/cpp/webgpu/GPUCommandEncoderImpl.cpp +75 -79
  164. package/platforms/ios/src/cpp/webgpu/GPUCommandEncoderImpl.h +4 -0
  165. package/platforms/ios/src/cpp/webgpu/GPUComputePassEncoderImpl.cpp +42 -14
  166. package/platforms/ios/src/cpp/webgpu/GPUComputePassEncoderImpl.h +3 -0
  167. package/platforms/ios/src/cpp/webgpu/GPUComputePipelineImpl.cpp +25 -0
  168. package/platforms/ios/src/cpp/webgpu/GPUComputePipelineImpl.h +2 -0
  169. package/platforms/ios/src/cpp/webgpu/GPUDeviceImpl.cpp +1597 -674
  170. package/platforms/ios/src/cpp/webgpu/GPUDeviceImpl.h +2 -0
  171. package/platforms/ios/src/cpp/webgpu/GPUImpl.cpp +2 -1
  172. package/platforms/ios/src/cpp/webgpu/GPUImpl.h +1 -1
  173. package/platforms/ios/src/cpp/webgpu/GPULabel.h +33 -0
  174. package/platforms/ios/src/cpp/webgpu/GPUPipelineLayoutImpl.cpp +26 -0
  175. package/platforms/ios/src/cpp/webgpu/GPUPipelineLayoutImpl.h +3 -1
  176. package/platforms/ios/src/cpp/webgpu/GPUQuerySetImpl.cpp +1 -2
  177. package/platforms/ios/src/cpp/webgpu/GPUQuerySetImpl.h +1 -1
  178. package/platforms/ios/src/cpp/webgpu/GPUQueueImpl.cpp +50 -13
  179. package/platforms/ios/src/cpp/webgpu/GPUQueueImpl.h +3 -0
  180. package/platforms/ios/src/cpp/webgpu/GPURenderBundleEncoderImpl.cpp +43 -14
  181. package/platforms/ios/src/cpp/webgpu/GPURenderBundleEncoderImpl.h +3 -0
  182. package/platforms/ios/src/cpp/webgpu/GPURenderBundleImpl.cpp +25 -0
  183. package/platforms/ios/src/cpp/webgpu/GPURenderBundleImpl.h +3 -0
  184. package/platforms/ios/src/cpp/webgpu/GPURenderPassEncoderImpl.cpp +39 -13
  185. package/platforms/ios/src/cpp/webgpu/GPURenderPassEncoderImpl.h +3 -0
  186. package/platforms/ios/src/cpp/webgpu/GPURenderPipelineImpl.cpp +25 -0
  187. package/platforms/ios/src/cpp/webgpu/GPURenderPipelineImpl.h +3 -0
  188. package/platforms/ios/src/cpp/webgpu/GPUSamplerImpl.cpp +26 -0
  189. package/platforms/ios/src/cpp/webgpu/GPUSamplerImpl.h +4 -1
  190. package/platforms/ios/src/cpp/webgpu/GPUShaderModuleImpl.cpp +24 -0
  191. package/platforms/ios/src/cpp/webgpu/GPUShaderModuleImpl.h +3 -0
  192. package/platforms/ios/src/cpp/webgpu/GPUTextureImpl.cpp +34 -8
  193. package/platforms/ios/src/cpp/webgpu/GPUTextureImpl.h +2 -0
  194. package/platforms/ios/src/cpp/webgpu/GPUTextureViewImpl.cpp +26 -0
  195. package/platforms/ios/src/cpp/webgpu/GPUTextureViewImpl.h +3 -0
  196. package/platforms/ios/src/cpp/webgpu/GPUUtils.h +511 -0
  197. package/utils.d.ts +1 -1
@@ -186,6 +186,42 @@
186
186
  ],
187
187
  "funcSelfKind": "NonMutating"
188
188
  },
189
+ {
190
+ "kind": "Function",
191
+ "name": "loadImageAssetWithPath",
192
+ "printedName": "loadImageAssetWithPath(_:_:)",
193
+ "children": [
194
+ {
195
+ "kind": "TypeNominal",
196
+ "name": "Bool",
197
+ "printedName": "Swift.Bool",
198
+ "usr": "s:Sb"
199
+ },
200
+ {
201
+ "kind": "TypeNominal",
202
+ "name": "Int64",
203
+ "printedName": "Swift.Int64",
204
+ "usr": "s:s5Int64V"
205
+ },
206
+ {
207
+ "kind": "TypeNominal",
208
+ "name": "String",
209
+ "printedName": "Swift.String",
210
+ "usr": "s:SS"
211
+ }
212
+ ],
213
+ "declKind": "Func",
214
+ "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(cm)loadImageAssetWithPath::",
215
+ "mangledName": "$s12CanvasNative0A7HelpersC22loadImageAssetWithPathySbs5Int64V_SStFZ",
216
+ "moduleName": "CanvasNative",
217
+ "static": true,
218
+ "declAttributes": [
219
+ "Final",
220
+ "AccessControl",
221
+ "ObjC"
222
+ ],
223
+ "funcSelfKind": "NonMutating"
224
+ },
189
225
  {
190
226
  "kind": "Function",
191
227
  "name": "drawImage",
@@ -474,6 +510,53 @@
474
510
  ],
475
511
  "funcSelfKind": "NonMutating"
476
512
  },
513
+ {
514
+ "kind": "Function",
515
+ "name": "resizeWebGPUWithView",
516
+ "printedName": "resizeWebGPUWithView(_:_:_:_:)",
517
+ "children": [
518
+ {
519
+ "kind": "TypeNominal",
520
+ "name": "Void",
521
+ "printedName": "()"
522
+ },
523
+ {
524
+ "kind": "TypeNominal",
525
+ "name": "Int64",
526
+ "printedName": "Swift.Int64",
527
+ "usr": "s:s5Int64V"
528
+ },
529
+ {
530
+ "kind": "TypeNominal",
531
+ "name": "Int64",
532
+ "printedName": "Swift.Int64",
533
+ "usr": "s:s5Int64V"
534
+ },
535
+ {
536
+ "kind": "TypeNominal",
537
+ "name": "UInt32",
538
+ "printedName": "Swift.UInt32",
539
+ "usr": "s:s6UInt32V"
540
+ },
541
+ {
542
+ "kind": "TypeNominal",
543
+ "name": "UInt32",
544
+ "printedName": "Swift.UInt32",
545
+ "usr": "s:s6UInt32V"
546
+ }
547
+ ],
548
+ "declKind": "Func",
549
+ "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(cm)resizeWebGPUWithView::::",
550
+ "mangledName": "$s12CanvasNative0A7HelpersC20resizeWebGPUWithViewyys5Int64V_AFs6UInt32VAHtFZ",
551
+ "moduleName": "CanvasNative",
552
+ "static": true,
553
+ "declAttributes": [
554
+ "Final",
555
+ "AccessControl",
556
+ "ObjC"
557
+ ],
558
+ "funcSelfKind": "NonMutating"
559
+ },
477
560
  {
478
561
  "kind": "Function",
479
562
  "name": "initGLWithView",
@@ -1492,129 +1575,1178 @@
1492
1575
  ]
1493
1576
  }
1494
1577
  ],
1495
- "declKind": "Func",
1496
- "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(cm)deleteFile::",
1497
- "mangledName": "$s12CanvasNative0A7HelpersC10deleteFileyySS_ySo7NSErrorCSg_SbtctFZ",
1578
+ "declKind": "Func",
1579
+ "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(cm)deleteFile::",
1580
+ "mangledName": "$s12CanvasNative0A7HelpersC10deleteFileyySS_ySo7NSErrorCSg_SbtctFZ",
1581
+ "moduleName": "CanvasNative",
1582
+ "static": true,
1583
+ "declAttributes": [
1584
+ "Final",
1585
+ "AccessControl",
1586
+ "ObjC"
1587
+ ],
1588
+ "funcSelfKind": "NonMutating"
1589
+ },
1590
+ {
1591
+ "kind": "Function",
1592
+ "name": "handleBase64Image",
1593
+ "printedName": "handleBase64Image(_:_:_:_:)",
1594
+ "children": [
1595
+ {
1596
+ "kind": "TypeNominal",
1597
+ "name": "Void",
1598
+ "printedName": "()"
1599
+ },
1600
+ {
1601
+ "kind": "TypeNominal",
1602
+ "name": "String",
1603
+ "printedName": "Swift.String",
1604
+ "usr": "s:SS"
1605
+ },
1606
+ {
1607
+ "kind": "TypeNominal",
1608
+ "name": "String",
1609
+ "printedName": "Swift.String",
1610
+ "usr": "s:SS"
1611
+ },
1612
+ {
1613
+ "kind": "TypeNominal",
1614
+ "name": "String",
1615
+ "printedName": "Swift.String",
1616
+ "usr": "s:SS"
1617
+ },
1618
+ {
1619
+ "kind": "TypeFunc",
1620
+ "name": "Function",
1621
+ "printedName": "(Swift.String?, Swift.String?) -> ()",
1622
+ "children": [
1623
+ {
1624
+ "kind": "TypeNominal",
1625
+ "name": "Void",
1626
+ "printedName": "()"
1627
+ },
1628
+ {
1629
+ "kind": "TypeNominal",
1630
+ "name": "Tuple",
1631
+ "printedName": "(Swift.String?, Swift.String?)",
1632
+ "children": [
1633
+ {
1634
+ "kind": "TypeNominal",
1635
+ "name": "Optional",
1636
+ "printedName": "Swift.String?",
1637
+ "children": [
1638
+ {
1639
+ "kind": "TypeNominal",
1640
+ "name": "String",
1641
+ "printedName": "Swift.String",
1642
+ "usr": "s:SS"
1643
+ }
1644
+ ],
1645
+ "usr": "s:Sq"
1646
+ },
1647
+ {
1648
+ "kind": "TypeNominal",
1649
+ "name": "Optional",
1650
+ "printedName": "Swift.String?",
1651
+ "children": [
1652
+ {
1653
+ "kind": "TypeNominal",
1654
+ "name": "String",
1655
+ "printedName": "Swift.String",
1656
+ "usr": "s:SS"
1657
+ }
1658
+ ],
1659
+ "usr": "s:Sq"
1660
+ }
1661
+ ]
1662
+ }
1663
+ ]
1664
+ }
1665
+ ],
1666
+ "declKind": "Func",
1667
+ "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(cm)handleBase64Image::::",
1668
+ "mangledName": "$s12CanvasNative0A7HelpersC17handleBase64ImageyySS_S2SySSSg_AEtctFZ",
1669
+ "moduleName": "CanvasNative",
1670
+ "static": true,
1671
+ "declAttributes": [
1672
+ "Final",
1673
+ "AccessControl",
1674
+ "ObjC"
1675
+ ],
1676
+ "funcSelfKind": "NonMutating"
1677
+ },
1678
+ {
1679
+ "kind": "Function",
1680
+ "name": "getPixelsPerInchForCurrentDevice",
1681
+ "printedName": "getPixelsPerInchForCurrentDevice()",
1682
+ "children": [
1683
+ {
1684
+ "kind": "TypeNominal",
1685
+ "name": "String",
1686
+ "printedName": "Swift.String",
1687
+ "usr": "s:SS"
1688
+ }
1689
+ ],
1690
+ "declKind": "Func",
1691
+ "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(cm)getPixelsPerInchForCurrentDevice",
1692
+ "mangledName": "$s12CanvasNative0A7HelpersC32getPixelsPerInchForCurrentDeviceSSyFZ",
1693
+ "moduleName": "CanvasNative",
1694
+ "static": true,
1695
+ "declAttributes": [
1696
+ "Final",
1697
+ "AccessControl",
1698
+ "ObjC"
1699
+ ],
1700
+ "funcSelfKind": "NonMutating"
1701
+ },
1702
+ {
1703
+ "kind": "Constructor",
1704
+ "name": "init",
1705
+ "printedName": "init()",
1706
+ "children": [
1707
+ {
1708
+ "kind": "TypeNominal",
1709
+ "name": "CanvasHelpers",
1710
+ "printedName": "CanvasNative.CanvasHelpers",
1711
+ "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers"
1712
+ }
1713
+ ],
1714
+ "declKind": "Constructor",
1715
+ "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(im)init",
1716
+ "mangledName": "$s12CanvasNative0A7HelpersCACycfc",
1717
+ "moduleName": "CanvasNative",
1718
+ "overriding": true,
1719
+ "implicit": true,
1720
+ "objc_name": "init",
1721
+ "declAttributes": [
1722
+ "Dynamic",
1723
+ "ObjC",
1724
+ "Override"
1725
+ ],
1726
+ "init_kind": "Designated"
1727
+ }
1728
+ ],
1729
+ "declKind": "Class",
1730
+ "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers",
1731
+ "mangledName": "$s12CanvasNative0A7HelpersC",
1732
+ "moduleName": "CanvasNative",
1733
+ "objc_name": "NSSCanvasHelpers",
1734
+ "declAttributes": [
1735
+ "AccessControl",
1736
+ "ObjCMembers",
1737
+ "ObjC"
1738
+ ],
1739
+ "superclassUsr": "c:objc(cs)NSObject",
1740
+ "inheritsConvenienceInitializers": true,
1741
+ "superclassNames": [
1742
+ "ObjectiveC.NSObject"
1743
+ ],
1744
+ "conformances": [
1745
+ {
1746
+ "kind": "Conformance",
1747
+ "name": "Equatable",
1748
+ "printedName": "Equatable",
1749
+ "usr": "s:SQ",
1750
+ "mangledName": "$sSQ"
1751
+ },
1752
+ {
1753
+ "kind": "Conformance",
1754
+ "name": "Hashable",
1755
+ "printedName": "Hashable",
1756
+ "usr": "s:SH",
1757
+ "mangledName": "$sSH"
1758
+ },
1759
+ {
1760
+ "kind": "Conformance",
1761
+ "name": "CVarArg",
1762
+ "printedName": "CVarArg",
1763
+ "usr": "s:s7CVarArgP",
1764
+ "mangledName": "$ss7CVarArgP"
1765
+ },
1766
+ {
1767
+ "kind": "Conformance",
1768
+ "name": "_KeyValueCodingAndObservingPublishing",
1769
+ "printedName": "_KeyValueCodingAndObservingPublishing",
1770
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
1771
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
1772
+ },
1773
+ {
1774
+ "kind": "Conformance",
1775
+ "name": "_KeyValueCodingAndObserving",
1776
+ "printedName": "_KeyValueCodingAndObserving",
1777
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
1778
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
1779
+ },
1780
+ {
1781
+ "kind": "Conformance",
1782
+ "name": "CustomStringConvertible",
1783
+ "printedName": "CustomStringConvertible",
1784
+ "usr": "s:s23CustomStringConvertibleP",
1785
+ "mangledName": "$ss23CustomStringConvertibleP"
1786
+ },
1787
+ {
1788
+ "kind": "Conformance",
1789
+ "name": "CustomDebugStringConvertible",
1790
+ "printedName": "CustomDebugStringConvertible",
1791
+ "usr": "s:s28CustomDebugStringConvertibleP",
1792
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
1793
+ }
1794
+ ]
1795
+ },
1796
+ {
1797
+ "kind": "Import",
1798
+ "name": "Foundation",
1799
+ "printedName": "Foundation",
1800
+ "declKind": "Import",
1801
+ "moduleName": "CanvasNative",
1802
+ "declAttributes": [
1803
+ "RawDocComment"
1804
+ ]
1805
+ },
1806
+ {
1807
+ "kind": "Import",
1808
+ "name": "CoreVideo",
1809
+ "printedName": "CoreVideo",
1810
+ "declKind": "Import",
1811
+ "moduleName": "CanvasNative"
1812
+ },
1813
+ {
1814
+ "kind": "Import",
1815
+ "name": "AVFoundation",
1816
+ "printedName": "AVFoundation",
1817
+ "declKind": "Import",
1818
+ "moduleName": "CanvasNative"
1819
+ },
1820
+ {
1821
+ "kind": "TypeDecl",
1822
+ "name": "NSCVideoFrame",
1823
+ "printedName": "NSCVideoFrame",
1824
+ "children": [
1825
+ {
1826
+ "kind": "TypeDecl",
1827
+ "name": "NSCVideoFrameFormat",
1828
+ "printedName": "NSCVideoFrameFormat",
1829
+ "children": [
1830
+ {
1831
+ "kind": "Var",
1832
+ "name": "I420",
1833
+ "printedName": "I420",
1834
+ "children": [
1835
+ {
1836
+ "kind": "TypeFunc",
1837
+ "name": "Function",
1838
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1839
+ "children": [
1840
+ {
1841
+ "kind": "TypeNominal",
1842
+ "name": "NSCVideoFrameFormat",
1843
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1844
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
1845
+ },
1846
+ {
1847
+ "kind": "TypeNominal",
1848
+ "name": "Metatype",
1849
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
1850
+ "children": [
1851
+ {
1852
+ "kind": "TypeNominal",
1853
+ "name": "NSCVideoFrameFormat",
1854
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1855
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
1856
+ }
1857
+ ]
1858
+ }
1859
+ ]
1860
+ }
1861
+ ],
1862
+ "declKind": "EnumElement",
1863
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO4I420yA2EmF",
1864
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO4I420yA2EmF",
1865
+ "moduleName": "CanvasNative",
1866
+ "declAttributes": [
1867
+ "ObjC"
1868
+ ],
1869
+ "fixedbinaryorder": 0
1870
+ },
1871
+ {
1872
+ "kind": "Var",
1873
+ "name": "I420A",
1874
+ "printedName": "I420A",
1875
+ "children": [
1876
+ {
1877
+ "kind": "TypeFunc",
1878
+ "name": "Function",
1879
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1880
+ "children": [
1881
+ {
1882
+ "kind": "TypeNominal",
1883
+ "name": "NSCVideoFrameFormat",
1884
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1885
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
1886
+ },
1887
+ {
1888
+ "kind": "TypeNominal",
1889
+ "name": "Metatype",
1890
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
1891
+ "children": [
1892
+ {
1893
+ "kind": "TypeNominal",
1894
+ "name": "NSCVideoFrameFormat",
1895
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1896
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
1897
+ }
1898
+ ]
1899
+ }
1900
+ ]
1901
+ }
1902
+ ],
1903
+ "declKind": "EnumElement",
1904
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO5I420AyA2EmF",
1905
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO5I420AyA2EmF",
1906
+ "moduleName": "CanvasNative",
1907
+ "declAttributes": [
1908
+ "ObjC"
1909
+ ],
1910
+ "fixedbinaryorder": 1
1911
+ },
1912
+ {
1913
+ "kind": "Var",
1914
+ "name": "I422",
1915
+ "printedName": "I422",
1916
+ "children": [
1917
+ {
1918
+ "kind": "TypeFunc",
1919
+ "name": "Function",
1920
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1921
+ "children": [
1922
+ {
1923
+ "kind": "TypeNominal",
1924
+ "name": "NSCVideoFrameFormat",
1925
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1926
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
1927
+ },
1928
+ {
1929
+ "kind": "TypeNominal",
1930
+ "name": "Metatype",
1931
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
1932
+ "children": [
1933
+ {
1934
+ "kind": "TypeNominal",
1935
+ "name": "NSCVideoFrameFormat",
1936
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1937
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
1938
+ }
1939
+ ]
1940
+ }
1941
+ ]
1942
+ }
1943
+ ],
1944
+ "declKind": "EnumElement",
1945
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO4I422yA2EmF",
1946
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO4I422yA2EmF",
1947
+ "moduleName": "CanvasNative",
1948
+ "declAttributes": [
1949
+ "ObjC"
1950
+ ],
1951
+ "fixedbinaryorder": 2
1952
+ },
1953
+ {
1954
+ "kind": "Var",
1955
+ "name": "I444",
1956
+ "printedName": "I444",
1957
+ "children": [
1958
+ {
1959
+ "kind": "TypeFunc",
1960
+ "name": "Function",
1961
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1962
+ "children": [
1963
+ {
1964
+ "kind": "TypeNominal",
1965
+ "name": "NSCVideoFrameFormat",
1966
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1967
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
1968
+ },
1969
+ {
1970
+ "kind": "TypeNominal",
1971
+ "name": "Metatype",
1972
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
1973
+ "children": [
1974
+ {
1975
+ "kind": "TypeNominal",
1976
+ "name": "NSCVideoFrameFormat",
1977
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
1978
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
1979
+ }
1980
+ ]
1981
+ }
1982
+ ]
1983
+ }
1984
+ ],
1985
+ "declKind": "EnumElement",
1986
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO4I444yA2EmF",
1987
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO4I444yA2EmF",
1988
+ "moduleName": "CanvasNative",
1989
+ "declAttributes": [
1990
+ "ObjC"
1991
+ ],
1992
+ "fixedbinaryorder": 3
1993
+ },
1994
+ {
1995
+ "kind": "Var",
1996
+ "name": "NV12",
1997
+ "printedName": "NV12",
1998
+ "children": [
1999
+ {
2000
+ "kind": "TypeFunc",
2001
+ "name": "Function",
2002
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2003
+ "children": [
2004
+ {
2005
+ "kind": "TypeNominal",
2006
+ "name": "NSCVideoFrameFormat",
2007
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2008
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2009
+ },
2010
+ {
2011
+ "kind": "TypeNominal",
2012
+ "name": "Metatype",
2013
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
2014
+ "children": [
2015
+ {
2016
+ "kind": "TypeNominal",
2017
+ "name": "NSCVideoFrameFormat",
2018
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2019
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2020
+ }
2021
+ ]
2022
+ }
2023
+ ]
2024
+ }
2025
+ ],
2026
+ "declKind": "EnumElement",
2027
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO4NV12yA2EmF",
2028
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO4NV12yA2EmF",
2029
+ "moduleName": "CanvasNative",
2030
+ "declAttributes": [
2031
+ "ObjC"
2032
+ ],
2033
+ "fixedbinaryorder": 4
2034
+ },
2035
+ {
2036
+ "kind": "Var",
2037
+ "name": "RGBA",
2038
+ "printedName": "RGBA",
2039
+ "children": [
2040
+ {
2041
+ "kind": "TypeFunc",
2042
+ "name": "Function",
2043
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2044
+ "children": [
2045
+ {
2046
+ "kind": "TypeNominal",
2047
+ "name": "NSCVideoFrameFormat",
2048
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2049
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2050
+ },
2051
+ {
2052
+ "kind": "TypeNominal",
2053
+ "name": "Metatype",
2054
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
2055
+ "children": [
2056
+ {
2057
+ "kind": "TypeNominal",
2058
+ "name": "NSCVideoFrameFormat",
2059
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2060
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2061
+ }
2062
+ ]
2063
+ }
2064
+ ]
2065
+ }
2066
+ ],
2067
+ "declKind": "EnumElement",
2068
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO4RGBAyA2EmF",
2069
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO4RGBAyA2EmF",
2070
+ "moduleName": "CanvasNative",
2071
+ "declAttributes": [
2072
+ "ObjC"
2073
+ ],
2074
+ "fixedbinaryorder": 5
2075
+ },
2076
+ {
2077
+ "kind": "Var",
2078
+ "name": "RGBX",
2079
+ "printedName": "RGBX",
2080
+ "children": [
2081
+ {
2082
+ "kind": "TypeFunc",
2083
+ "name": "Function",
2084
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2085
+ "children": [
2086
+ {
2087
+ "kind": "TypeNominal",
2088
+ "name": "NSCVideoFrameFormat",
2089
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2090
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2091
+ },
2092
+ {
2093
+ "kind": "TypeNominal",
2094
+ "name": "Metatype",
2095
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
2096
+ "children": [
2097
+ {
2098
+ "kind": "TypeNominal",
2099
+ "name": "NSCVideoFrameFormat",
2100
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2101
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2102
+ }
2103
+ ]
2104
+ }
2105
+ ]
2106
+ }
2107
+ ],
2108
+ "declKind": "EnumElement",
2109
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO4RGBXyA2EmF",
2110
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO4RGBXyA2EmF",
2111
+ "moduleName": "CanvasNative",
2112
+ "declAttributes": [
2113
+ "ObjC"
2114
+ ],
2115
+ "fixedbinaryorder": 6
2116
+ },
2117
+ {
2118
+ "kind": "Var",
2119
+ "name": "BGRA",
2120
+ "printedName": "BGRA",
2121
+ "children": [
2122
+ {
2123
+ "kind": "TypeFunc",
2124
+ "name": "Function",
2125
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2126
+ "children": [
2127
+ {
2128
+ "kind": "TypeNominal",
2129
+ "name": "NSCVideoFrameFormat",
2130
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2131
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2132
+ },
2133
+ {
2134
+ "kind": "TypeNominal",
2135
+ "name": "Metatype",
2136
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
2137
+ "children": [
2138
+ {
2139
+ "kind": "TypeNominal",
2140
+ "name": "NSCVideoFrameFormat",
2141
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2142
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2143
+ }
2144
+ ]
2145
+ }
2146
+ ]
2147
+ }
2148
+ ],
2149
+ "declKind": "EnumElement",
2150
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO4BGRAyA2EmF",
2151
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO4BGRAyA2EmF",
2152
+ "moduleName": "CanvasNative",
2153
+ "declAttributes": [
2154
+ "ObjC"
2155
+ ],
2156
+ "fixedbinaryorder": 7
2157
+ },
2158
+ {
2159
+ "kind": "Var",
2160
+ "name": "BGRX",
2161
+ "printedName": "BGRX",
2162
+ "children": [
2163
+ {
2164
+ "kind": "TypeFunc",
2165
+ "name": "Function",
2166
+ "printedName": "(CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type) -> CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2167
+ "children": [
2168
+ {
2169
+ "kind": "TypeNominal",
2170
+ "name": "NSCVideoFrameFormat",
2171
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2172
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2173
+ },
2174
+ {
2175
+ "kind": "TypeNominal",
2176
+ "name": "Metatype",
2177
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat.Type",
2178
+ "children": [
2179
+ {
2180
+ "kind": "TypeNominal",
2181
+ "name": "NSCVideoFrameFormat",
2182
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2183
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2184
+ }
2185
+ ]
2186
+ }
2187
+ ]
2188
+ }
2189
+ ],
2190
+ "declKind": "EnumElement",
2191
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO4BGRXyA2EmF",
2192
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO4BGRXyA2EmF",
2193
+ "moduleName": "CanvasNative",
2194
+ "declAttributes": [
2195
+ "ObjC"
2196
+ ],
2197
+ "fixedbinaryorder": 8
2198
+ },
2199
+ {
2200
+ "kind": "Var",
2201
+ "name": "rawValue",
2202
+ "printedName": "rawValue",
2203
+ "children": [
2204
+ {
2205
+ "kind": "TypeNominal",
2206
+ "name": "UInt32",
2207
+ "printedName": "Swift.UInt32",
2208
+ "usr": "s:s6UInt32V"
2209
+ }
2210
+ ],
2211
+ "declKind": "Var",
2212
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO8rawValues6UInt32Vvp",
2213
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO8rawValues6UInt32Vvp",
2214
+ "moduleName": "CanvasNative",
2215
+ "declAttributes": [
2216
+ "AccessControl"
2217
+ ],
2218
+ "accessors": [
2219
+ {
2220
+ "kind": "Accessor",
2221
+ "name": "Get",
2222
+ "printedName": "Get()",
2223
+ "children": [
2224
+ {
2225
+ "kind": "TypeNominal",
2226
+ "name": "UInt32",
2227
+ "printedName": "Swift.UInt32",
2228
+ "usr": "s:s6UInt32V"
2229
+ }
2230
+ ],
2231
+ "declKind": "Accessor",
2232
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO8rawValues6UInt32Vvg",
2233
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO8rawValues6UInt32Vvg",
2234
+ "moduleName": "CanvasNative",
2235
+ "accessorKind": "get"
2236
+ }
2237
+ ]
2238
+ },
2239
+ {
2240
+ "kind": "Constructor",
2241
+ "name": "init",
2242
+ "printedName": "init(rawValue:)",
2243
+ "children": [
2244
+ {
2245
+ "kind": "TypeNominal",
2246
+ "name": "Optional",
2247
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat?",
2248
+ "children": [
2249
+ {
2250
+ "kind": "TypeNominal",
2251
+ "name": "NSCVideoFrameFormat",
2252
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2253
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2254
+ }
2255
+ ],
2256
+ "usr": "s:Sq"
2257
+ },
2258
+ {
2259
+ "kind": "TypeNominal",
2260
+ "name": "UInt32",
2261
+ "printedName": "Swift.UInt32",
2262
+ "usr": "s:s6UInt32V"
2263
+ }
2264
+ ],
2265
+ "declKind": "Constructor",
2266
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO8rawValueAESgs6UInt32V_tcfc",
2267
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO8rawValueAESgs6UInt32V_tcfc",
2268
+ "moduleName": "CanvasNative",
2269
+ "declAttributes": [
2270
+ "AccessControl"
2271
+ ],
2272
+ "init_kind": "Designated"
2273
+ }
2274
+ ],
2275
+ "declKind": "Enum",
2276
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO",
2277
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC0cD6FormatO",
2278
+ "moduleName": "CanvasNative",
2279
+ "objc_name": "NSCVideoFrameFormat",
2280
+ "declAttributes": [
2281
+ "AccessControl",
2282
+ "ObjC"
2283
+ ],
2284
+ "enumRawTypeName": "Int",
2285
+ "conformances": [
2286
+ {
2287
+ "kind": "Conformance",
2288
+ "name": "Equatable",
2289
+ "printedName": "Equatable",
2290
+ "usr": "s:SQ",
2291
+ "mangledName": "$sSQ"
2292
+ },
2293
+ {
2294
+ "kind": "Conformance",
2295
+ "name": "Hashable",
2296
+ "printedName": "Hashable",
2297
+ "usr": "s:SH",
2298
+ "mangledName": "$sSH"
2299
+ },
2300
+ {
2301
+ "kind": "Conformance",
2302
+ "name": "RawRepresentable",
2303
+ "printedName": "RawRepresentable",
2304
+ "children": [
2305
+ {
2306
+ "kind": "TypeWitness",
2307
+ "name": "RawValue",
2308
+ "printedName": "RawValue",
2309
+ "children": [
2310
+ {
2311
+ "kind": "TypeNominal",
2312
+ "name": "UInt32",
2313
+ "printedName": "Swift.UInt32",
2314
+ "usr": "s:s6UInt32V"
2315
+ }
2316
+ ]
2317
+ }
2318
+ ],
2319
+ "usr": "s:SY",
2320
+ "mangledName": "$sSY"
2321
+ }
2322
+ ]
2323
+ },
2324
+ {
2325
+ "kind": "Var",
2326
+ "name": "pixelBuffer",
2327
+ "printedName": "pixelBuffer",
2328
+ "children": [
2329
+ {
2330
+ "kind": "TypeNominal",
2331
+ "name": "CVBuffer",
2332
+ "printedName": "CoreVideo.CVBuffer",
2333
+ "usr": "c:@T@CVBufferRef"
2334
+ }
2335
+ ],
2336
+ "declKind": "Var",
2337
+ "usr": "s:12CanvasNative13NSCVideoFrameC11pixelBufferSo11CVBufferRefavp",
2338
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC11pixelBufferSo11CVBufferRefavp",
2339
+ "moduleName": "CanvasNative",
2340
+ "declAttributes": [
2341
+ "HasStorage",
2342
+ "AccessControl",
2343
+ "SetterAccess"
2344
+ ],
2345
+ "hasStorage": true,
2346
+ "accessors": [
2347
+ {
2348
+ "kind": "Accessor",
2349
+ "name": "Get",
2350
+ "printedName": "Get()",
2351
+ "children": [
2352
+ {
2353
+ "kind": "TypeNominal",
2354
+ "name": "CVBuffer",
2355
+ "printedName": "CoreVideo.CVBuffer",
2356
+ "usr": "c:@T@CVBufferRef"
2357
+ }
2358
+ ],
2359
+ "declKind": "Accessor",
2360
+ "usr": "s:12CanvasNative13NSCVideoFrameC11pixelBufferSo11CVBufferRefavg",
2361
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC11pixelBufferSo11CVBufferRefavg",
2362
+ "moduleName": "CanvasNative",
2363
+ "implicit": true,
2364
+ "accessorKind": "get"
2365
+ }
2366
+ ]
2367
+ },
2368
+ {
2369
+ "kind": "Var",
2370
+ "name": "timestamp",
2371
+ "printedName": "timestamp",
2372
+ "children": [
2373
+ {
2374
+ "kind": "TypeNominal",
2375
+ "name": "Int64",
2376
+ "printedName": "Swift.Int64",
2377
+ "usr": "s:s5Int64V"
2378
+ }
2379
+ ],
2380
+ "declKind": "Var",
2381
+ "usr": "s:12CanvasNative13NSCVideoFrameC9timestamps5Int64Vvp",
2382
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC9timestamps5Int64Vvp",
2383
+ "moduleName": "CanvasNative",
2384
+ "declAttributes": [
2385
+ "HasStorage",
2386
+ "AccessControl",
2387
+ "SetterAccess"
2388
+ ],
2389
+ "hasStorage": true,
2390
+ "accessors": [
2391
+ {
2392
+ "kind": "Accessor",
2393
+ "name": "Get",
2394
+ "printedName": "Get()",
2395
+ "children": [
2396
+ {
2397
+ "kind": "TypeNominal",
2398
+ "name": "Int64",
2399
+ "printedName": "Swift.Int64",
2400
+ "usr": "s:s5Int64V"
2401
+ }
2402
+ ],
2403
+ "declKind": "Accessor",
2404
+ "usr": "s:12CanvasNative13NSCVideoFrameC9timestamps5Int64Vvg",
2405
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC9timestamps5Int64Vvg",
2406
+ "moduleName": "CanvasNative",
2407
+ "implicit": true,
2408
+ "accessorKind": "get"
2409
+ }
2410
+ ]
2411
+ },
2412
+ {
2413
+ "kind": "Var",
2414
+ "name": "format",
2415
+ "printedName": "format",
2416
+ "children": [
2417
+ {
2418
+ "kind": "TypeNominal",
2419
+ "name": "NSCVideoFrameFormat",
2420
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2421
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2422
+ }
2423
+ ],
2424
+ "declKind": "Var",
2425
+ "usr": "s:12CanvasNative13NSCVideoFrameC6formatAC0cD6FormatOvp",
2426
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC6formatAC0cD6FormatOvp",
2427
+ "moduleName": "CanvasNative",
2428
+ "declAttributes": [
2429
+ "HasStorage",
2430
+ "AccessControl",
2431
+ "SetterAccess"
2432
+ ],
2433
+ "hasStorage": true,
2434
+ "accessors": [
2435
+ {
2436
+ "kind": "Accessor",
2437
+ "name": "Get",
2438
+ "printedName": "Get()",
2439
+ "children": [
2440
+ {
2441
+ "kind": "TypeNominal",
2442
+ "name": "NSCVideoFrameFormat",
2443
+ "printedName": "CanvasNative.NSCVideoFrame.NSCVideoFrameFormat",
2444
+ "usr": "s:12CanvasNative13NSCVideoFrameC0cD6FormatO"
2445
+ }
2446
+ ],
2447
+ "declKind": "Accessor",
2448
+ "usr": "s:12CanvasNative13NSCVideoFrameC6formatAC0cD6FormatOvg",
2449
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC6formatAC0cD6FormatOvg",
2450
+ "moduleName": "CanvasNative",
2451
+ "implicit": true,
2452
+ "accessorKind": "get"
2453
+ }
2454
+ ]
2455
+ },
2456
+ {
2457
+ "kind": "Function",
2458
+ "name": "getCurrentFrame",
2459
+ "printedName": "getCurrentFrame(_:_:)",
2460
+ "children": [
2461
+ {
2462
+ "kind": "TypeNominal",
2463
+ "name": "Optional",
2464
+ "printedName": "CanvasNative.NSCVideoFrame?",
2465
+ "children": [
2466
+ {
2467
+ "kind": "TypeNominal",
2468
+ "name": "NSCVideoFrame",
2469
+ "printedName": "CanvasNative.NSCVideoFrame",
2470
+ "usr": "c:@M@CanvasNative@objc(cs)NSCVideoFrame"
2471
+ }
2472
+ ],
2473
+ "usr": "s:Sq"
2474
+ },
2475
+ {
2476
+ "kind": "TypeNominal",
2477
+ "name": "AVPlayer",
2478
+ "printedName": "AVFoundation.AVPlayer",
2479
+ "usr": "c:objc(cs)AVPlayer"
2480
+ },
2481
+ {
2482
+ "kind": "TypeNominal",
2483
+ "name": "AVPlayerItemVideoOutput",
2484
+ "printedName": "AVFoundation.AVPlayerItemVideoOutput",
2485
+ "usr": "c:objc(cs)AVPlayerItemVideoOutput"
2486
+ }
2487
+ ],
2488
+ "declKind": "Func",
2489
+ "usr": "s:12CanvasNative13NSCVideoFrameC010getCurrentD0yACSgSo8AVPlayerC_So0G15ItemVideoOutputCtKFZ",
2490
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC010getCurrentD0yACSgSo8AVPlayerC_So0G15ItemVideoOutputCtKFZ",
2491
+ "moduleName": "CanvasNative",
2492
+ "static": true,
2493
+ "declAttributes": [
2494
+ "Final",
2495
+ "AccessControl"
2496
+ ],
2497
+ "throwing": true,
2498
+ "funcSelfKind": "NonMutating"
2499
+ },
2500
+ {
2501
+ "kind": "Constructor",
2502
+ "name": "init",
2503
+ "printedName": "init(currentTime:frame:)",
2504
+ "children": [
2505
+ {
2506
+ "kind": "TypeNominal",
2507
+ "name": "NSCVideoFrame",
2508
+ "printedName": "CanvasNative.NSCVideoFrame",
2509
+ "usr": "c:@M@CanvasNative@objc(cs)NSCVideoFrame"
2510
+ },
2511
+ {
2512
+ "kind": "TypeNominal",
2513
+ "name": "CMTime",
2514
+ "printedName": "CoreMedia.CMTime",
2515
+ "usr": "c:@SA@CMTime"
2516
+ },
2517
+ {
2518
+ "kind": "TypeNominal",
2519
+ "name": "CVBuffer",
2520
+ "printedName": "CoreVideo.CVBuffer",
2521
+ "usr": "c:@T@CVBufferRef"
2522
+ }
2523
+ ],
2524
+ "declKind": "Constructor",
2525
+ "usr": "s:12CanvasNative13NSCVideoFrameC11currentTime5frameACSo6CMTimea_So11CVBufferRefatKcfc",
2526
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC11currentTime5frameACSo6CMTimea_So11CVBufferRefatKcfc",
2527
+ "moduleName": "CanvasNative",
2528
+ "declAttributes": [
2529
+ "AccessControl"
2530
+ ],
2531
+ "throwing": true,
2532
+ "init_kind": "Designated"
2533
+ },
2534
+ {
2535
+ "kind": "Constructor",
2536
+ "name": "init",
2537
+ "printedName": "init(buffer:ts:)",
2538
+ "children": [
2539
+ {
2540
+ "kind": "TypeNominal",
2541
+ "name": "NSCVideoFrame",
2542
+ "printedName": "CanvasNative.NSCVideoFrame",
2543
+ "usr": "c:@M@CanvasNative@objc(cs)NSCVideoFrame"
2544
+ },
2545
+ {
2546
+ "kind": "TypeNominal",
2547
+ "name": "CVBuffer",
2548
+ "printedName": "CoreVideo.CVBuffer",
2549
+ "usr": "c:@T@CVBufferRef"
2550
+ },
2551
+ {
2552
+ "kind": "TypeNominal",
2553
+ "name": "Int64",
2554
+ "printedName": "Swift.Int64",
2555
+ "usr": "s:s5Int64V"
2556
+ }
2557
+ ],
2558
+ "declKind": "Constructor",
2559
+ "usr": "s:12CanvasNative13NSCVideoFrameC6buffer2tsACSo11CVBufferRefa_s5Int64VtKcfc",
2560
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC6buffer2tsACSo11CVBufferRefa_s5Int64VtKcfc",
1498
2561
  "moduleName": "CanvasNative",
1499
- "static": true,
1500
2562
  "declAttributes": [
1501
- "Final",
1502
2563
  "AccessControl",
1503
- "ObjC"
2564
+ "RawDocComment"
1504
2565
  ],
1505
- "funcSelfKind": "NonMutating"
2566
+ "throwing": true,
2567
+ "init_kind": "Designated"
1506
2568
  },
1507
2569
  {
1508
2570
  "kind": "Function",
1509
- "name": "handleBase64Image",
1510
- "printedName": "handleBase64Image(_:_:_:_:)",
2571
+ "name": "clone",
2572
+ "printedName": "clone()",
1511
2573
  "children": [
1512
2574
  {
1513
2575
  "kind": "TypeNominal",
1514
- "name": "Void",
1515
- "printedName": "()"
1516
- },
2576
+ "name": "NSCVideoFrame",
2577
+ "printedName": "CanvasNative.NSCVideoFrame",
2578
+ "usr": "c:@M@CanvasNative@objc(cs)NSCVideoFrame"
2579
+ }
2580
+ ],
2581
+ "declKind": "Func",
2582
+ "usr": "s:12CanvasNative13NSCVideoFrameC5cloneACyKF",
2583
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC5cloneACyKF",
2584
+ "moduleName": "CanvasNative",
2585
+ "declAttributes": [
2586
+ "AccessControl"
2587
+ ],
2588
+ "throwing": true,
2589
+ "funcSelfKind": "NonMutating"
2590
+ },
2591
+ {
2592
+ "kind": "Var",
2593
+ "name": "codedWidth",
2594
+ "printedName": "codedWidth",
2595
+ "children": [
1517
2596
  {
1518
2597
  "kind": "TypeNominal",
1519
- "name": "String",
1520
- "printedName": "Swift.String",
1521
- "usr": "s:SS"
1522
- },
2598
+ "name": "Int",
2599
+ "printedName": "Swift.Int",
2600
+ "usr": "s:Si"
2601
+ }
2602
+ ],
2603
+ "declKind": "Var",
2604
+ "usr": "s:12CanvasNative13NSCVideoFrameC10codedWidthSivp",
2605
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC10codedWidthSivp",
2606
+ "moduleName": "CanvasNative",
2607
+ "declAttributes": [
2608
+ "AccessControl"
2609
+ ],
2610
+ "accessors": [
1523
2611
  {
1524
- "kind": "TypeNominal",
1525
- "name": "String",
1526
- "printedName": "Swift.String",
1527
- "usr": "s:SS"
1528
- },
2612
+ "kind": "Accessor",
2613
+ "name": "Get",
2614
+ "printedName": "Get()",
2615
+ "children": [
2616
+ {
2617
+ "kind": "TypeNominal",
2618
+ "name": "Int",
2619
+ "printedName": "Swift.Int",
2620
+ "usr": "s:Si"
2621
+ }
2622
+ ],
2623
+ "declKind": "Accessor",
2624
+ "usr": "s:12CanvasNative13NSCVideoFrameC10codedWidthSivg",
2625
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC10codedWidthSivg",
2626
+ "moduleName": "CanvasNative",
2627
+ "accessorKind": "get"
2628
+ }
2629
+ ]
2630
+ },
2631
+ {
2632
+ "kind": "Var",
2633
+ "name": "codedHeight",
2634
+ "printedName": "codedHeight",
2635
+ "children": [
1529
2636
  {
1530
2637
  "kind": "TypeNominal",
1531
- "name": "String",
1532
- "printedName": "Swift.String",
1533
- "usr": "s:SS"
1534
- },
2638
+ "name": "Int",
2639
+ "printedName": "Swift.Int",
2640
+ "usr": "s:Si"
2641
+ }
2642
+ ],
2643
+ "declKind": "Var",
2644
+ "usr": "s:12CanvasNative13NSCVideoFrameC11codedHeightSivp",
2645
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC11codedHeightSivp",
2646
+ "moduleName": "CanvasNative",
2647
+ "declAttributes": [
2648
+ "AccessControl"
2649
+ ],
2650
+ "accessors": [
1535
2651
  {
1536
- "kind": "TypeFunc",
1537
- "name": "Function",
1538
- "printedName": "(Swift.String?, Swift.String?) -> ()",
2652
+ "kind": "Accessor",
2653
+ "name": "Get",
2654
+ "printedName": "Get()",
1539
2655
  "children": [
1540
2656
  {
1541
2657
  "kind": "TypeNominal",
1542
- "name": "Void",
1543
- "printedName": "()"
1544
- },
1545
- {
1546
- "kind": "TypeNominal",
1547
- "name": "Tuple",
1548
- "printedName": "(Swift.String?, Swift.String?)",
1549
- "children": [
1550
- {
1551
- "kind": "TypeNominal",
1552
- "name": "Optional",
1553
- "printedName": "Swift.String?",
1554
- "children": [
1555
- {
1556
- "kind": "TypeNominal",
1557
- "name": "String",
1558
- "printedName": "Swift.String",
1559
- "usr": "s:SS"
1560
- }
1561
- ],
1562
- "usr": "s:Sq"
1563
- },
1564
- {
1565
- "kind": "TypeNominal",
1566
- "name": "Optional",
1567
- "printedName": "Swift.String?",
1568
- "children": [
1569
- {
1570
- "kind": "TypeNominal",
1571
- "name": "String",
1572
- "printedName": "Swift.String",
1573
- "usr": "s:SS"
1574
- }
1575
- ],
1576
- "usr": "s:Sq"
1577
- }
1578
- ]
2658
+ "name": "Int",
2659
+ "printedName": "Swift.Int",
2660
+ "usr": "s:Si"
1579
2661
  }
1580
- ]
2662
+ ],
2663
+ "declKind": "Accessor",
2664
+ "usr": "s:12CanvasNative13NSCVideoFrameC11codedHeightSivg",
2665
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC11codedHeightSivg",
2666
+ "moduleName": "CanvasNative",
2667
+ "accessorKind": "get"
2668
+ }
2669
+ ]
2670
+ },
2671
+ {
2672
+ "kind": "Var",
2673
+ "name": "codedRect",
2674
+ "printedName": "codedRect",
2675
+ "children": [
2676
+ {
2677
+ "kind": "TypeNominal",
2678
+ "name": "CGRect",
2679
+ "printedName": "CoreFoundation.CGRect",
2680
+ "usr": "c:@S@CGRect"
1581
2681
  }
1582
2682
  ],
1583
- "declKind": "Func",
1584
- "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(cm)handleBase64Image::::",
1585
- "mangledName": "$s12CanvasNative0A7HelpersC17handleBase64ImageyySS_S2SySSSg_AEtctFZ",
2683
+ "declKind": "Var",
2684
+ "usr": "s:12CanvasNative13NSCVideoFrameC9codedRectSo6CGRectVvp",
2685
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC9codedRectSo6CGRectVvp",
1586
2686
  "moduleName": "CanvasNative",
1587
- "static": true,
1588
2687
  "declAttributes": [
1589
- "Final",
1590
- "AccessControl",
1591
- "ObjC"
2688
+ "AccessControl"
1592
2689
  ],
1593
- "funcSelfKind": "NonMutating"
2690
+ "accessors": [
2691
+ {
2692
+ "kind": "Accessor",
2693
+ "name": "Get",
2694
+ "printedName": "Get()",
2695
+ "children": [
2696
+ {
2697
+ "kind": "TypeNominal",
2698
+ "name": "CGRect",
2699
+ "printedName": "CoreFoundation.CGRect",
2700
+ "usr": "c:@S@CGRect"
2701
+ }
2702
+ ],
2703
+ "declKind": "Accessor",
2704
+ "usr": "s:12CanvasNative13NSCVideoFrameC9codedRectSo6CGRectVvg",
2705
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC9codedRectSo6CGRectVvg",
2706
+ "moduleName": "CanvasNative",
2707
+ "accessorKind": "get"
2708
+ }
2709
+ ]
1594
2710
  },
1595
2711
  {
1596
- "kind": "Function",
1597
- "name": "getPixelsPerInchForCurrentDevice",
1598
- "printedName": "getPixelsPerInchForCurrentDevice()",
2712
+ "kind": "Var",
2713
+ "name": "visibleRect",
2714
+ "printedName": "visibleRect",
1599
2715
  "children": [
1600
2716
  {
1601
2717
  "kind": "TypeNominal",
1602
- "name": "String",
1603
- "printedName": "Swift.String",
1604
- "usr": "s:SS"
2718
+ "name": "CGRect",
2719
+ "printedName": "CoreFoundation.CGRect",
2720
+ "usr": "c:@S@CGRect"
1605
2721
  }
1606
2722
  ],
1607
- "declKind": "Func",
1608
- "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(cm)getPixelsPerInchForCurrentDevice",
1609
- "mangledName": "$s12CanvasNative0A7HelpersC32getPixelsPerInchForCurrentDeviceSSyFZ",
2723
+ "declKind": "Var",
2724
+ "usr": "s:12CanvasNative13NSCVideoFrameC11visibleRectSo6CGRectVvp",
2725
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC11visibleRectSo6CGRectVvp",
1610
2726
  "moduleName": "CanvasNative",
1611
- "static": true,
1612
2727
  "declAttributes": [
1613
- "Final",
1614
- "AccessControl",
1615
- "ObjC"
2728
+ "AccessControl"
1616
2729
  ],
1617
- "funcSelfKind": "NonMutating"
2730
+ "accessors": [
2731
+ {
2732
+ "kind": "Accessor",
2733
+ "name": "Get",
2734
+ "printedName": "Get()",
2735
+ "children": [
2736
+ {
2737
+ "kind": "TypeNominal",
2738
+ "name": "CGRect",
2739
+ "printedName": "CoreFoundation.CGRect",
2740
+ "usr": "c:@S@CGRect"
2741
+ }
2742
+ ],
2743
+ "declKind": "Accessor",
2744
+ "usr": "s:12CanvasNative13NSCVideoFrameC11visibleRectSo6CGRectVvg",
2745
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC11visibleRectSo6CGRectVvg",
2746
+ "moduleName": "CanvasNative",
2747
+ "accessorKind": "get"
2748
+ }
2749
+ ]
1618
2750
  },
1619
2751
  {
1620
2752
  "kind": "Constructor",
@@ -1623,14 +2755,14 @@
1623
2755
  "children": [
1624
2756
  {
1625
2757
  "kind": "TypeNominal",
1626
- "name": "CanvasHelpers",
1627
- "printedName": "CanvasNative.CanvasHelpers",
1628
- "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers"
2758
+ "name": "NSCVideoFrame",
2759
+ "printedName": "CanvasNative.NSCVideoFrame",
2760
+ "usr": "c:@M@CanvasNative@objc(cs)NSCVideoFrame"
1629
2761
  }
1630
2762
  ],
1631
2763
  "declKind": "Constructor",
1632
- "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers(im)init",
1633
- "mangledName": "$s12CanvasNative0A7HelpersCACycfc",
2764
+ "usr": "c:@M@CanvasNative@objc(cs)NSCVideoFrame(im)init",
2765
+ "mangledName": "$s12CanvasNative13NSCVideoFrameCACycfc",
1634
2766
  "moduleName": "CanvasNative",
1635
2767
  "overriding": true,
1636
2768
  "implicit": true,
@@ -1644,17 +2776,15 @@
1644
2776
  }
1645
2777
  ],
1646
2778
  "declKind": "Class",
1647
- "usr": "c:@M@CanvasNative@objc(cs)NSSCanvasHelpers",
1648
- "mangledName": "$s12CanvasNative0A7HelpersC",
2779
+ "usr": "c:@M@CanvasNative@objc(cs)NSCVideoFrame",
2780
+ "mangledName": "$s12CanvasNative13NSCVideoFrameC",
1649
2781
  "moduleName": "CanvasNative",
1650
- "objc_name": "NSSCanvasHelpers",
2782
+ "objc_name": "NSCVideoFrame",
1651
2783
  "declAttributes": [
1652
2784
  "AccessControl",
1653
- "ObjCMembers",
1654
2785
  "ObjC"
1655
2786
  ],
1656
2787
  "superclassUsr": "c:objc(cs)NSObject",
1657
- "inheritsConvenienceInitializers": true,
1658
2788
  "superclassNames": [
1659
2789
  "ObjectiveC.NSObject"
1660
2790
  ],
@@ -4116,8 +5246,8 @@
4116
5246
  },
4117
5247
  {
4118
5248
  "kind": "TypeDecl",
4119
- "name": "Utils",
4120
- "printedName": "Utils",
5249
+ "name": "NSCCanvasUtils",
5250
+ "printedName": "NSCCanvasUtils",
4121
5251
  "children": [
4122
5252
  {
4123
5253
  "kind": "Function",
@@ -4140,8 +5270,8 @@
4140
5270
  }
4141
5271
  ],
4142
5272
  "declKind": "Func",
4143
- "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)createTextureCache",
4144
- "mangledName": "$s12CanvasNative5UtilsC18createTextureCacheSo017CVOpenGLESTextureF3RefaSgyFZ",
5273
+ "usr": "c:@M@CanvasNative@objc(cs)NSCCanvasUtils(cm)createTextureCache",
5274
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsC18createTextureCacheSo017CVOpenGLESTextureG3RefaSgyFZ",
4145
5275
  "moduleName": "CanvasNative",
4146
5276
  "static": true,
4147
5277
  "declAttributes": [
@@ -4240,8 +5370,8 @@
4240
5370
  }
4241
5371
  ],
4242
5372
  "declKind": "Func",
4243
- "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)createImage::::::::::",
4244
- "mangledName": "$s12CanvasNative5UtilsC11createImageySo11CVBufferRefaSgSo022CVOpenGLESTextureCacheG0a_AFSo012CFDictionaryG0aSgs6UInt32Vs5Int32VA2p2NSitFZ",
5373
+ "usr": "c:@M@CanvasNative@objc(cs)NSCCanvasUtils(cm)createImage::::::::::",
5374
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsC11createImageySo11CVBufferRefaSgSo022CVOpenGLESTextureCacheH0a_AFSo012CFDictionaryH0aSgs6UInt32Vs5Int32VA2p2NSitFZ",
4245
5375
  "moduleName": "CanvasNative",
4246
5376
  "static": true,
4247
5377
  "declAttributes": [
@@ -4264,8 +5394,8 @@
4264
5394
  }
4265
5395
  ],
4266
5396
  "declKind": "Func",
4267
- "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)setupRender",
4268
- "mangledName": "$s12CanvasNative5UtilsC11setupRenderAA9NSCRenderCyFZ",
5397
+ "usr": "c:@M@CanvasNative@objc(cs)NSCCanvasUtils(cm)setupRender",
5398
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsC11setupRenderAA9NSCRenderCyFZ",
4269
5399
  "moduleName": "CanvasNative",
4270
5400
  "static": true,
4271
5401
  "declAttributes": [
@@ -4328,17 +5458,97 @@
4328
5458
  "usr": "s:Sb"
4329
5459
  }
4330
5460
  ],
4331
- "declKind": "Func",
4332
- "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)drawFrame:::::::",
4333
- "mangledName": "$s12CanvasNative5UtilsC9drawFrameyySo8AVPlayerC_So0F15ItemVideoOutputCSo6CGSizeVAA9NSCRenderCs5Int32VANSbtFZ",
5461
+ "declKind": "Func",
5462
+ "usr": "c:@M@CanvasNative@objc(cs)NSCCanvasUtils(cm)drawFrame:::::::",
5463
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsC9drawFrameyySo8AVPlayerC_So0G15ItemVideoOutputCSo6CGSizeVAA9NSCRenderCs5Int32VANSbtFZ",
5464
+ "moduleName": "CanvasNative",
5465
+ "static": true,
5466
+ "declAttributes": [
5467
+ "Final",
5468
+ "AccessControl",
5469
+ "ObjC"
5470
+ ],
5471
+ "funcSelfKind": "NonMutating"
5472
+ },
5473
+ {
5474
+ "kind": "TypeDecl",
5475
+ "name": "NSCError",
5476
+ "printedName": "NSCError",
5477
+ "children": [
5478
+ {
5479
+ "kind": "Var",
5480
+ "name": "customError",
5481
+ "printedName": "customError",
5482
+ "children": [
5483
+ {
5484
+ "kind": "TypeFunc",
5485
+ "name": "Function",
5486
+ "printedName": "(CanvasNative.NSCCanvasUtils.NSCError.Type) -> (Swift.String) -> CanvasNative.NSCCanvasUtils.NSCError",
5487
+ "children": [
5488
+ {
5489
+ "kind": "TypeFunc",
5490
+ "name": "Function",
5491
+ "printedName": "(Swift.String) -> CanvasNative.NSCCanvasUtils.NSCError",
5492
+ "children": [
5493
+ {
5494
+ "kind": "TypeNominal",
5495
+ "name": "NSCError",
5496
+ "printedName": "CanvasNative.NSCCanvasUtils.NSCError",
5497
+ "usr": "s:12CanvasNative14NSCCanvasUtilsC8NSCErrorO"
5498
+ },
5499
+ {
5500
+ "kind": "TypeNominal",
5501
+ "name": "String",
5502
+ "printedName": "Swift.String",
5503
+ "usr": "s:SS"
5504
+ }
5505
+ ]
5506
+ },
5507
+ {
5508
+ "kind": "TypeNominal",
5509
+ "name": "Metatype",
5510
+ "printedName": "CanvasNative.NSCCanvasUtils.NSCError.Type",
5511
+ "children": [
5512
+ {
5513
+ "kind": "TypeNominal",
5514
+ "name": "NSCError",
5515
+ "printedName": "CanvasNative.NSCCanvasUtils.NSCError",
5516
+ "usr": "s:12CanvasNative14NSCCanvasUtilsC8NSCErrorO"
5517
+ }
5518
+ ]
5519
+ }
5520
+ ]
5521
+ }
5522
+ ],
5523
+ "declKind": "EnumElement",
5524
+ "usr": "s:12CanvasNative14NSCCanvasUtilsC8NSCErrorO11customErroryAESScAEmF",
5525
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsC8NSCErrorO11customErroryAESScAEmF",
5526
+ "moduleName": "CanvasNative"
5527
+ }
5528
+ ],
5529
+ "declKind": "Enum",
5530
+ "usr": "s:12CanvasNative14NSCCanvasUtilsC8NSCErrorO",
5531
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsC8NSCErrorO",
4334
5532
  "moduleName": "CanvasNative",
4335
- "static": true,
4336
5533
  "declAttributes": [
4337
- "Final",
4338
- "AccessControl",
4339
- "ObjC"
5534
+ "AccessControl"
4340
5535
  ],
4341
- "funcSelfKind": "NonMutating"
5536
+ "conformances": [
5537
+ {
5538
+ "kind": "Conformance",
5539
+ "name": "Error",
5540
+ "printedName": "Error",
5541
+ "usr": "s:s5ErrorP",
5542
+ "mangledName": "$ss5ErrorP"
5543
+ },
5544
+ {
5545
+ "kind": "Conformance",
5546
+ "name": "Sendable",
5547
+ "printedName": "Sendable",
5548
+ "usr": "s:s8SendableP",
5549
+ "mangledName": "$ss8SendableP"
5550
+ }
5551
+ ]
4342
5552
  },
4343
5553
  {
4344
5554
  "kind": "Function",
@@ -4364,8 +5574,8 @@
4364
5574
  }
4365
5575
  ],
4366
5576
  "declKind": "Func",
4367
- "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)writeToFile::error:",
4368
- "mangledName": "$s12CanvasNative5UtilsC11writeToFileyySo6NSDataC_SStKFZ",
5577
+ "usr": "c:@M@CanvasNative@objc(cs)NSCCanvasUtils(cm)writeToFile::error:",
5578
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsC11writeToFileyySo6NSDataC_SStKFZ",
4369
5579
  "moduleName": "CanvasNative",
4370
5580
  "static": true,
4371
5581
  "declAttributes": [
@@ -4383,14 +5593,14 @@
4383
5593
  "children": [
4384
5594
  {
4385
5595
  "kind": "TypeNominal",
4386
- "name": "Utils",
4387
- "printedName": "CanvasNative.Utils",
4388
- "usr": "c:@M@CanvasNative@objc(cs)Utils"
5596
+ "name": "NSCCanvasUtils",
5597
+ "printedName": "CanvasNative.NSCCanvasUtils",
5598
+ "usr": "c:@M@CanvasNative@objc(cs)NSCCanvasUtils"
4389
5599
  }
4390
5600
  ],
4391
5601
  "declKind": "Constructor",
4392
- "usr": "c:@M@CanvasNative@objc(cs)Utils(im)init",
4393
- "mangledName": "$s12CanvasNative5UtilsCACycfc",
5602
+ "usr": "c:@M@CanvasNative@objc(cs)NSCCanvasUtils(im)init",
5603
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsCACycfc",
4394
5604
  "moduleName": "CanvasNative",
4395
5605
  "overriding": true,
4396
5606
  "implicit": true,
@@ -4404,10 +5614,10 @@
4404
5614
  }
4405
5615
  ],
4406
5616
  "declKind": "Class",
4407
- "usr": "c:@M@CanvasNative@objc(cs)Utils",
4408
- "mangledName": "$s12CanvasNative5UtilsC",
5617
+ "usr": "c:@M@CanvasNative@objc(cs)NSCCanvasUtils",
5618
+ "mangledName": "$s12CanvasNative14NSCCanvasUtilsC",
4409
5619
  "moduleName": "CanvasNative",
4410
- "objc_name": "Utils",
5620
+ "objc_name": "NSCCanvasUtils",
4411
5621
  "declAttributes": [
4412
5622
  "AccessControl",
4413
5623
  "ObjC"
@@ -5877,6 +7087,95 @@
5877
7087
  ],
5878
7088
  "funcSelfKind": "NonMutating"
5879
7089
  },
7090
+ {
7091
+ "kind": "Function",
7092
+ "name": "loadImageFromPathSync",
7093
+ "printedName": "loadImageFromPathSync(_:_:)",
7094
+ "children": [
7095
+ {
7096
+ "kind": "TypeNominal",
7097
+ "name": "Bool",
7098
+ "printedName": "Swift.Bool",
7099
+ "usr": "s:Sb"
7100
+ },
7101
+ {
7102
+ "kind": "TypeNominal",
7103
+ "name": "Int64",
7104
+ "printedName": "Swift.Int64",
7105
+ "usr": "s:s5Int64V"
7106
+ },
7107
+ {
7108
+ "kind": "TypeNominal",
7109
+ "name": "String",
7110
+ "printedName": "Swift.String",
7111
+ "usr": "s:SS"
7112
+ }
7113
+ ],
7114
+ "declKind": "Func",
7115
+ "usr": "c:@M@CanvasNative@objc(cs)NSCImageAsset(cm)loadImageFromPathSync::",
7116
+ "mangledName": "$s12CanvasNative13NSCImageAssetC21loadImageFromPathSyncySbs5Int64V_SStFZ",
7117
+ "moduleName": "CanvasNative",
7118
+ "static": true,
7119
+ "declAttributes": [
7120
+ "Final",
7121
+ "AccessControl",
7122
+ "ObjC"
7123
+ ],
7124
+ "funcSelfKind": "NonMutating"
7125
+ },
7126
+ {
7127
+ "kind": "Function",
7128
+ "name": "loadImageFromPath",
7129
+ "printedName": "loadImageFromPath(_:_:_:)",
7130
+ "children": [
7131
+ {
7132
+ "kind": "TypeNominal",
7133
+ "name": "Void",
7134
+ "printedName": "()"
7135
+ },
7136
+ {
7137
+ "kind": "TypeNominal",
7138
+ "name": "Int64",
7139
+ "printedName": "Swift.Int64",
7140
+ "usr": "s:s5Int64V"
7141
+ },
7142
+ {
7143
+ "kind": "TypeNominal",
7144
+ "name": "String",
7145
+ "printedName": "Swift.String",
7146
+ "usr": "s:SS"
7147
+ },
7148
+ {
7149
+ "kind": "TypeFunc",
7150
+ "name": "Function",
7151
+ "printedName": "(Swift.Bool) -> ()",
7152
+ "children": [
7153
+ {
7154
+ "kind": "TypeNominal",
7155
+ "name": "Void",
7156
+ "printedName": "()"
7157
+ },
7158
+ {
7159
+ "kind": "TypeNominal",
7160
+ "name": "Bool",
7161
+ "printedName": "Swift.Bool",
7162
+ "usr": "s:Sb"
7163
+ }
7164
+ ]
7165
+ }
7166
+ ],
7167
+ "declKind": "Func",
7168
+ "usr": "c:@M@CanvasNative@objc(cs)NSCImageAsset(cm)loadImageFromPath:::",
7169
+ "mangledName": "$s12CanvasNative13NSCImageAssetC17loadImageFromPathyys5Int64V_SSySbctFZ",
7170
+ "moduleName": "CanvasNative",
7171
+ "static": true,
7172
+ "declAttributes": [
7173
+ "Final",
7174
+ "AccessControl",
7175
+ "ObjC"
7176
+ ],
7177
+ "funcSelfKind": "NonMutating"
7178
+ },
5880
7179
  {
5881
7180
  "kind": "Constructor",
5882
7181
  "name": "init",
@@ -6079,6 +7378,128 @@
6079
7378
  }
6080
7379
  ]
6081
7380
  },
7381
+ {
7382
+ "kind": "TypeDecl",
7383
+ "name": "UIView",
7384
+ "printedName": "UIView",
7385
+ "children": [
7386
+ {
7387
+ "kind": "Function",
7388
+ "name": "getBoundingClientRect",
7389
+ "printedName": "getBoundingClientRect(_:)",
7390
+ "children": [
7391
+ {
7392
+ "kind": "TypeNominal",
7393
+ "name": "Void",
7394
+ "printedName": "()"
7395
+ },
7396
+ {
7397
+ "kind": "TypeNominal",
7398
+ "name": "UnsafeMutableRawPointer",
7399
+ "printedName": "Swift.UnsafeMutableRawPointer",
7400
+ "usr": "s:Sv"
7401
+ }
7402
+ ],
7403
+ "declKind": "Func",
7404
+ "usr": "c:@CM@CanvasNative@@objc(cs)UIView(im)getBoundingClientRect:",
7405
+ "mangledName": "$sSo6UIViewC12CanvasNativeE21getBoundingClientRectyySvF",
7406
+ "moduleName": "CanvasNative",
7407
+ "declAttributes": [
7408
+ "Dynamic",
7409
+ "Custom",
7410
+ "AccessControl",
7411
+ "ObjC"
7412
+ ],
7413
+ "isFromExtension": true,
7414
+ "funcSelfKind": "NonMutating"
7415
+ }
7416
+ ],
7417
+ "declKind": "Class",
7418
+ "usr": "c:objc(cs)UIView",
7419
+ "moduleName": "UIKit",
7420
+ "isOpen": true,
7421
+ "intro_iOS": "2.0",
7422
+ "objc_name": "UIView",
7423
+ "declAttributes": [
7424
+ "Available",
7425
+ "ObjC",
7426
+ "NonSendable",
7427
+ "Custom",
7428
+ "Dynamic"
7429
+ ],
7430
+ "superclassUsr": "c:objc(cs)UIResponder",
7431
+ "isExternal": true,
7432
+ "inheritsConvenienceInitializers": true,
7433
+ "superclassNames": [
7434
+ "UIKit.UIResponder",
7435
+ "ObjectiveC.NSObject"
7436
+ ],
7437
+ "conformances": [
7438
+ {
7439
+ "kind": "Conformance",
7440
+ "name": "Equatable",
7441
+ "printedName": "Equatable",
7442
+ "usr": "s:SQ",
7443
+ "mangledName": "$sSQ"
7444
+ },
7445
+ {
7446
+ "kind": "Conformance",
7447
+ "name": "Hashable",
7448
+ "printedName": "Hashable",
7449
+ "usr": "s:SH",
7450
+ "mangledName": "$sSH"
7451
+ },
7452
+ {
7453
+ "kind": "Conformance",
7454
+ "name": "CVarArg",
7455
+ "printedName": "CVarArg",
7456
+ "usr": "s:s7CVarArgP",
7457
+ "mangledName": "$ss7CVarArgP"
7458
+ },
7459
+ {
7460
+ "kind": "Conformance",
7461
+ "name": "_KeyValueCodingAndObservingPublishing",
7462
+ "printedName": "_KeyValueCodingAndObservingPublishing",
7463
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
7464
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
7465
+ },
7466
+ {
7467
+ "kind": "Conformance",
7468
+ "name": "_KeyValueCodingAndObserving",
7469
+ "printedName": "_KeyValueCodingAndObserving",
7470
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
7471
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
7472
+ },
7473
+ {
7474
+ "kind": "Conformance",
7475
+ "name": "CustomStringConvertible",
7476
+ "printedName": "CustomStringConvertible",
7477
+ "usr": "s:s23CustomStringConvertibleP",
7478
+ "mangledName": "$ss23CustomStringConvertibleP"
7479
+ },
7480
+ {
7481
+ "kind": "Conformance",
7482
+ "name": "CustomDebugStringConvertible",
7483
+ "printedName": "CustomDebugStringConvertible",
7484
+ "usr": "s:s28CustomDebugStringConvertibleP",
7485
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
7486
+ },
7487
+ {
7488
+ "kind": "Conformance",
7489
+ "name": "UITraitChangeObservable",
7490
+ "printedName": "UITraitChangeObservable",
7491
+ "usr": "s:5UIKit23UITraitChangeObservableP",
7492
+ "mangledName": "$s5UIKit23UITraitChangeObservableP"
7493
+ },
7494
+ {
7495
+ "kind": "Conformance",
7496
+ "name": "__DefaultCustomPlaygroundQuickLookable",
7497
+ "printedName": "__DefaultCustomPlaygroundQuickLookable",
7498
+ "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
7499
+ "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
7500
+ }
7501
+ ]
7502
+ },
6082
7503
  {
6083
7504
  "kind": "TypeDecl",
6084
7505
  "name": "GLKView",
@@ -6210,6 +7631,69 @@
6210
7631
  "json_format_version": 8
6211
7632
  },
6212
7633
  "ConstValues": [
7634
+ {
7635
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7636
+ "kind": "IntegerLiteral",
7637
+ "offset": 403,
7638
+ "length": 5,
7639
+ "value": "1"
7640
+ },
7641
+ {
7642
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7643
+ "kind": "IntegerLiteral",
7644
+ "offset": 425,
7645
+ "length": 4,
7646
+ "value": "2"
7647
+ },
7648
+ {
7649
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7650
+ "kind": "IntegerLiteral",
7651
+ "offset": 446,
7652
+ "length": 4,
7653
+ "value": "3"
7654
+ },
7655
+ {
7656
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7657
+ "kind": "IntegerLiteral",
7658
+ "offset": 467,
7659
+ "length": 4,
7660
+ "value": "4"
7661
+ },
7662
+ {
7663
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7664
+ "kind": "IntegerLiteral",
7665
+ "offset": 488,
7666
+ "length": 4,
7667
+ "value": "5"
7668
+ },
7669
+ {
7670
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7671
+ "kind": "IntegerLiteral",
7672
+ "offset": 509,
7673
+ "length": 4,
7674
+ "value": "6"
7675
+ },
7676
+ {
7677
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7678
+ "kind": "IntegerLiteral",
7679
+ "offset": 530,
7680
+ "length": 4,
7681
+ "value": "7"
7682
+ },
7683
+ {
7684
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7685
+ "kind": "IntegerLiteral",
7686
+ "offset": 551,
7687
+ "length": 4,
7688
+ "value": "8"
7689
+ },
7690
+ {
7691
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvasVideoFrame.swift",
7692
+ "kind": "StringLiteral",
7693
+ "offset": 190,
7694
+ "length": 13,
7695
+ "value": "\"CanvasNative.NSCVideoFrame\""
7696
+ },
6213
7697
  {
6214
7698
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6215
7699
  "kind": "IntegerLiteral",
@@ -6241,175 +7725,175 @@
6241
7725
  {
6242
7726
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6243
7727
  "kind": "IntegerLiteral",
6244
- "offset": 1644,
7728
+ "offset": 1524,
6245
7729
  "length": 1,
6246
7730
  "value": "0"
6247
7731
  },
6248
7732
  {
6249
7733
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6250
7734
  "kind": "IntegerLiteral",
6251
- "offset": 1650,
7735
+ "offset": 1530,
6252
7736
  "length": 1,
6253
7737
  "value": "0"
6254
7738
  },
6255
7739
  {
6256
7740
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6257
7741
  "kind": "IntegerLiteral",
6258
- "offset": 1660,
7742
+ "offset": 1540,
6259
7743
  "length": 1,
6260
7744
  "value": "1"
6261
7745
  },
6262
7746
  {
6263
7747
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6264
7748
  "kind": "IntegerLiteral",
6265
- "offset": 1671,
7749
+ "offset": 1551,
6266
7750
  "length": 1,
6267
7751
  "value": "1"
6268
7752
  },
6269
7753
  {
6270
7754
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6271
7755
  "kind": "IntegerLiteral",
6272
- "offset": 1728,
7756
+ "offset": 1608,
6273
7757
  "length": 1,
6274
7758
  "value": "0"
6275
7759
  },
6276
7760
  {
6277
7761
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6278
7762
  "kind": "IntegerLiteral",
6279
- "offset": 3696,
7763
+ "offset": 3589,
6280
7764
  "length": 1,
6281
7765
  "value": "1"
6282
7766
  },
6283
7767
  {
6284
7768
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6285
7769
  "kind": "BooleanLiteral",
6286
- "offset": 3599,
7770
+ "offset": 3492,
6287
7771
  "length": 4,
6288
7772
  "value": "true"
6289
7773
  },
6290
7774
  {
6291
7775
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6292
7776
  "kind": "IntegerLiteral",
6293
- "offset": 3875,
7777
+ "offset": 3768,
6294
7778
  "length": 1,
6295
7779
  "value": "0"
6296
7780
  },
6297
7781
  {
6298
7782
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6299
7783
  "kind": "IntegerLiteral",
6300
- "offset": 3933,
7784
+ "offset": 3826,
6301
7785
  "length": 1,
6302
7786
  "value": "0"
6303
7787
  },
6304
7788
  {
6305
7789
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6306
7790
  "kind": "IntegerLiteral",
6307
- "offset": 3986,
7791
+ "offset": 3879,
6308
7792
  "length": 1,
6309
7793
  "value": "0"
6310
7794
  },
6311
7795
  {
6312
7796
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6313
7797
  "kind": "BooleanLiteral",
6314
- "offset": 4017,
7798
+ "offset": 3910,
6315
7799
  "length": 5,
6316
7800
  "value": "false"
6317
7801
  },
6318
7802
  {
6319
7803
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6320
7804
  "kind": "BooleanLiteral",
6321
- "offset": 5290,
7805
+ "offset": 5183,
6322
7806
  "length": 4,
6323
7807
  "value": "true"
6324
7808
  },
6325
7809
  {
6326
7810
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6327
7811
  "kind": "BooleanLiteral",
6328
- "offset": 5324,
7812
+ "offset": 5217,
6329
7813
  "length": 4,
6330
7814
  "value": "true"
6331
7815
  },
6332
7816
  {
6333
7817
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6334
7818
  "kind": "BooleanLiteral",
6335
- "offset": 5354,
7819
+ "offset": 5247,
6336
7820
  "length": 4,
6337
7821
  "value": "true"
6338
7822
  },
6339
7823
  {
6340
7824
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6341
7825
  "kind": "BooleanLiteral",
6342
- "offset": 5407,
7826
+ "offset": 5300,
6343
7827
  "length": 5,
6344
7828
  "value": "false"
6345
7829
  },
6346
7830
  {
6347
7831
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6348
7832
  "kind": "IntegerLiteral",
6349
- "offset": 5449,
7833
+ "offset": 5342,
6350
7834
  "length": 1,
6351
7835
  "value": "0"
6352
7836
  },
6353
7837
  {
6354
7838
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6355
7839
  "kind": "BooleanLiteral",
6356
- "offset": 5489,
7840
+ "offset": 5382,
6357
7841
  "length": 4,
6358
7842
  "value": "true"
6359
7843
  },
6360
7844
  {
6361
7845
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6362
7846
  "kind": "BooleanLiteral",
6363
- "offset": 5535,
7847
+ "offset": 5428,
6364
7848
  "length": 5,
6365
7849
  "value": "false"
6366
7850
  },
6367
7851
  {
6368
7852
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6369
7853
  "kind": "BooleanLiteral",
6370
- "offset": 5568,
7854
+ "offset": 5461,
6371
7855
  "length": 5,
6372
7856
  "value": "false"
6373
7857
  },
6374
7858
  {
6375
7859
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6376
7860
  "kind": "BooleanLiteral",
6377
- "offset": 5608,
7861
+ "offset": 5501,
6378
7862
  "length": 5,
6379
7863
  "value": "false"
6380
7864
  },
6381
7865
  {
6382
7866
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6383
7867
  "kind": "BooleanLiteral",
6384
- "offset": 5646,
7868
+ "offset": 5539,
6385
7869
  "length": 5,
6386
7870
  "value": "false"
6387
7871
  },
6388
7872
  {
6389
7873
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6390
7874
  "kind": "BooleanLiteral",
6391
- "offset": 14715,
7875
+ "offset": 14804,
6392
7876
  "length": 5,
6393
7877
  "value": "false"
6394
7878
  },
6395
7879
  {
6396
7880
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6397
7881
  "kind": "BooleanLiteral",
6398
- "offset": 15150,
7882
+ "offset": 15239,
6399
7883
  "length": 5,
6400
7884
  "value": "false"
6401
7885
  },
6402
7886
  {
6403
7887
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6404
7888
  "kind": "IntegerLiteral",
6405
- "offset": 15196,
7889
+ "offset": 15290,
6406
7890
  "length": 3,
6407
7891
  "value": "300"
6408
7892
  },
6409
7893
  {
6410
7894
  "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/NSCCanvas.swift",
6411
7895
  "kind": "IntegerLiteral",
6412
- "offset": 15373,
7896
+ "offset": 15467,
6413
7897
  "length": 3,
6414
7898
  "value": "150"
6415
7899
  },
@@ -6526,9 +8010,9 @@
6526
8010
  "value": "\"NSCImageBitmapQueue\""
6527
8011
  },
6528
8012
  {
6529
- "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/Utils.swift",
8013
+ "filePath": "\/Users\/triniwiz\/Documents\/GitHub\/canvas\/packages\/canvas\/src-native\/canvas-ios\/NSCCanvasUtils.swift",
6530
8014
  "kind": "IntegerLiteral",
6531
- "offset": 242,
8015
+ "offset": 269,
6532
8016
  "length": 1,
6533
8017
  "value": "4"
6534
8018
  },