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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
/// [Apple's documentation](https://developer.apple.com/documentation/metal/mtlattributestridestatic?language=objc)
pub static MTLAttributeStrideStatic: NSUInteger = NSUIntegerMax as _;
extern_protocol!(
/// MTLArgumentEncoder encodes buffer, texture, sampler, and constant data into a buffer.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/metal/mtlargumentencoder?language=objc)
pub unsafe trait MTLArgumentEncoder: NSObjectProtocol {
#[cfg(feature = "MTLDevice")]
/// The device this argument encoder was created against.
#[unsafe(method(device))]
#[unsafe(method_family = none)]
fn device(&self) -> Retained<ProtocolObject<dyn MTLDevice>>;
/// A string to help identify this object.
#[unsafe(method(label))]
#[unsafe(method_family = none)]
fn label(&self) -> Option<Retained<NSString>>;
/// Setter for [`label`][Self::label].
///
/// This is [copied][objc2_foundation::NSCopying::copy] when set.
#[unsafe(method(setLabel:))]
#[unsafe(method_family = none)]
fn setLabel(&self, label: Option<&NSString>);
/// The number of bytes required to store the encoded resource bindings.
#[unsafe(method(encodedLength))]
#[unsafe(method_family = none)]
fn encodedLength(&self) -> NSUInteger;
/// The alignment in bytes required to store the encoded resource bindings.
#[unsafe(method(alignment))]
#[unsafe(method_family = none)]
fn alignment(&self) -> NSUInteger;
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLBuffer",
feature = "MTLResource"
))]
/// Sets the destination buffer and offset at which the arguments will be encoded.
///
/// # Safety
///
/// - `argument_buffer` may need to be synchronized.
/// - `argument_buffer` may be unretained, you must ensure it is kept alive while in use.
/// - `argument_buffer` contents should be of the correct type.
/// - `offset` might not be bounds-checked.
#[unsafe(method(setArgumentBuffer:offset:))]
#[unsafe(method_family = none)]
unsafe fn setArgumentBuffer_offset(
&self,
argument_buffer: Option<&ProtocolObject<dyn MTLBuffer>>,
offset: NSUInteger,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLBuffer",
feature = "MTLResource"
))]
/// Sets the destination buffer, starting offset and specific array element arguments will be encoded into. arrayElement represents
/// the desired element of IAB array targetted by encoding
///
/// # Safety
///
/// - `argument_buffer` may need to be synchronized.
/// - `argument_buffer` may be unretained, you must ensure it is kept alive while in use.
/// - `argument_buffer` contents should be of the correct type.
/// - `startOffset` might not be bounds-checked.
#[unsafe(method(setArgumentBuffer:startOffset:arrayElement:))]
#[unsafe(method_family = none)]
unsafe fn setArgumentBuffer_startOffset_arrayElement(
&self,
argument_buffer: Option<&ProtocolObject<dyn MTLBuffer>>,
start_offset: NSUInteger,
array_element: NSUInteger,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLBuffer",
feature = "MTLResource"
))]
/// Set a buffer at the given bind point index.
///
/// # Safety
///
/// - `buffer` may need to be synchronized.
/// - `buffer` may be unretained, you must ensure it is kept alive while in use.
/// - `buffer` contents should be of the correct type.
/// - `offset` might not be bounds-checked.
/// - `index` might not be bounds-checked.
#[unsafe(method(setBuffer:offset:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setBuffer_offset_atIndex(
&self,
buffer: Option<&ProtocolObject<dyn MTLBuffer>>,
offset: NSUInteger,
index: NSUInteger,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLBuffer",
feature = "MTLResource"
))]
/// Set an array of buffers at the given bind point index range.
///
/// # Safety
///
/// - `buffers` must be a valid pointer.
/// - `offsets` might not be bounds-checked.
/// - `offsets` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setBuffers:offsets:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setBuffers_offsets_withRange(
&self,
buffers: NonNull<*const ProtocolObject<dyn MTLBuffer>>,
offsets: NonNull<NSUInteger>,
range: NSRange,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLResource",
feature = "MTLTexture"
))]
/// Set a texture at the given bind point index.
///
/// # Safety
///
/// - `texture` may need to be synchronized.
/// - `texture` may be unretained, you must ensure it is kept alive while in use.
/// - `index` might not be bounds-checked.
#[unsafe(method(setTexture:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setTexture_atIndex(
&self,
texture: Option<&ProtocolObject<dyn MTLTexture>>,
index: NSUInteger,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLResource",
feature = "MTLTexture"
))]
/// Set an array of textures at the given bind point index range.
///
/// # Safety
///
/// - `textures` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setTextures:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setTextures_withRange(
&self,
textures: NonNull<*const ProtocolObject<dyn MTLTexture>>,
range: NSRange,
);
#[cfg(feature = "MTLSampler")]
/// Set a sampler at the given bind point index.
///
/// # Safety
///
/// `index` might not be bounds-checked.
#[unsafe(method(setSamplerState:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setSamplerState_atIndex(
&self,
sampler: Option<&ProtocolObject<dyn MTLSamplerState>>,
index: NSUInteger,
);
#[cfg(feature = "MTLSampler")]
/// Set an array of samplers at the given bind point index range.
///
/// # Safety
///
/// - `samplers` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setSamplerStates:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setSamplerStates_withRange(
&self,
samplers: NonNull<*const ProtocolObject<dyn MTLSamplerState>>,
range: NSRange,
);
/// Returns a pointer to the constant data at the given bind point index.
///
/// # Safety
///
/// `index` might not be bounds-checked.
#[unsafe(method(constantDataAtIndex:))]
#[unsafe(method_family = none)]
unsafe fn constantDataAtIndex(&self, index: NSUInteger) -> NonNull<c_void>;
#[cfg(all(feature = "MTLAllocation", feature = "MTLRenderPipeline"))]
/// Sets a render pipeline state at a given bind point index
///
/// # Safety
///
/// `index` might not be bounds-checked.
#[unsafe(method(setRenderPipelineState:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setRenderPipelineState_atIndex(
&self,
pipeline: Option<&ProtocolObject<dyn MTLRenderPipelineState>>,
index: NSUInteger,
);
#[cfg(all(feature = "MTLAllocation", feature = "MTLRenderPipeline"))]
/// Set an array of render pipeline states at a given bind point index range
///
/// # Safety
///
/// - `pipelines` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setRenderPipelineStates:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setRenderPipelineStates_withRange(
&self,
pipelines: NonNull<*const ProtocolObject<dyn MTLRenderPipelineState>>,
range: NSRange,
);
#[cfg(all(feature = "MTLAllocation", feature = "MTLComputePipeline"))]
/// Sets a compute pipeline state at a given bind point index
///
/// # Safety
///
/// `index` might not be bounds-checked.
#[unsafe(method(setComputePipelineState:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setComputePipelineState_atIndex(
&self,
pipeline: Option<&ProtocolObject<dyn MTLComputePipelineState>>,
index: NSUInteger,
);
#[cfg(all(feature = "MTLAllocation", feature = "MTLComputePipeline"))]
/// Set an array of compute pipeline states at a given bind point index range
///
/// # Safety
///
/// - `pipelines` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setComputePipelineStates:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setComputePipelineStates_withRange(
&self,
pipelines: NonNull<*const ProtocolObject<dyn MTLComputePipelineState>>,
range: NSRange,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLIndirectCommandBuffer",
feature = "MTLResource"
))]
/// Sets an indirect command buffer at a given bind point index
///
/// # Safety
///
/// - `indirect_command_buffer` may need to be synchronized.
/// - `indirect_command_buffer` may be unretained, you must ensure it is kept alive while in use.
/// - `index` might not be bounds-checked.
#[unsafe(method(setIndirectCommandBuffer:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setIndirectCommandBuffer_atIndex(
&self,
indirect_command_buffer: Option<&ProtocolObject<dyn MTLIndirectCommandBuffer>>,
index: NSUInteger,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLIndirectCommandBuffer",
feature = "MTLResource"
))]
/// Set an array of indirect command buffers at the given bind point index range.
///
/// # Safety
///
/// - `buffers` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setIndirectCommandBuffers:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setIndirectCommandBuffers_withRange(
&self,
buffers: NonNull<*const ProtocolObject<dyn MTLIndirectCommandBuffer>>,
range: NSRange,
);
#[cfg(all(
feature = "MTLAccelerationStructure",
feature = "MTLAllocation",
feature = "MTLResource"
))]
/// # Safety
///
/// - `acceleration_structure` may need to be synchronized.
/// - `acceleration_structure` may be unretained, you must ensure it is kept alive while in use.
/// - `index` might not be bounds-checked.
#[unsafe(method(setAccelerationStructure:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setAccelerationStructure_atIndex(
&self,
acceleration_structure: Option<&ProtocolObject<dyn MTLAccelerationStructure>>,
index: NSUInteger,
);
/// Returns a pointer to a new MTLArgumentEncoder that can be used to encode the an argument buffer
/// in the buffer associated with a given index.
/// Returns nil if the resource at the given index is not an argument buffer.
///
/// # Safety
///
/// `index` might not be bounds-checked.
#[unsafe(method(newArgumentEncoderForBufferAtIndex:))]
#[unsafe(method_family = new)]
unsafe fn newArgumentEncoderForBufferAtIndex(
&self,
index: NSUInteger,
) -> Option<Retained<ProtocolObject<dyn MTLArgumentEncoder>>>;
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLResource",
feature = "MTLVisibleFunctionTable"
))]
/// Set a visible function table at the given buffer index
///
/// # Safety
///
/// - `visible_function_table` may need to be synchronized.
/// - `visible_function_table` may be unretained, you must ensure it is kept alive while in use.
/// - `index` might not be bounds-checked.
#[unsafe(method(setVisibleFunctionTable:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setVisibleFunctionTable_atIndex(
&self,
visible_function_table: Option<&ProtocolObject<dyn MTLVisibleFunctionTable>>,
index: NSUInteger,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLResource",
feature = "MTLVisibleFunctionTable"
))]
/// Set visible function tables at the given buffer index range
///
/// # Safety
///
/// - `visible_function_tables` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setVisibleFunctionTables:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setVisibleFunctionTables_withRange(
&self,
visible_function_tables: NonNull<*const ProtocolObject<dyn MTLVisibleFunctionTable>>,
range: NSRange,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLIntersectionFunctionTable",
feature = "MTLResource"
))]
/// Set an intersection function table at the given buffer index
///
/// # Safety
///
/// - `intersection_function_table` may need to be synchronized.
/// - `intersection_function_table` may be unretained, you must ensure it is kept alive while in use.
/// - `index` might not be bounds-checked.
#[unsafe(method(setIntersectionFunctionTable:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setIntersectionFunctionTable_atIndex(
&self,
intersection_function_table: Option<&ProtocolObject<dyn MTLIntersectionFunctionTable>>,
index: NSUInteger,
);
#[cfg(all(
feature = "MTLAllocation",
feature = "MTLIntersectionFunctionTable",
feature = "MTLResource"
))]
/// Set intersection function tables at the given buffer index range
///
/// # Safety
///
/// - `intersection_function_tables` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setIntersectionFunctionTables:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setIntersectionFunctionTables_withRange(
&self,
intersection_function_tables: NonNull<
*const ProtocolObject<dyn MTLIntersectionFunctionTable>,
>,
range: NSRange,
);
#[cfg(feature = "MTLDepthStencil")]
/// Sets a depth stencil state at a given bind point index
///
/// # Safety
///
/// `index` might not be bounds-checked.
#[unsafe(method(setDepthStencilState:atIndex:))]
#[unsafe(method_family = none)]
unsafe fn setDepthStencilState_atIndex(
&self,
depth_stencil_state: Option<&ProtocolObject<dyn MTLDepthStencilState>>,
index: NSUInteger,
);
#[cfg(feature = "MTLDepthStencil")]
/// Sets an array of depth stencil states at a given buffer index range
///
/// # Safety
///
/// - `depth_stencil_states` must be a valid pointer.
/// - `range` might not be bounds-checked.
#[unsafe(method(setDepthStencilStates:withRange:))]
#[unsafe(method_family = none)]
unsafe fn setDepthStencilStates_withRange(
&self,
depth_stencil_states: NonNull<*const ProtocolObject<dyn MTLDepthStencilState>>,
range: NSRange,
);
}
);