1 2 3 4 5 6 7 8 9 10 11
pub mod api; use crate::gl::context::GLContext; use crate::gl::feature::EntryGLFn; pub use api::*; impl GL44 for GLContext { unsafe fn entry(&self) -> &EntryGLFn { &self.entry } }