(_cls: *const c_void, _sel: Sel)
| 101 | // ============================================================ |
| 102 | |
| 103 | unsafe extern "C" fn bloom_layer_class(_cls: *const c_void, _sel: Sel) -> *const c_void { |
| 104 | AnyClass::get(c"CAMetalLayer").unwrap() as *const AnyClass as *const c_void |
| 105 | } |
| 106 | |
| 107 | unsafe extern "C" fn bloom_touches_began(_this: *mut c_void, _sel: Sel, touches: *const AnyObject, _event: *const AnyObject) { |
| 108 | handle_touches(touches, TouchPhase::Began); |