aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/cocoa/mod.rs
diff options
context:
space:
mode:
authorKevin Butler <haqkrs@gmail.com>2015-05-02 06:41:36 +0100
committerKevin Butler <haqkrs@gmail.com>2015-05-02 06:41:36 +0100
commit81d0dc97e14de4c28f3228bf29d98ceaad69f1d2 (patch)
tree4e22b4b78b48b7b86841810a5cf9d37a5cb3773b /src/api/cocoa/mod.rs
parentef453188479688339b52c28fae563dc09905c077 (diff)
downloadglutin-81d0dc97e14de4c28f3228bf29d98ceaad69f1d2.tar.gz
glutin-81d0dc97e14de4c28f3228bf29d98ceaad69f1d2.zip
Fix further compilation of cocoa
Diffstat (limited to 'src/api/cocoa/mod.rs')
-rw-r--r--src/api/cocoa/mod.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/api/cocoa/mod.rs b/src/api/cocoa/mod.rs
index 5b42abc..645b995 100644
--- a/src/api/cocoa/mod.rs
+++ b/src/api/cocoa/mod.rs
@@ -343,8 +343,8 @@ impl Window {
// TODO: perhaps we should return error from create_context so we can
// determine the cause of failure and possibly recover?
let (context, pf) = match Window::create_context(*view, &builder) {
- (Some(context), Some(pf)) => (context, pf),
- (_, _) => { return Err(OsError(format!("Couldn't create OpenGL context"))); },
+ Ok((Some(context), Some(pf))) => (context, pf),
+ _ => { return Err(OsError(format!("Couldn't create OpenGL context"))); },
};
unsafe {
@@ -473,12 +473,12 @@ impl Window {
let profile = match (builder.gl_version, builder.gl_version.to_gl_version(), builder.gl_profile) {
(GlRequest::Latest, _, Some(GlProfile::Compatibility)) => NSOpenGLProfileVersionLegacy as u32,
(GlRequest::Latest, _, _) => NSOpenGLProfileVersion4_1Core as u32,
- (_, Some(1 ... 2, _), Some(GlProfile::Core)) |
- (_, Some(3 ... 4, _), Some(GlProfile::Compatibility)) =>
+ (_, Some((1 ... 2, _)), Some(GlProfile::Core)) |
+ (_, Some((3 ... 4, _)), Some(GlProfile::Compatibility)) =>
return Err(CreationError::NotSupported),
- (_, Some(1 ... 2, _), _) => NSOpenGLProfileVersionLegacy as u32,
- (_, Some(3, 0 ... 2), _) => NSOpenGLProfileVersion3_2Core as u32,
- (_, Some(3 ... 4, _), _) => NSOpenGLProfileVersion4_1Core as u32,
+ (_, Some((1 ... 2, _)), _) => NSOpenGLProfileVersionLegacy as u32,
+ (_, Some((3, 0 ... 2)), _) => NSOpenGLProfileVersion3_2Core as u32,
+ (_, Some((3 ... 4, _)), _) => NSOpenGLProfileVersion4_1Core as u32,
_ => return Err(CreationError::NotSupported),
};