skia_safe/gpu/ganesh/gl/
make_mac_interface.rs

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