diff options
Diffstat (limited to 'src/cocoa/mod.rs')
-rw-r--r-- | src/cocoa/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cocoa/mod.rs b/src/cocoa/mod.rs index e39df9f..9819319 100644 --- a/src/cocoa/mod.rs +++ b/src/cocoa/mod.rs @@ -587,6 +587,10 @@ impl Window { self.context.makeCurrentContext(); } + pub fn is_current(&self) -> bool { + unimplemented!() + } + pub fn get_proc_address(&self, _addr: &str) -> *const () { let symbol_name: CFString = FromStr::from_str(_addr).unwrap(); let framework_name: CFString = FromStr::from_str("com.apple.opengl").unwrap(); |