objc2-metal 0.3.2

Bindings to the Metal framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

/// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlindextype?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct MTLIndexType(pub NSUInteger);
impl MTLIndexType {
    #[doc(alias = "MTLIndexTypeUInt16")]
    pub const UInt16: Self = Self(0);
    #[doc(alias = "MTLIndexTypeUInt32")]
    pub const UInt32: Self = Self(1);
}

unsafe impl Encode for MTLIndexType {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for MTLIndexType {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// The type of a resource binding.
///
///
/// This binding represents a buffer.
///
///
/// This binding represents threadgroup memory.
///
///
/// This binding represents a texture.
///
///
/// This binding represents a sampler.
///
///
/// This binding represents an image block data.
///
///
/// This binding represents an image block.
///
///
/// This binding represents a visible function table object.
///
///
/// This binding represents a primitive acceleration structure object.
///
///
/// This binding represents an instance acceleration structure object.
///
///
/// This binding represents an intersection function table object.
///
///
/// This binding represents an object payload.
///
///
/// This binding represents a tensor object.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/metal/mtlbindingtype?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct MTLBindingType(pub NSInteger);
impl MTLBindingType {
    #[doc(alias = "MTLBindingTypeBuffer")]
    pub const Buffer: Self = Self(0);
    #[doc(alias = "MTLBindingTypeThreadgroupMemory")]
    pub const ThreadgroupMemory: Self = Self(1);
    #[doc(alias = "MTLBindingTypeTexture")]
    pub const Texture: Self = Self(2);
    #[doc(alias = "MTLBindingTypeSampler")]
    pub const Sampler: Self = Self(3);
    #[doc(alias = "MTLBindingTypeImageblockData")]
    pub const ImageblockData: Self = Self(16);
    #[doc(alias = "MTLBindingTypeImageblock")]
    pub const Imageblock: Self = Self(17);
    #[doc(alias = "MTLBindingTypeVisibleFunctionTable")]
    pub const VisibleFunctionTable: Self = Self(24);
    #[doc(alias = "MTLBindingTypePrimitiveAccelerationStructure")]
    pub const PrimitiveAccelerationStructure: Self = Self(25);
    #[doc(alias = "MTLBindingTypeInstanceAccelerationStructure")]
    pub const InstanceAccelerationStructure: Self = Self(26);
    #[doc(alias = "MTLBindingTypeIntersectionFunctionTable")]
    pub const IntersectionFunctionTable: Self = Self(27);
    #[doc(alias = "MTLBindingTypeObjectPayload")]
    pub const ObjectPayload: Self = Self(34);
    #[doc(alias = "MTLBindingTypeTensor")]
    pub const Tensor: Self = Self(37);
}

unsafe impl Encode for MTLBindingType {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for MTLBindingType {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// The type for an input to a MTLRenderPipelineState or a MTLComputePipelineState
///
///
/// This input is a MTLBuffer
///
///
/// This input is a pointer to the threadgroup memory.
///
///
/// This input is a MTLTexture.
///
///
/// This input is a sampler.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/metal/mtlargumenttype?language=objc)
// NS_ENUM
#[deprecated]
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct MTLArgumentType(pub NSUInteger);
impl MTLArgumentType {
    #[doc(alias = "MTLArgumentTypeBuffer")]
    #[deprecated]
    pub const Buffer: Self = Self(0);
    #[doc(alias = "MTLArgumentTypeThreadgroupMemory")]
    #[deprecated]
    pub const ThreadgroupMemory: Self = Self(1);
    #[doc(alias = "MTLArgumentTypeTexture")]
    #[deprecated]
    pub const Texture: Self = Self(2);
    #[doc(alias = "MTLArgumentTypeSampler")]
    #[deprecated]
    pub const Sampler: Self = Self(3);
    #[doc(alias = "MTLArgumentTypeImageblockData")]
    pub const ImageblockData: Self = Self(16);
    #[doc(alias = "MTLArgumentTypeImageblock")]
    pub const Imageblock: Self = Self(17);
    #[doc(alias = "MTLArgumentTypeVisibleFunctionTable")]
    pub const VisibleFunctionTable: Self = Self(24);
    #[doc(alias = "MTLArgumentTypePrimitiveAccelerationStructure")]
    pub const PrimitiveAccelerationStructure: Self = Self(25);
    #[doc(alias = "MTLArgumentTypeInstanceAccelerationStructure")]
    pub const InstanceAccelerationStructure: Self = Self(26);
    #[doc(alias = "MTLArgumentTypeIntersectionFunctionTable")]
    pub const IntersectionFunctionTable: Self = Self(27);
}

unsafe impl Encode for MTLArgumentType {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for MTLArgumentType {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlbindingaccess?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct MTLBindingAccess(pub NSUInteger);
impl MTLBindingAccess {
    #[doc(alias = "MTLBindingAccessReadOnly")]
    pub const ReadOnly: Self = Self(0);
    #[doc(alias = "MTLBindingAccessReadWrite")]
    pub const ReadWrite: Self = Self(1);
    #[doc(alias = "MTLBindingAccessWriteOnly")]
    pub const WriteOnly: Self = Self(2);
    #[deprecated]
    pub const MTLArgumentAccessReadOnly: Self = Self(MTLBindingAccess::ReadOnly.0);
    #[deprecated]
    pub const MTLArgumentAccessReadWrite: Self = Self(MTLBindingAccess::ReadWrite.0);
    #[deprecated]
    pub const MTLArgumentAccessWriteOnly: Self = Self(MTLBindingAccess::WriteOnly.0);
}

unsafe impl Encode for MTLBindingAccess {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for MTLBindingAccess {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlargumentaccess?language=objc)
#[deprecated]
pub type MTLArgumentAccess = MTLBindingAccess;

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtltype?language=objc)
    #[unsafe(super(NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct MTLType;
);

extern_conformance!(
    unsafe impl NSObjectProtocol for MTLType {}
);

impl MTLType {
    extern_methods!(
        #[cfg(feature = "MTLDataType")]
        #[unsafe(method(dataType))]
        #[unsafe(method_family = none)]
        pub fn dataType(&self) -> MTLDataType;
    );
}

/// Methods declared on superclass `NSObject`.
impl MTLType {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for MTLType {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlstructmember?language=objc)
    #[unsafe(super(NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct MTLStructMember;
);

extern_conformance!(
    unsafe impl NSObjectProtocol for MTLStructMember {}
);

impl MTLStructMember {
    extern_methods!(
        #[unsafe(method(name))]
        #[unsafe(method_family = none)]
        pub fn name(&self) -> Retained<NSString>;

        #[unsafe(method(offset))]
        #[unsafe(method_family = none)]
        pub fn offset(&self) -> NSUInteger;

        #[cfg(feature = "MTLDataType")]
        #[unsafe(method(dataType))]
        #[unsafe(method_family = none)]
        pub fn dataType(&self) -> MTLDataType;

        #[unsafe(method(structType))]
        #[unsafe(method_family = none)]
        pub fn structType(&self) -> Option<Retained<MTLStructType>>;

        #[unsafe(method(arrayType))]
        #[unsafe(method_family = none)]
        pub fn arrayType(&self) -> Option<Retained<MTLArrayType>>;

        #[unsafe(method(textureReferenceType))]
        #[unsafe(method_family = none)]
        pub fn textureReferenceType(&self) -> Option<Retained<MTLTextureReferenceType>>;

        #[unsafe(method(pointerType))]
        #[unsafe(method_family = none)]
        pub fn pointerType(&self) -> Option<Retained<MTLPointerType>>;

        /// Provides a description of the underlying tensor type when this struct member holds a tensor.
        ///
        /// - Returns: A description of the tensor type that this struct member holds, or `nil` if this struct member doesn't hold a tensor.
        #[unsafe(method(tensorReferenceType))]
        #[unsafe(method_family = none)]
        pub fn tensorReferenceType(&self) -> Option<Retained<MTLTensorReferenceType>>;

        #[unsafe(method(argumentIndex))]
        #[unsafe(method_family = none)]
        pub fn argumentIndex(&self) -> NSUInteger;
    );
}

/// Methods declared on superclass `NSObject`.
impl MTLStructMember {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for MTLStructMember {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlstructtype?language=objc)
    #[unsafe(super(MTLType, NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct MTLStructType;
);

extern_conformance!(
    unsafe impl NSObjectProtocol for MTLStructType {}
);

impl MTLStructType {
    extern_methods!(
        #[unsafe(method(members))]
        #[unsafe(method_family = none)]
        pub fn members(&self) -> Retained<NSArray<MTLStructMember>>;

        #[unsafe(method(memberByName:))]
        #[unsafe(method_family = none)]
        pub fn memberByName(&self, name: &NSString) -> Option<Retained<MTLStructMember>>;
    );
}

/// Methods declared on superclass `NSObject`.
impl MTLStructType {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for MTLStructType {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlarraytype?language=objc)
    #[unsafe(super(MTLType, NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct MTLArrayType;
);

extern_conformance!(
    unsafe impl NSObjectProtocol for MTLArrayType {}
);

impl MTLArrayType {
    extern_methods!(
        #[cfg(feature = "MTLDataType")]
        #[unsafe(method(elementType))]
        #[unsafe(method_family = none)]
        pub fn elementType(&self) -> MTLDataType;

        #[unsafe(method(arrayLength))]
        #[unsafe(method_family = none)]
        pub fn arrayLength(&self) -> NSUInteger;

        #[unsafe(method(stride))]
        #[unsafe(method_family = none)]
        pub fn stride(&self) -> NSUInteger;

        #[unsafe(method(argumentIndexStride))]
        #[unsafe(method_family = none)]
        pub fn argumentIndexStride(&self) -> NSUInteger;

        #[unsafe(method(elementStructType))]
        #[unsafe(method_family = none)]
        pub fn elementStructType(&self) -> Option<Retained<MTLStructType>>;

        #[unsafe(method(elementArrayType))]
        #[unsafe(method_family = none)]
        pub fn elementArrayType(&self) -> Option<Retained<MTLArrayType>>;

        #[unsafe(method(elementTextureReferenceType))]
        #[unsafe(method_family = none)]
        pub fn elementTextureReferenceType(&self) -> Option<Retained<MTLTextureReferenceType>>;

        #[unsafe(method(elementPointerType))]
        #[unsafe(method_family = none)]
        pub fn elementPointerType(&self) -> Option<Retained<MTLPointerType>>;

        /// Provides a description of the underlying tensor type when this array holds tensors as its elements.
        ///
        /// - Returns: A description of the tensor type that this array holds, or `nil` if this struct member doesn't hold a tensor.
        #[unsafe(method(elementTensorReferenceType))]
        #[unsafe(method_family = none)]
        pub fn elementTensorReferenceType(&self) -> Option<Retained<MTLTensorReferenceType>>;
    );
}

/// Methods declared on superclass `NSObject`.
impl MTLArrayType {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for MTLArrayType {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlpointertype?language=objc)
    #[unsafe(super(MTLType, NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct MTLPointerType;
);

extern_conformance!(
    unsafe impl NSObjectProtocol for MTLPointerType {}
);

impl MTLPointerType {
    extern_methods!(
        #[cfg(feature = "MTLDataType")]
        #[unsafe(method(elementType))]
        #[unsafe(method_family = none)]
        pub fn elementType(&self) -> MTLDataType;

        #[unsafe(method(access))]
        #[unsafe(method_family = none)]
        pub fn access(&self) -> MTLBindingAccess;

        #[unsafe(method(alignment))]
        #[unsafe(method_family = none)]
        pub fn alignment(&self) -> NSUInteger;

        #[unsafe(method(dataSize))]
        #[unsafe(method_family = none)]
        pub fn dataSize(&self) -> NSUInteger;

        #[unsafe(method(elementIsArgumentBuffer))]
        #[unsafe(method_family = none)]
        pub fn elementIsArgumentBuffer(&self) -> bool;

        #[unsafe(method(elementStructType))]
        #[unsafe(method_family = none)]
        pub fn elementStructType(&self) -> Option<Retained<MTLStructType>>;

        #[unsafe(method(elementArrayType))]
        #[unsafe(method_family = none)]
        pub fn elementArrayType(&self) -> Option<Retained<MTLArrayType>>;
    );
}

/// Methods declared on superclass `NSObject`.
impl MTLPointerType {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for MTLPointerType {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtltexturereferencetype?language=objc)
    #[unsafe(super(MTLType, NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct MTLTextureReferenceType;
);

extern_conformance!(
    unsafe impl NSObjectProtocol for MTLTextureReferenceType {}
);

impl MTLTextureReferenceType {
    extern_methods!(
        #[cfg(feature = "MTLDataType")]
        #[unsafe(method(textureDataType))]
        #[unsafe(method_family = none)]
        pub fn textureDataType(&self) -> MTLDataType;

        #[cfg(feature = "MTLTexture")]
        #[unsafe(method(textureType))]
        #[unsafe(method_family = none)]
        pub fn textureType(&self) -> MTLTextureType;

        #[unsafe(method(access))]
        #[unsafe(method_family = none)]
        pub fn access(&self) -> MTLBindingAccess;

        #[unsafe(method(isDepthTexture))]
        #[unsafe(method_family = none)]
        pub fn isDepthTexture(&self) -> bool;
    );
}

/// Methods declared on superclass `NSObject`.
impl MTLTextureReferenceType {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for MTLTextureReferenceType {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}

extern_class!(
    /// An object that represents a tensor in the shading language in a struct or array.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/metal/mtltensorreferencetype?language=objc)
    #[unsafe(super(MTLType, NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct MTLTensorReferenceType;
);

extern_conformance!(
    unsafe impl NSObjectProtocol for MTLTensorReferenceType {}
);

impl MTLTensorReferenceType {
    extern_methods!(
        #[cfg(feature = "MTLTensor")]
        /// The underlying data format of the tensor.
        #[unsafe(method(tensorDataType))]
        #[unsafe(method_family = none)]
        pub fn tensorDataType(&self) -> MTLTensorDataType;

        #[cfg(feature = "MTLDataType")]
        /// The data format you use for indexing into the tensor.
        #[unsafe(method(indexType))]
        #[unsafe(method_family = none)]
        pub fn indexType(&self) -> MTLDataType;

        #[cfg(feature = "MTLTensor")]
        /// The array of sizes, in elements, one for each dimension of this tensor.
        ///
        /// Because shader-bound tensors have dynamic extents, the ``MTLTensorExtents/rank`` of `dimensions` corresponds to the rank the shader function specifies, and ``MTLTensorExtents/extentsAtDimensionIndex:`` always returns a value of -1.
        #[unsafe(method(dimensions))]
        #[unsafe(method_family = none)]
        pub fn dimensions(&self) -> Option<Retained<MTLTensorExtents>>;

        /// A value that represents the read/write permissions of the tensor.
        #[unsafe(method(access))]
        #[unsafe(method_family = none)]
        pub fn access(&self) -> MTLBindingAccess;
    );
}

/// Methods declared on superclass `NSObject`.
impl MTLTensorReferenceType {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for MTLTensorReferenceType {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}

extern_class!(
    /// MTLArgument
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/metal/mtlargument?language=objc)
    #[unsafe(super(NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[deprecated]
    pub struct MTLArgument;
);

unsafe impl Send for MTLArgument {}

unsafe impl Sync for MTLArgument {}

extern_conformance!(
    unsafe impl NSObjectProtocol for MTLArgument {}
);

impl MTLArgument {
    extern_methods!(
        #[deprecated]
        #[unsafe(method(name))]
        #[unsafe(method_family = none)]
        pub fn name(&self) -> Retained<NSString>;

        #[deprecated]
        #[unsafe(method(type))]
        #[unsafe(method_family = none)]
        pub fn r#type(&self) -> MTLArgumentType;

        #[deprecated]
        #[unsafe(method(access))]
        #[unsafe(method_family = none)]
        pub fn access(&self) -> MTLBindingAccess;

        #[deprecated]
        #[unsafe(method(index))]
        #[unsafe(method_family = none)]
        pub fn index(&self) -> NSUInteger;

        #[deprecated]
        #[unsafe(method(isActive))]
        #[unsafe(method_family = none)]
        pub fn isActive(&self) -> bool;

        #[deprecated]
        #[unsafe(method(bufferAlignment))]
        #[unsafe(method_family = none)]
        pub fn bufferAlignment(&self) -> NSUInteger;

        #[deprecated]
        #[unsafe(method(bufferDataSize))]
        #[unsafe(method_family = none)]
        pub fn bufferDataSize(&self) -> NSUInteger;

        #[cfg(feature = "MTLDataType")]
        #[deprecated]
        #[unsafe(method(bufferDataType))]
        #[unsafe(method_family = none)]
        pub fn bufferDataType(&self) -> MTLDataType;

        #[deprecated]
        #[unsafe(method(bufferStructType))]
        #[unsafe(method_family = none)]
        pub fn bufferStructType(&self) -> Option<Retained<MTLStructType>>;

        #[unsafe(method(bufferPointerType))]
        #[unsafe(method_family = none)]
        pub fn bufferPointerType(&self) -> Option<Retained<MTLPointerType>>;

        #[deprecated]
        #[unsafe(method(threadgroupMemoryAlignment))]
        #[unsafe(method_family = none)]
        pub fn threadgroupMemoryAlignment(&self) -> NSUInteger;

        #[deprecated]
        #[unsafe(method(threadgroupMemoryDataSize))]
        #[unsafe(method_family = none)]
        pub fn threadgroupMemoryDataSize(&self) -> NSUInteger;

        #[cfg(feature = "MTLTexture")]
        #[deprecated]
        #[unsafe(method(textureType))]
        #[unsafe(method_family = none)]
        pub fn textureType(&self) -> MTLTextureType;

        #[cfg(feature = "MTLDataType")]
        #[deprecated]
        #[unsafe(method(textureDataType))]
        #[unsafe(method_family = none)]
        pub fn textureDataType(&self) -> MTLDataType;

        #[unsafe(method(isDepthTexture))]
        #[unsafe(method_family = none)]
        pub fn isDepthTexture(&self) -> bool;

        #[unsafe(method(arrayLength))]
        #[unsafe(method_family = none)]
        pub fn arrayLength(&self) -> NSUInteger;
    );
}

/// Methods declared on superclass `NSObject`.
impl MTLArgument {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for MTLArgument {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}

extern_protocol!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlbinding?language=objc)
    pub unsafe trait MTLBinding: NSObjectProtocol + Send + Sync {
        #[unsafe(method(name))]
        #[unsafe(method_family = none)]
        fn name(&self) -> Retained<NSString>;

