[go: up one dir, main page]

glutin 0.0.3

Cross-plaform OpenGL context provider. Important: the crates.io only supports Windows and Linux for the moment.
1
2
3
4
5
6
7
8
9
10
11
12
/// WGL bindings
pub mod wgl {
    include!(concat!(env!("OUT_DIR"), "/wgl_bindings.rs"));
}

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

#[link(name = "opengl32")]
extern {}