apple-cf 0.6.0

Safe Rust bindings for Apple's shared Core* frameworks (CoreFoundation, CoreMedia, CoreVideo, CoreGraphics, IOSurface, Dispatch).
Documentation
1
2
3
4
5
6
7
8
#![allow(missing_docs)]

use core::ffi::c_void;

extern "C" {
    pub fn cv_metal_texture_cache_create_system_default() -> *mut c_void;
    pub fn cv_metal_texture_cache_flush(cache: *mut c_void);
}