diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2014-12-18 20:36:37 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2014-12-18 20:36:37 +0100 |
commit | 0164449955d1b4787fce03f8800e32f19fd04a01 (patch) | |
tree | 67da783cd51b2266add4ac7f11918d878f11f019 /src/x11/mod.rs | |
parent | 94348113281828a2045efcf24536ab6b1aad837e (diff) | |
parent | 95f82927b37e27f1880e9941b316227f6c6baebc (diff) | |
download | glutin-0164449955d1b4787fce03f8800e32f19fd04a01.tar.gz glutin-0164449955d1b4787fce03f8800e32f19fd04a01.zip |
Merge pull request #161 from glennw/thread-proxy
Introduce a WindowProxy for accessing a subset of functionality
Diffstat (limited to 'src/x11/mod.rs')
-rw-r--r-- | src/x11/mod.rs | 2 |
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; |