diff options
author | Felix Kaaman <trundmatu@gmail.com> | 2015-06-15 23:28:29 +0200 |
---|---|---|
committer | Felix Kaaman <trundmatu@gmail.com> | 2015-06-16 09:00:02 +0200 |
commit | a8fef35dbf320448ba53af77bd8025be5022d9f4 (patch) | |
tree | ae044dcd6ed5d702510f750575dc1bf48bbba7c4 /src | |
parent | e48c853b9c7a617bf8ba5f31b5fb2088c90c0ee7 (diff) | |
download | glutin-a8fef35dbf320448ba53af77bd8025be5022d9f4.tar.gz glutin-a8fef35dbf320448ba53af77bd8025be5022d9f4.zip |
Make legacy functions crash on osx core contexts
Diffstat (limited to 'src')
-rw-r--r-- | src/api/cocoa/mod.rs | 6 | ||||
-rw-r--r-- | src/lib.rs | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/api/cocoa/mod.rs b/src/api/cocoa/mod.rs index 877aba7..ba5710d 100644 --- a/src/api/cocoa/mod.rs +++ b/src/api/cocoa/mod.rs @@ -17,6 +17,10 @@ use native_monitor::NativeMonitorId; use objc::runtime::{Class, Object, Sel, BOOL, YES, NO}; use objc::declare::ClassDecl; +use cgl; +use cgl::{CGLEnable, kCGLCECrashOnRemovedFunctions, CGLSetParameter, kCGLCPSurfaceOpacity}; +use cgl::CGLContextObj as CGL_CGLContextObj; + use cocoa::base::{id, nil}; use cocoa::foundation::{NSAutoreleasePool, NSDate, NSDefaultRunLoopMode, NSPoint, NSRect, NSSize, NSString, NSUInteger}; @@ -572,6 +576,8 @@ impl Window { let value = if builder.vsync { 1 } else { 0 }; cxt.setValues_forParameter_(&value, NSOpenGLContextParameter::NSOpenGLCPSwapInterval); + CGLEnable(cxt.CGLContextObj(), kCGLCECrashOnRemovedFunctions); + Ok((cxt, pf)) } else { Err(CreationError::NotSupported) @@ -46,6 +46,8 @@ extern crate dwmapi; #[macro_use] extern crate objc; #[cfg(target_os = "macos")] +extern crate cgl; +#[cfg(target_os = "macos")] extern crate cocoa; #[cfg(target_os = "macos")] extern crate core_foundation; |