use objc2::__framework_prelude::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct MTLSparseTextureMappingMode(pub NSUInteger);
impl MTLSparseTextureMappingMode {
#[doc(alias = "MTLSparseTextureMappingModeMap")]
pub const Map: Self = Self(0);
#[doc(alias = "MTLSparseTextureMappingModeUnmap")]
pub const Unmap: Self = Self(1);
}
unsafe impl Encode for MTLSparseTextureMappingMode {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for MTLSparseTextureMappingMode {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct MTLMapIndirectArguments {
pub regionOriginX: u32,
pub regionOriginY: u32,
pub regionOriginZ: u32,
pub regionSizeWidth: u32,
pub regionSizeHeight: u32,
pub regionSizeDepth: u32,
pub mipMapLevel: u32,
pub sliceId: u32,
}
unsafe impl Encode for MTLMapIndirectArguments {
const ENCODING: Encoding = Encoding::Struct(
"?",
&[
<u32>::ENCODING,
<u32>::ENCODING,
<u32>::ENCODING,
<u32>::ENCODING,
<u32>::ENCODING,
<u32>::ENCODING,
<u32>::ENCODING,
<u32>::ENCODING,
],
);
}
unsafe impl RefEncode for MTLMapIndirectArguments {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_protocol!(
#[cfg(feature = "MTLCommandEncoder")]
pub unsafe trait MTLResourceStateCommandEncoder:
MTLCommandEncoder + IsRetainable
{
#[cfg(all(feature = "MTLResource", feature = "MTLTexture", feature = "MTLTypes"))]
#[optional]
#[method(updateTextureMappings:mode:regions:mipLevels:slices:numRegions:)]
unsafe fn updateTextureMappings_mode_regions_mipLevels_slices_numRegions(
&self,
texture: &ProtocolObject<dyn MTLTexture>,
mode: MTLSparseTextureMappingMode,
regions: NonNull<MTLRegion>,
mip_levels: NonNull<NSUInteger>,
slices: NonNull<NSUInteger>,
num_regions: NSUInteger,
);
#[cfg(all(feature = "MTLResource", feature = "MTLTexture", feature = "MTLTypes"))]
#[optional]
#[method(updateTextureMapping:mode:region:mipLevel:slice:)]
unsafe fn updateTextureMapping_mode_region_mipLevel_slice(
&self,
texture: &ProtocolObject<dyn MTLTexture>,
mode: MTLSparseTextureMappingMode,
region: MTLRegion,
mip_level: NSUInteger,
slice: NSUInteger,
);
#[cfg(all(feature = "MTLBuffer", feature = "MTLResource", feature = "MTLTexture"))]
#[optional]
#[method(updateTextureMapping:mode:indirectBuffer:indirectBufferOffset:)]
unsafe fn updateTextureMapping_mode_indirectBuffer_indirectBufferOffset(
&self,
texture: &ProtocolObject<dyn MTLTexture>,
mode: MTLSparseTextureMappingMode,
indirect_buffer: &ProtocolObject<dyn MTLBuffer>,
indirect_buffer_offset: NSUInteger,
);
#[cfg(feature = "MTLFence")]
#[optional]
#[method(updateFence:)]
unsafe fn updateFence(&self, fence: &ProtocolObject<dyn MTLFence>);
#[cfg(feature = "MTLFence")]
#[optional]
#[method(waitForFence:)]
unsafe fn waitForFence(&self, fence: &ProtocolObject<dyn MTLFence>);
#[cfg(all(feature = "MTLResource", feature = "MTLTexture", feature = "MTLTypes"))]
#[optional]
#[method(moveTextureMappingsFromTexture:sourceSlice:sourceLevel:sourceOrigin:sourceSize:toTexture:destinationSlice:destinationLevel:destinationOrigin:)]
unsafe fn moveTextureMappingsFromTexture_sourceSlice_sourceLevel_sourceOrigin_sourceSize_toTexture_destinationSlice_destinationLevel_destinationOrigin(
&self,
source_texture: &ProtocolObject<dyn MTLTexture>,
source_slice: NSUInteger,
source_level: NSUInteger,
source_origin: MTLOrigin,
source_size: MTLSize,
destination_texture: &ProtocolObject<dyn MTLTexture>,
destination_slice: NSUInteger,
destination_level: NSUInteger,
destination_origin: MTLOrigin,
);
}
#[cfg(feature = "MTLCommandEncoder")]
unsafe impl ProtocolType for dyn MTLResourceStateCommandEncoder {}
);