//! Glium compatibility module use backend::graphics::egl::{EGLGraphicsBackend, SwapBuffersError}; use glium::Frame; use glium::SwapBuffersError as GliumSwapBuffersError; use glium::backend::{Backend, Context}; use glium::debug::DebugCallbackBehavior; use std::ops::Deref; use std::os::raw::c_void; use std::rc::Rc; impl From for GliumSwapBuffersError { fn from(error: SwapBuffersError) -> Self { match error { SwapBuffersError::ContextLost => GliumSwapBuffersError::ContextLost, SwapBuffersError::AlreadySwapped => GliumSwapBuffersError::AlreadySwapped, } } } /// Wrapper to expose `glium` compatibility pub struct GliumGraphicsBackend { context: Rc, backend: Rc>, } struct InternalBackend(T); impl GliumGraphicsBackend { fn new(backend: T) -> GliumGraphicsBackend { let internal = Rc::new(InternalBackend(backend)); GliumGraphicsBackend { // cannot fail context: unsafe { Context::new::<_, ()>(internal.clone(), false, DebugCallbackBehavior::default()).unwrap() }, backend: internal, } } /// Start drawing on the backbuffer. /// /// This function returns a `Frame`, which can be used to draw on it. When the `Frame` is /// destroyed, the buffers are swapped. /// /// Note that destroying a `Frame` is immediate, even if vsync is enabled. #[inline] pub fn draw(&self) -> Frame { Frame::new(self.context.clone(), self.backend.get_framebuffer_dimensions()) } } impl Deref for GliumGraphicsBackend { type Target = Context; fn deref(&self) -> &Context { &self.context } } /// Converter trait to expose `glium` compatibility for all `EGLGraphicsBackend`s pub trait IntoGlium: EGLGraphicsBackend + Sized { /// Wrap the given `EGLGraphicsBackend` to a `GliumGraphicBackend` fn into_glium(self) -> GliumGraphicsBackend; } impl IntoGlium for T { fn into_glium(self) -> GliumGraphicsBackend { GliumGraphicsBackend::new(self) } } unsafe impl Backend for InternalBackend { fn swap_buffers(&self) -> Result<(), GliumSwapBuffersError> { self.0.swap_buffers().map_err(Into::into) } unsafe fn get_proc_address(&self, symbol: &str) -> *const c_void { self.0.get_proc_address(symbol) as *const c_void } fn get_framebuffer_dimensions(&self) -> (u32, u32) { self.0.get_framebuffer_dimensions() } fn is_current(&self) -> bool { self.0.is_current() } unsafe fn make_current(&self) { self.0.make_current().expect("Context was lost") } }