aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11/mod.rs
diff options
context:
space:
mode:
authorGlenn Watson <gw@intuitionlibrary.com>2014-12-17 14:49:11 +1000
committerGlenn Watson <gw@intuitionlibrary.com>2014-12-17 14:50:05 +1000
commit9dc5689eef87cace5e6ac6b5438928a1c99688c4 (patch)
tree224ec970788ed9d1f6830381946421a05d9c8741 /src/x11/mod.rs
parent19d120b8b19d85e9cea5c3e8851b8809d072b8bd (diff)
downloadglutin-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/x11/mod.rs')
-rw-r--r--src/x11/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x11/mod.rs b/src/x11/mod.rs
index 9d9d25c..9ce789f 100644
--- a/src/x11/mod.rs
+++ b/src/x11/mod.rs
@@ -2,7 +2,7 @@
pub use self::headless::HeadlessContext;
#[cfg(feature = "window")]
-pub use self::window::{Window, MonitorID, get_available_monitors, get_primary_monitor};
+pub use self::window::{Window, WindowProxy, MonitorID, get_available_monitors, get_primary_monitor};
mod ffi;