offscreen_gl_context 0.25.1

Creation and manipulation of HW accelerated offscreen rendering contexts in multiple platforms. Originally intended for the Servo project's WebGL implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// WGL bindings
pub mod wgl {
    include!(concat!(env!("OUT_DIR"), "/wgl_bindings.rs"));
}

/// Functions that are not necessarly always available
pub mod wgl_ext {
    include!(concat!(env!("OUT_DIR"), "/wgl_extra_bindings.rs"));
}

mod wgl_attributes;
mod native_gl_context;
mod utils;
pub use self::native_gl_context::NativeGLContext;
pub use self::native_gl_context::NativeGLContextHandle;