diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2014-12-17 14:49:11 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2014-12-17 14:50:05 +1000 |
commit | 9dc5689eef87cace5e6ac6b5438928a1c99688c4 (patch) | |
tree | 224ec970788ed9d1f6830381946421a05d9c8741 /src/android | |
parent | 19d120b8b19d85e9cea5c3e8851b8809d072b8bd (diff) | |
download | glutin-9dc5689eef87cace5e6ac6b5438928a1c99688c4.tar.gz glutin-9dc5689eef87cace5e6ac6b5438928a1c99688c4.zip |
Introduce a WindowProxy for accessing a subset of functionality
from other threads. This currently provides a way for other threads
to wakeup a blocked event loop on X11. Other platforms have stub
functions that need to be implemented. This is similar to
the functionality of glfwPostEmptyEvent.
Diffstat (limited to 'src/android')
-rw-r--r-- | src/android/mod.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/android/mod.rs b/src/android/mod.rs index 8093d50..fd0a857 100644 --- a/src/android/mod.rs +++ b/src/android/mod.rs @@ -207,6 +207,10 @@ impl Window { pub fn set_inner_size(&self, _x: uint, _y: uint) { } + pub fn create_window_proxy(&self) -> WindowProxy { + WindowProxy + } + pub fn poll_events(&self) -> Vec<Event> { use std::time::Duration; use std::io::timer; @@ -271,6 +275,16 @@ impl Window { } } +#[cfg(feature = "window")] +#[deriving(Clone)] +pub struct WindowProxy; + +impl WindowProxy { + pub fn wakeup_event_loop(&self) { + // TODO + } +} + #[unsafe_destructor] impl Drop for Window { fn drop(&mut self) { |