aboutsummaryrefslogtreecommitdiffstats
path: root/src/android/mod.rs
diff options
context:
space:
mode:
authorEduard Bopp <eduard.bopp@aepsil0n.de>2015-01-25 12:06:50 +0100
committerEduard Bopp <eduard.bopp@aepsil0n.de>2015-03-25 13:10:55 +0100
commit18f9bc44c9c71d6d368a9e9255c1288b85ae509a (patch)
treed12e82662ab3ceeabdc689a6c13eea180e7de384 /src/android/mod.rs
parent63d2cd263ee3e68118213ae5b8ba1326fc3ee03e (diff)
downloadglutin-18f9bc44c9c71d6d368a9e9255c1288b85ae509a.tar.gz
glutin-18f9bc44c9c71d6d368a9e9255c1288b85ae509a.zip
Implement grabbing of the mouse pointer for X11
Contains new methods in the Window API that closely mirror the Xlib API. The methods are left unimplemented for other platforms for now.
Diffstat (limited to 'src/android/mod.rs')
-rw-r--r--src/android/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/android/mod.rs b/src/android/mod.rs
index 71dae54..653ae39 100644
--- a/src/android/mod.rs
+++ b/src/android/mod.rs
@@ -358,6 +358,10 @@ impl Window {
pub fn set_cursor(&self, _: MouseCursor) {
}
+ pub fn grab_cursor(&self) -> Result<(), String> { Ok(()) }
+
+ pub fn ungrab_cursor(&self) {}
+
pub fn hidpi_factor(&self) -> f32 {
1.0
}