File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
framework-crates/objc2-metal/src Expand file tree Collapse file tree 2 files changed +4
-4
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -36,15 +36,15 @@ extern crate alloc;
36
36
#[ cfg( feature = "std" ) ]
37
37
extern crate std;
38
38
39
+ #[ cfg( feature = "MTLAccelerationStructureTypes" ) ]
40
+ mod acceleration_structure_types;
39
41
#[ cfg( feature = "MTLCaptureManager" ) ]
40
42
mod capture;
41
43
#[ cfg( feature = "MTLCounters" ) ]
42
44
mod counters;
43
45
#[ cfg( feature = "MTLDevice" ) ]
44
46
mod device;
45
47
mod generated;
46
- #[ cfg( feature = "MTLAccelerationStructureTypes" ) ]
47
- mod packed;
48
48
#[ cfg( feature = "unstable-private" ) ]
49
49
mod private;
50
50
#[ cfg( feature = "MTLRasterizationRate" ) ]
@@ -57,14 +57,14 @@ mod texture;
57
57
#[ cfg( feature = "MTLTypes" ) ]
58
58
mod types;
59
59
60
+ #[ cfg( feature = "MTLAccelerationStructureTypes" ) ]
61
+ pub use self :: acceleration_structure_types:: MTLPackedFloat3 ;
60
62
#[ cfg( feature = "MTLCounters" ) ]
61
63
pub use self :: counters:: * ;
62
64
#[ cfg( feature = "MTLDevice" ) ]
63
65
pub use self :: device:: * ;
64
66
#[ allow( unused_imports, unreachable_pub) ]
65
67
pub use self :: generated:: * ;
66
- #[ cfg( feature = "MTLAccelerationStructureTypes" ) ]
67
- pub use self :: packed:: MTLPackedFloat3 ;
68
68
#[ cfg( feature = "unstable-private" ) ]
69
69
pub use self :: private:: MTLDevicePrivate ;
70
70
#[ cfg( feature = "MTLResource" ) ]
You can’t perform that action at this time.
0 commit comments