mtl-rs 0.1.10

Rust bindings for Apple's Metal API
1
2
3
4
5
6
7
8
9
use objc2::extern_protocol;
use objc2_foundation::NSObjectProtocol;

extern_protocol!(
    /// Container of logs emitted by Metal (bridged from `MTLLogContainer`).
    ///
    /// Availability: macOS 11.0+, iOS 14.0+
    pub unsafe trait MTLLogContainer: NSObjectProtocol {}
);