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
use objc2::{
extern_class, extern_conformance, extern_methods,
rc::{Allocated, Retained},
runtime::{NSObject, ProtocolObject},
};
use objc2_foundation::{CopyingHelper, NSCopying, NSObjectProtocol};
use crate::{MTLAccelerationStructureGeometryDescriptor, MTLAttributeFormat, MTLBuffer, MTLIndexType};
extern_class!(
/// Acceleration structure geometry descriptor describing geometry
/// made of curve primitives
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/metal/mtlaccelerationstructurecurvegeometrydescriptor?language=objc)
#[unsafe(super(MTLAccelerationStructureGeometryDescriptor, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct MTLAccelerationStructureCurveGeometryDescriptor;
);
extern_conformance!(
unsafe impl NSCopying for MTLAccelerationStructureCurveGeometryDescriptor {}
);
unsafe impl CopyingHelper for MTLAccelerationStructureCurveGeometryDescriptor {
type Result = Self;
}
extern_conformance!(
unsafe impl NSObjectProtocol for MTLAccelerationStructureCurveGeometryDescriptor {}
);
impl MTLAccelerationStructureCurveGeometryDescriptor {
extern_methods!(
/// Buffer containing curve control points. Each control point must
/// be of the format specified by the control point format. Must not be
/// nil when the acceleration structure is built.
#[unsafe(method(controlPointBuffer))]
#[unsafe(method_family = none)]
pub fn control_point_buffer(&self) -> Option<Retained<ProtocolObject<dyn MTLBuffer>>>;
/// Setter for [`controlPointBuffer`][Self::controlPointBuffer].
#[unsafe(method(setControlPointBuffer:))]
#[unsafe(method_family = none)]
pub fn set_control_point_buffer(
&self,
control_point_buffer: Option<&ProtocolObject<dyn MTLBuffer>>,
);
/// Control point buffer offset. Must be a multiple of the control
/// point format's element size and must be aligned to the platform's
/// buffer offset alignment.
#[unsafe(method(controlPointBufferOffset))]
#[unsafe(method_family = none)]
pub fn control_point_buffer_offset(&self) -> usize;
/// Setter for [`controlPointBufferOffset`][Self::controlPointBufferOffset].
#[unsafe(method(setControlPointBufferOffset:))]
#[unsafe(method_family = none)]
pub fn set_control_point_buffer_offset(
&self,
control_point_buffer_offset: usize,
);
/// Number of control points in the control point buffer
#[unsafe(method(controlPointCount))]
#[unsafe(method_family = none)]
pub fn control_point_count(&self) -> usize;
/// Setter for [`controlPointCount`][Self::controlPointCount].
#[unsafe(method(setControlPointCount:))]
#[unsafe(method_family = none)]
pub fn set_control_point_count(
&self,
control_point_count: usize,
);
/// Stride, in bytes, between control points in the control point
/// buffer. Must be a multiple of the control point format's element size
/// and must be at least the control point format's size. Defaults to 0
/// bytes, indicating that the control points are tightly packed.
#[unsafe(method(controlPointStride))]
#[unsafe(method_family = none)]
pub fn control_point_stride(&self) -> usize;
/// Setter for [`controlPointStride`][Self::controlPointStride].
#[unsafe(method(setControlPointStride:))]
#[unsafe(method_family = none)]
pub fn set_control_point_stride(
&self,
control_point_stride: usize,
);
/// Format of the control points in the control point buffer.
/// Defaults to MTLAttributeFormatFloat3 (packed).
#[unsafe(method(controlPointFormat))]
#[unsafe(method_family = none)]
pub fn control_point_format(&self) -> MTLAttributeFormat;
/// Setter for [`controlPointFormat`][Self::controlPointFormat].
#[unsafe(method(setControlPointFormat:))]
#[unsafe(method_family = none)]
pub fn set_control_point_format(
&self,
control_point_format: MTLAttributeFormat,
);
/// Buffer containing the curve radius for each control point. Each
/// radius must be of the type specified by the radius format. Each radius
/// must be at least zero. Must not be nil when the acceleration structure
/// is built.
#[unsafe(method(radiusBuffer))]
#[unsafe(method_family = none)]
pub fn radius_buffer(&self) -> Option<Retained<ProtocolObject<dyn MTLBuffer>>>;
/// Setter for [`radiusBuffer`][Self::radiusBuffer].
#[unsafe(method(setRadiusBuffer:))]
#[unsafe(method_family = none)]
pub fn set_radius_buffer(
&self,
radius_buffer: Option<&ProtocolObject<dyn MTLBuffer>>,
);
/// Radius buffer offset. Must be a multiple of the radius format
/// size and must be aligned to the platform's buffer offset alignment.
#[unsafe(method(radiusBufferOffset))]
#[unsafe(method_family = none)]
pub fn radius_buffer_offset(&self) -> usize;
/// Setter for [`radiusBufferOffset`][Self::radiusBufferOffset].
#[unsafe(method(setRadiusBufferOffset:))]
#[unsafe(method_family = none)]
pub fn set_radius_buffer_offset(
&self,
radius_buffer_offset: usize,
);
/// Format of the radii in the radius buffer. Defaults to
/// MTLAttributeFormatFloat.
#[unsafe(method(radiusFormat))]
#[unsafe(method_family = none)]
pub fn radius_format(&self) -> MTLAttributeFormat;
/// Setter for [`radiusFormat`][Self::radiusFormat].
#[unsafe(method(setRadiusFormat:))]
#[unsafe(method_family = none)]
pub fn set_radius_format(
&self,
radius_format: MTLAttributeFormat,
);
/// Stride, in bytes, between radii in the radius buffer. Must be
/// a multiple of the radius format size. Defaults to 0 bytes, indicating
/// that the radii are tightly packed.
#[unsafe(method(radiusStride))]
#[unsafe(method_family = none)]
pub fn radius_stride(&self) -> usize;
/// Setter for [`radiusStride`][Self::radiusStride].
#[unsafe(method(setRadiusStride:))]
#[unsafe(method_family = none)]
pub fn set_radius_stride(
&self,
radius_stride: usize,
);
/// Index buffer containing references to control points in the control
/// point buffer. Must not be nil when the acceleration structure is built.
#[unsafe(method(indexBuffer))]
#[unsafe(method_family = none)]
pub fn index_buffer(&self) -> Option<Retained<ProtocolObject<dyn MTLBuffer>>>;
/// Setter for [`indexBuffer`][Self::indexBuffer].
#[unsafe(method(setIndexBuffer:))]
#[unsafe(method_family = none)]
pub fn set_index_buffer(
&self,
index_buffer: Option<&ProtocolObject<dyn MTLBuffer>>,
);
/// Index buffer offset. Must be a multiple of the index data type
/// size and must be aligned to both the index data type's alignment and
/// the platform's buffer offset alignment.
#[unsafe(method(indexBufferOffset))]
#[unsafe(method_family = none)]
pub fn index_buffer_offset(&self) -> usize;
/// Setter for [`indexBufferOffset`][Self::indexBufferOffset].
#[unsafe(method(setIndexBufferOffset:))]
#[unsafe(method_family = none)]
pub fn set_index_buffer_offset(
&self,
index_buffer_offset: usize,
);
/// Index type
#[unsafe(method(indexType))]
#[unsafe(method_family = none)]
pub fn index_type(&self) -> MTLIndexType;
/// Setter for [`indexType`][Self::indexType].
#[unsafe(method(setIndexType:))]
#[unsafe(method_family = none)]
pub fn set_index_type(
&self,
index_type: MTLIndexType,
);
/// Number of curve segments
#[unsafe(method(segmentCount))]
#[unsafe(method_family = none)]
pub fn segment_count(&self) -> usize;
/// Setter for [`segmentCount`][Self::segmentCount].
#[unsafe(method(setSegmentCount:))]
#[unsafe(method_family = none)]
pub fn set_segment_count(
&self,
segment_count: usize,
);
/// Number of control points per curve segment. Must be 2, 3, or 4.
#[unsafe(method(segmentControlPointCount))]
#[unsafe(method_family = none)]
pub fn segment_control_point_count(&self) -> usize;
/// Setter for [`segmentControlPointCount`][Self::segmentControlPointCount].
#[unsafe(method(setSegmentControlPointCount:))]
#[unsafe(method_family = none)]
pub fn set_segment_control_point_count(
&self,
segment_control_point_count: usize,
);
/// Curve type. Defaults to MTLCurveTypeRound.
#[unsafe(method(curveType))]
#[unsafe(method_family = none)]
pub fn curve_type(&self) -> crate::MTLCurveType;
/// Setter for [`curveType`][Self::curveType].
#[unsafe(method(setCurveType:))]
#[unsafe(method_family = none)]
pub fn set_curve_type(
&self,
curve_type: crate::MTLCurveType,
);
/// Curve basis. Defaults to MTLCurveBasisBSpline.
#[unsafe(method(curveBasis))]
#[unsafe(method_family = none)]
pub fn curve_basis(&self) -> crate::MTLCurveBasis;
/// Setter for [`curveBasis`][Self::curveBasis].
#[unsafe(method(setCurveBasis:))]
#[unsafe(method_family = none)]
pub fn set_curve_basis(
&self,
curve_basis: crate::MTLCurveBasis,
);
/// Type of curve end caps. Defaults to MTLCurveEndCapsNone.
#[unsafe(method(curveEndCaps))]
#[unsafe(method_family = none)]
pub fn curve_end_caps(&self) -> crate::MTLCurveEndCaps;
/// Setter for [`curveEndCaps`][Self::curveEndCaps].
#[unsafe(method(setCurveEndCaps:))]
#[unsafe(method_family = none)]
pub fn set_curve_end_caps(
&self,
curve_end_caps: crate::MTLCurveEndCaps,
);
#[unsafe(method(descriptor))]
#[unsafe(method_family = none)]
pub fn descriptor() -> Retained<Self>;
);
}
/// Methods declared on superclass `NSObject`.
impl MTLAccelerationStructureCurveGeometryDescriptor {
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>;
);
}