diff options
author | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-11-01 09:02:01 +0100 |
---|---|---|
committer | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-11-01 09:03:21 +0100 |
commit | b6f74911579f1a46bfa112032b2efc38aeff1a99 (patch) | |
tree | 1bad2622d17f139c3b072d72ae411103a1fcfc1d /src/x11/window | |
parent | a479b2f60c7917a7c7a73b15c22c0b20f54448b7 (diff) | |
download | glutin-b6f74911579f1a46bfa112032b2efc38aeff1a99.tar.gz glutin-b6f74911579f1a46bfa112032b2efc38aeff1a99.zip |
Add visibility-related functions to window
Diffstat (limited to 'src/x11/window')
-rw-r--r-- | src/x11/window/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/x11/window/mod.rs b/src/x11/window/mod.rs index 26d5497..2d26cbd 100644 --- a/src/x11/window/mod.rs +++ b/src/x11/window/mod.rs @@ -295,6 +295,12 @@ impl Window { } } + pub fn show(&self) { + } + + pub fn hide(&self) { + } + fn get_geometry(&self) -> Option<(int, int, uint, uint)> { unsafe { use std::mem; |