cobin 0.1.1

Minimalistic bindings for Metal and related Cocoa frameworks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::{
  obj::Object,
  PrivateMarker,
  runtime::NSObjectBase
};

pub struct MTLComputePipelineReflection(PrivateMarker);

impl Object for MTLComputePipelineReflection {}
unsafe impl objc::Message for MTLComputePipelineReflection {}

impl NSObjectBase for MTLComputePipelineReflection {
  fn class_name() -> &'static str { "MTLComputePipelineReflection" }
}