diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-05-01 12:03:11 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-05-01 12:03:11 +0200 |
commit | cb9a8043f273b8d76ba0c1d1aa092888383f28d9 (patch) | |
tree | 24e5782b67164ee32519af599af759596334917c /src/api/egl/ffi.rs | |
parent | c755e10089613f95604f7867e13dbc0eb9af549b (diff) | |
parent | 0eaa8fd9eb4b38169701804b0c0de273c1e73b50 (diff) | |
download | glutin-cb9a8043f273b8d76ba0c1d1aa092888383f28d9.tar.gz glutin-cb9a8043f273b8d76ba0c1d1aa092888383f28d9.zip |
Merge pull request #417 from tomaka/android-egl
Use the EGL API with Android
Diffstat (limited to 'src/api/egl/ffi.rs')
-rw-r--r-- | src/api/egl/ffi.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/api/egl/ffi.rs b/src/api/egl/ffi.rs index 8e2528d..5fa6384 100644 --- a/src/api/egl/ffi.rs +++ b/src/api/egl/ffi.rs @@ -2,8 +2,6 @@ use libc; #[cfg(target_os = "windows")] extern crate winapi; -#[cfg(target_os = "android")] -use api::android::ffi; pub mod egl { pub type khronos_utime_nanoseconds_t = super::khronos_utime_nanoseconds_t; @@ -32,4 +30,4 @@ pub type EGLNativeWindowType = winapi::HWND; #[cfg(target_os = "linux")] pub type EGLNativeWindowType = *const libc::c_void; #[cfg(target_os = "android")] -pub type EGLNativeWindowType = *const ffi::ANativeWindow; +pub type EGLNativeWindowType = *const libc::c_void; |