aboutsummaryrefslogtreecommitdiffstats
path: root/src/android
diff options
context:
space:
mode:
Diffstat (limited to 'src/android')
-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 d900abe..ef2e5e0 100644
--- a/src/android/mod.rs
+++ b/src/android/mod.rs
@@ -186,6 +186,10 @@ impl Window {
ffi::egl::SwapBuffers(self.display, self.surface);
}
}
+
+ pub fn platform_display(&self) -> *mut libc::c_void {
+ unimplemented!()
+ }
}
#[unsafe_destructor]