diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-03-04 08:00:56 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-03-04 08:00:56 +0100 |
commit | 15d037963340577b5886afb1ad207f53aeb98c6d (patch) | |
tree | 2035d5b289c4838e477cbea653c6e9e4b05a0afa /src/android | |
parent | 41e3328ca7d271b1291996dec9e59830d917ee2c (diff) | |
parent | 689ace8b251ceb2446fc460aad3dd19a1692f3f8 (diff) | |
download | glutin-15d037963340577b5886afb1ad207f53aeb98c6d.tar.gz glutin-15d037963340577b5886afb1ad207f53aeb98c6d.zip |
Merge pull request #305 from tomaka/is-current
Add is_current function
Diffstat (limited to 'src/android')
-rw-r--r-- | src/android/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/android/mod.rs b/src/android/mod.rs index 84d71c2..3c01b4c 100644 --- a/src/android/mod.rs +++ b/src/android/mod.rs @@ -62,6 +62,11 @@ impl HeadlessContext { } /// See the docs in the crate root file. + pub fn is_current(&self) -> bool { + unimplemented!() + } + + /// See the docs in the crate root file. pub fn get_proc_address(&self, _addr: &str) -> *const () { unimplemented!() } @@ -312,6 +317,10 @@ impl Window { } } + pub fn is_current(&self) -> bool { + unsafe { ffi::egl::GetCurrentContext() == self.context } + } + pub fn get_proc_address(&self, addr: &str) -> *const () { let addr = CString::from_slice(addr.as_bytes()); let addr = addr.as_ptr(); |