mtl-rs 0.1.11

Rust bindings for Apple's Metal API
mod command_buffer;
mod command_queue;
mod command_queue_descriptor;
mod completed_handler;
mod error;
mod file_handle;
mod io_status;
mod priority;
mod queue_type;
mod scratch_buffer;
mod scratch_buffer_allocator;

pub use command_buffer::MTLIOCommandBuffer;
pub use command_queue::{MTLIOCommandQueue, MTLIOCommandQueueExt};
pub use command_queue_descriptor::MTLIOCommandQueueDescriptor;
pub use completed_handler::MTLIOCommandBufferCompletedHandler;
pub use error::{MTLIOError, io_error_domain};
pub use file_handle::{MTLIOFileHandle, MTLIOFileHandleExt};
pub use io_status::MTLIOStatus;
pub use priority::MTLIOPriority;
pub use queue_type::MTLIOCommandQueueType;
pub use scratch_buffer::MTLIOScratchBuffer;
pub use scratch_buffer_allocator::MTLIOScratchBufferAllocator;