apple-mps 0.2.0

Safe Rust bindings for Apple's MetalPerformanceShaders framework on macOS, backed by a Swift bridge
Documentation
//! Raw FFI declarations matching the Swift bridge.

#![allow(missing_docs)]

pub mod core;
pub mod filters;
pub mod image;
pub mod matrix;
pub mod ndarray;
pub mod neural;
pub mod ray;

pub use self::core::*;
pub use self::filters::*;
pub use self::image::*;
pub use self::matrix::*;
pub use self::ndarray::*;
pub use self::neural::*;
pub use self::ray::*;