extern crate metal_rs as metal;
extern crate cocoa;
#[macro_use] extern crate objc;
use metal::*;
use cocoa::foundation::NSAutoreleasePool;
fn main() {
let library_data = include_bytes!("default.metallib");
let pool = unsafe { NSAutoreleasePool::new(cocoa::base::nil) };
let device = Device::system_default();
let library = device.new_library_with_data(&library_data[..]).unwrap();
let kernel = library.get_function("sum", None).unwrap();
println!("Function name: {}", kernel.name());
println!("Function type: {:?}", kernel.function_type());
println!("OK");
unsafe {
msg_send![pool, release]
}
}