From aa9cb99929ee1893699184ded888b2586455f016 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Mon, 21 Sep 2015 14:42:05 +0200 Subject: Add #[inline] attributes --- src/api/glx/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/api/glx/mod.rs') diff --git a/src/api/glx/mod.rs b/src/api/glx/mod.rs index 7f54760..43bb1d7 100644 --- a/src/api/glx/mod.rs +++ b/src/api/glx/mod.rs @@ -77,6 +77,7 @@ impl GlContext for Context { Ok(()) } + #[inline] fn is_current(&self) -> bool { unsafe { self.glx.GetCurrentContext() == self.context } } @@ -89,16 +90,19 @@ impl GlContext for Context { } } + #[inline] fn swap_buffers(&self) -> Result<(), ContextError> { // TODO: glutin needs some internal changes for proper error recovery unsafe { self.glx.SwapBuffers(self.display as *mut _, self.window); } Ok(()) } + #[inline] fn get_api(&self) -> ::Api { ::Api::OpenGl } + #[inline] fn get_pixel_format(&self) -> PixelFormat { self.pixel_format.clone() } @@ -129,6 +133,7 @@ pub struct ContextPrototype<'a> { } impl<'a> ContextPrototype<'a> { + #[inline] pub fn get_visual_infos(&self) -> &ffi::XVisualInfo { &self.visual_infos } -- cgit v1.2.3