        #[unsafe(method(type))]
        #[unsafe(method_family = none)]
        fn r#type(&self) -> MTLBindingType;

        #[unsafe(method(access))]
        #[unsafe(method_family = none)]
        fn access(&self) -> MTLBindingAccess;

        #[unsafe(method(index))]
        #[unsafe(method_family = none)]
        fn index(&self) -> NSUInteger;

        #[unsafe(method(isUsed))]
        #[unsafe(method_family = none)]
        fn isUsed(&self) -> bool;

        #[unsafe(method(isArgument))]
        #[unsafe(method_family = none)]
        fn isArgument(&self) -> bool;
    }
);

extern_protocol!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlbufferbinding?language=objc)
    pub unsafe trait MTLBufferBinding: MTLBinding {
        #[unsafe(method(bufferAlignment))]
        #[unsafe(method_family = none)]
        fn bufferAlignment(&self) -> NSUInteger;

        #[unsafe(method(bufferDataSize))]
        #[unsafe(method_family = none)]
        fn bufferDataSize(&self) -> NSUInteger;

        #[cfg(feature = "MTLDataType")]
        #[unsafe(method(bufferDataType))]
        #[unsafe(method_family = none)]
        fn bufferDataType(&self) -> MTLDataType;

        #[unsafe(method(bufferStructType))]
        #[unsafe(method_family = none)]
        fn bufferStructType(&self) -> Option<Retained<MTLStructType>>;

