mtl-rs 0.1.12

Rust bindings for Apple's Metal API
use objc2::{Encode, Encoding, RefEncode};

/// Attachment store action (from `MTLStoreAction`).
#[repr(u64)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum MTLStoreAction {
    DontCare = 0,
    Store = 1,
    MultisampleResolve = 2,
    StoreAndMultisampleResolve = 3,
    Unknown = 4,
    CustomSampleDepthStore = 5,
}

unsafe impl Encode for MTLStoreAction {
    const ENCODING: Encoding = u64::ENCODING;
}

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