mpsgraph 0.2.0

Modern Rust bindings for Apple's Metal Performance Shaders Graph framework
Documentation
1
2
3
4
5
6
7
fn main() {
    // Run on both macOS and iOS
    #[cfg(any(target_os = "macos", target_os = "ios"))]
    {
        println!("cargo:rustc-link-lib=framework=MetalPerformanceShadersGraph");
    }
}