        #[unsafe(method(bufferPointerType))]
        #[unsafe(method_family = none)]
        fn bufferPointerType(&self) -> Option<Retained<MTLPointerType>>;
    }
);

extern_protocol!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlthreadgroupbinding?language=objc)
    pub unsafe trait MTLThreadgroupBinding: MTLBinding {
        #[unsafe(method(threadgroupMemoryAlignment))]
        #[unsafe(method_family = none)]
        fn threadgroupMemoryAlignment(&self) -> NSUInteger;

        #[unsafe(method(threadgroupMemoryDataSize))]
        #[unsafe(method_family = none)]
        fn threadgroupMemoryDataSize(&self) -> NSUInteger;
    }
);

extern_protocol!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtltexturebinding?language=objc)
    pub unsafe trait MTLTextureBinding: MTLBinding {
        #[cfg(feature = "MTLTexture")]
        #[unsafe(method(textureType))]
        #[unsafe(method_family = none)]
        fn textureType(&self) -> MTLTextureType;

        #[cfg(feature = "MTLDataType")]
        #[unsafe(method(textureDataType))]
        #[unsafe(method_family = none)]
        fn textureDataType(&self) -> MTLDataType;

        #[unsafe(method(isDepthTexture))]
        #[unsafe(method_family = none)]
        fn isDepthTexture(&self) -> bool;

        #[unsafe(method(arrayLength))]
        #[unsafe(method_family = none)]
        fn arrayLength(&self) -> NSUInteger;
    }
);

