objc2-metal 0.3.2

Bindings to the Metal framework
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;

use crate::*;

/// A struct representing a range of a Metal buffer. The offset into the buffer is included in the address.
/// The length is generally optional, which a value of (uint64_t)-1 representing the range from the given address to
/// the end of the buffer. However, providing the length can enable more accurate API validation, especially when
/// sub-allocating ranges of a buffer.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/metal/mtl4bufferrange?language=objc)
#[cfg(feature = "MTLGPUAddress")]
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct MTL4BufferRange {
    /// Buffer address returned by the gpuAddress property of an MTLBuffer plus any offset into the buffer
    pub bufferAddress: MTLGPUAddress,
    /// Length of the region which begins at the given address. If the length is not known, a value of
    /// (uint64_t)-1 represents the range from the given address to the end of the buffer.
    pub length: u64,
}

#[cfg(feature = "MTLGPUAddress")]
unsafe impl Encode for MTL4BufferRange {
    const ENCODING: Encoding = Encoding::Struct(
        "MTL4BufferRange",
        &[<MTLGPUAddress>::ENCODING, <u64>::ENCODING],
    );
}

#[cfg(feature = "MTLGPUAddress")]
unsafe impl RefEncode for MTL4BufferRange {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

#[cfg(feature = "MTLGPUAddress")]
impl MTL4BufferRange {
    // TODO: pub fn MTL4BufferRangeMake(buffer_address: MTLGPUAddress,length: u64,) -> MTL4BufferRange;
}