diff options
author | Ryan Stewart <ryan@binsoftware.com> | 2015-03-16 14:10:54 -0700 |
---|---|---|
committer | Ryan Stewart <ryan@binsoftware.com> | 2015-03-16 14:13:21 -0700 |
commit | 9cecb7ee558579f0b4ede97c53e3d7824a9810b6 (patch) | |
tree | 2341d9eb5d5577edc47e0c8905d288eaf2e826a1 /src/cocoa/mod.rs | |
parent | 70776fab411a6b8f1b36d1f450b8cf9b56cfbd23 (diff) | |
download | glutin-9cecb7ee558579f0b4ede97c53e3d7824a9810b6.tar.gz glutin-9cecb7ee558579f0b4ede97c53e3d7824a9810b6.zip |
implement Window is_current() for cocoa backend
Diffstat (limited to 'src/cocoa/mod.rs')
-rw-r--r-- | src/cocoa/mod.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/cocoa/mod.rs b/src/cocoa/mod.rs index 825f6f3..22ec4b4 100644 --- a/src/cocoa/mod.rs +++ b/src/cocoa/mod.rs @@ -617,7 +617,15 @@ impl Window { } pub fn is_current(&self) -> bool { - unimplemented!() + unsafe { + let current = NSOpenGLContext::currentContext(nil); + if current != nil { + let is_equal: bool = msg_send()(current, selector("isEqual:"), *self.context); + is_equal + } else { + false + } + } } pub fn get_proc_address(&self, _addr: &str) -> *const () { |