1 2 3 4 5 6 7 8 9
pub mod interfaces { use skia_bindings as sb; use crate::gpu::gl; pub fn make_win() -> Option<gl::Interface> { gl::Interface::from_ptr(unsafe { sb::C_GrGLInterfaces_MakeWin() } as *mut _) } }