use std::rc::Rc;
use std::ops::Deref;
use std::os::raw::c_void;
use CapabilitiesSource;
use SwapBuffersError;
use context::Capabilities;
use context::ExtensionsList;
use version::Version;
pub use context::Context;
pub use context::ReleaseBehavior;
#[cfg(feature = "glutin")]
pub mod glutin;
pub unsafe trait Backend {
fn swap_buffers(&self) -> Result<(), SwapBuffersError>;
unsafe fn get_proc_address(&self, symbol: &str) -> *const c_void;
fn get_framebuffer_dimensions(&self) -> (u32, u32);
fn is_current(&self) -> bool;
unsafe fn make_current(&self);
}
unsafe impl<T> Backend for Rc<T> where T: Backend {
fn swap_buffers(&self) -> Result<(), SwapBuffersError> {
self.deref().swap_buffers()
}
unsafe fn get_proc_address(&self, symbol: &str) -> *const c_void {
self.deref().get_proc_address(symbol)
}
fn get_framebuffer_dimensions(&self) -> (u32, u32) {
self.deref().get_framebuffer_dimensions()
}
fn is_current(&self) -> bool {
self.deref().is_current()
}
unsafe fn make_current(&self) {
self.deref().make_current();
}
}
pub trait Facade {
fn get_context(&self) -> &Rc<Context>;
}
impl<T: ?Sized> CapabilitiesSource for T where T: Facade {
fn get_version(&self) -> &Version {
self.get_context().deref().get_version()
}
fn get_extensions(&self) -> &ExtensionsList {
self.get_context().deref().get_extensions()
}
fn get_capabilities(&self) -> &Capabilities {
self.get_context().deref().get_capabilities()
}
}
impl Facade for Rc<Context> {
#[inline]
fn get_context(&self) -> &Rc<Context> {
self
}
}