aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-02-18 16:49:53 +0100
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-02-18 17:15:01 +0100
commitf4f84c6566d99c297cddee3c712e94927f313204 (patch)
treef5ec7a833a54ed5371e8470b859dba14c41a553b /src/window.rs
parent8f8c1b71bcb8a41d15f421602fb61b293f62f175 (diff)
downloadglutin-f4f84c6566d99c297cddee3c712e94927f313204.tar.gz
glutin-f4f84c6566d99c297cddee3c712e94927f313204.zip
Improve the OpenGL context request system
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs15
1 files changed, 10 insertions, 5 deletions
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
}