cobin 0.1.1

Minimalistic bindings for Metal and related Cocoa frameworks.
Documentation
1
2
3
4
5
6
7
use crate::obj::Object;

pub trait MTLCommandEncoderProtocol: Object {
  unsafe fn end_encoding(&self) {
    msg_send![self, endEncoding]
  }
}