From 81d0dc97e14de4c28f3228bf29d98ceaad69f1d2 Mon Sep 17 00:00:00 2001 From: Kevin Butler Date: Sat, 2 May 2015 06:41:36 +0100 Subject: Fix further compilation of cocoa --- src/api/cocoa/mod.rs | 14 +++++++------- 1 file 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), }; -- cgit v1.2.3