2014-12-01 18:24:15 +01:00
|
|
|
/// WGL bindings
|
|
|
|
|
pub mod wgl {
|
2014-12-24 08:09:16 +01:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/wgl_bindings.rs"));
|
2014-12-01 18:24:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Functions that are not necessarly always available
|
|
|
|
|
pub mod wgl_extra {
|
2014-12-24 08:09:16 +01:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/wgl_extra_bindings.rs"));
|
2014-12-01 18:24:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[link(name = "opengl32")]
|
|
|
|
|
extern {}
|