From f4f84c6566d99c297cddee3c712e94927f313204 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Wed, 18 Feb 2015 16:49:53 +0100 Subject: Improve the OpenGL context request system --- src/window.rs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'src/window.rs') diff --git a/src/window.rs b/src/window.rs index a830733..c916b27 100644 --- a/src/window.rs +++ b/src/window.rs @@ -5,6 +5,7 @@ use Api; use BuilderAttribs; use CreationError; use Event; +use GlRequest; use MouseCursor; use gl_common; @@ -56,12 +57,16 @@ impl<'a> WindowBuilder<'a> { self } - /// Requests to use a specific OpenGL version. - /// - /// Version is a (major, minor) pair. For example to request OpenGL 3.3 - /// you would pass `(3, 3)`. + /// THIS FUNCTION IS DEPRECATED + #[deprecated = "Use with_gl instead"] pub fn with_gl_version(mut self, version: (u32, u32)) -> WindowBuilder<'a> { - self.attribs.gl_version = Some(version); + self.attribs.gl_version = GlRequest::Specific(::Api::OpenGl, (version.0 as u8, version.1 as u8)); + self + } + + /// Sets how the backend should choose the OpenGL API and version. + pub fn with_gl(mut self, request: GlRequest) -> WindowBuilder<'a> { + self.attribs.gl_version = request; self } -- cgit v1.2.3