apple-metal 0.6.1

Safe Rust bindings for Apple's Metal framework — devices, resources, command encoding, advanced GPU objects, and IOSurface interop on macOS, backed by a Swift bridge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(missing_docs)]

mod advanced;
mod command;
mod core;
mod metalfx;
mod pipeline;
mod render;
mod state;

pub use advanced::*;
pub use command::*;
pub use core::*;
pub use metalfx::*;
pub use pipeline::*;
pub use render::*;
pub use state::*;