diff options
author | mitchmindtree <mitchell.nordine@gmail.com> | 2015-11-08 21:13:25 +1100 |
---|---|---|
committer | mitchmindtree <mitchell.nordine@gmail.com> | 2015-11-08 21:13:25 +1100 |
commit | 228732877a6c64f2d923d04bd6ed4c771289ecdf (patch) | |
tree | f9af35754d0204bbe7284ea798201cd88b5bc5e0 /src/api | |
parent | 0386d093d1acca9c6010e6360bef781726efde5c (diff) | |
download | glutin-228732877a6c64f2d923d04bd6ed4c771289ecdf.tar.gz glutin-228732877a6c64f2d923d04bd6ed4c771289ecdf.zip |
Lock objc version, add casts to appease libc pointer type conflict. Closes #654
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/cocoa/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/cocoa/mod.rs b/src/api/cocoa/mod.rs index 2b4b5e5..c6d53d4 100644 --- a/src/api/cocoa/mod.rs +++ b/src/api/cocoa/mod.rs @@ -310,7 +310,7 @@ impl Window { let obj = context.CGLContextObj(); let mut opacity = 0; - CGLSetParameter(obj, kCGLCPSurfaceOpacity, &mut opacity); + CGLSetParameter(obj as *mut _, kCGLCPSurfaceOpacity, &mut opacity); } app.activateIgnoringOtherApps_(YES); @@ -558,7 +558,7 @@ impl Window { let value = if opengl.vsync { 1 } else { 0 }; cxt.setValues_forParameter_(&value, NSOpenGLContextParameter::NSOpenGLCPSwapInterval); - CGLEnable(cxt.CGLContextObj(), kCGLCECrashOnRemovedFunctions); + CGLEnable(cxt.CGLContextObj() as *mut _, kCGLCECrashOnRemovedFunctions); Ok((cxt, pf)) } else { |