aboutsummaryrefslogtreecommitdiffstats
path: root/src/android/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/mod.rs')
-rw-r--r--src/android/mod.rs17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/android/mod.rs b/src/android/mod.rs
index 3a86779..7279f99 100644
--- a/src/android/mod.rs
+++ b/src/android/mod.rs
@@ -212,16 +212,6 @@ impl Window {
}
pub fn poll_events(&self) -> Vec<Event> {
- use std::time::Duration;
- use std::io::timer;
- timer::sleep(Duration::milliseconds(16));
- Vec::new()
- }
-
- pub fn wait_events(&self) -> Vec<Event> {
- use std::time::Duration;
- use std::io::timer;
- timer::sleep(Duration::milliseconds(16));
let mut events = Vec::new();
loop {
match self.event_rx.try_recv() {
@@ -244,6 +234,13 @@ impl Window {
events
}
+ pub fn wait_events(&self) -> Vec<Event> {
+ use std::time::Duration;
+ use std::io::timer;
+ timer::sleep(Duration::milliseconds(16));
+ self.poll_events()
+ }
+
pub fn make_current(&self) {
unsafe {
ffi::egl::MakeCurrent(self.display, self.surface, self.surface, self.context);