use std::rc::Rc;
use std::ops::Deref;
use std::os::raw::c_void;
use crate::CapabilitiesSource;
use crate::SwapBuffersError;
use crate::context::Capabilities;
use crate::context::ExtensionsList;
use crate::version::Version;
pub use crate::context::Context;
pub use crate::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 resize(&self, new_size:(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 resize(&self, new_size:(u32, u32)) {
self.deref().resize(new_size);
}
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_opengl_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
}
}