Add get_api() function

This commit is contained in:
Pierre Krieger 2014-11-18 17:55:26 +01:00
parent 2320c2bc97
commit c893e4faec
6 changed files with 52 additions and 0 deletions

View file

@ -41,6 +41,11 @@ impl HeadlessContext {
pub fn get_proc_address(&self, addr: &str) -> *const () {
self.0.get_proc_address(addr)
}
/// See the docs in the crate root file.
pub fn get_api(&self) -> ::Api {
::Api::OpenGl
}
}
/// The Win32 implementation of the main `Window` object.
@ -252,6 +257,11 @@ impl Window {
pub fn platform_display(&self) -> *mut libc::c_void {
unimplemented!()
}
/// See the docs in the crate root file.
pub fn get_api(&self) -> ::Api {
::Api::OpenGl
}
}
#[unsafe_destructor]