extern_protocol!(
    /// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlobjectpayloadbinding?language=objc)
    pub unsafe trait MTLObjectPayloadBinding: MTLBinding {
        #[unsafe(method(objectPayloadAlignment))]
        #[unsafe(method_family = none)]
        fn objectPayloadAlignment(&self) -> NSUInteger;

        #[unsafe(method(objectPayloadDataSize))]
        #[unsafe(method_family = none)]
        fn objectPayloadDataSize(&self) -> NSUInteger;
    }
);

extern_protocol!(
    /// An object that represents a tensor bound to a graphics or compute function or a machine learning function.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/metal/mtltensorbinding?language=objc)
    pub unsafe trait MTLTensorBinding: MTLBinding {
        #[cfg(feature = "MTLTensor")]
        /// The underlying data format of this tensor.
        #[unsafe(method(tensorDataType))]
        #[unsafe(method_family = none)]
        fn tensorDataType(&self) -> MTLTensorDataType;

        #[cfg(feature = "MTLDataType")]
        /// The data format you use for indexing into the tensor.
        #[unsafe(method(indexType))]
        #[unsafe(method_family = none)]
        fn indexType(&self) -> MTLDataType;

        #[cfg(feature = "MTLTensor")]
        /// The array of sizes, in elements, one for each dimension of this tensor.
        ///
        /// Because shader-bound tensors have dynamic extents, if this tensor is shader bound, the ``MTLTensorExtents/rank`` of `dimensions` corresponds to the rank the shader function specifies, and ``MTLTensorExtents/extentsAtDimensionIndex:`` always returns a value of -1.
        /// In the case of functions used with machine learning pipelines, `dimensions` corresponds to the default shape, if you provide one. Otherwise, it's `nil` in the case of an undefined shape.
        #[unsafe(method(dimensions))]
        #[unsafe(method_family = none)]
        fn dimensions(&self) -> Option<Retained<MTLTensorExtents>>;
    }
);