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/android/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/android/ffi.rs')
-rw-r--r-- | src/api/android/ffi.rs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/api/android/ffi.rs b/src/api/android/ffi.rs index 111f670..1398b77 100644 --- a/src/api/android/ffi.rs +++ b/src/api/android/ffi.rs @@ -5,29 +5,6 @@ use libc; -pub mod egl { - pub type khronos_utime_nanoseconds_t = super::khronos_utime_nanoseconds_t; - pub type khronos_uint64_t = super::khronos_uint64_t; - pub type khronos_ssize_t = super::khronos_ssize_t; - pub type EGLNativeDisplayType = super::EGLNativeDisplayType; - pub type EGLNativePixmapType = super::EGLNativePixmapType; - pub type EGLNativeWindowType = super::EGLNativeWindowType; - pub type EGLint = super::EGLint; - pub type NativeDisplayType = super::EGLNativeDisplayType; - pub type NativePixmapType = super::EGLNativePixmapType; - pub type NativeWindowType = super::EGLNativeWindowType; - - include!(concat!(env!("OUT_DIR"), "/egl_bindings.rs")); -} - -pub type khronos_utime_nanoseconds_t = khronos_uint64_t; -pub type khronos_uint64_t = libc::uint64_t; -pub type khronos_ssize_t = libc::c_long; -pub type EGLint = libc::int32_t; -pub type EGLNativeDisplayType = *const libc::c_void; -pub type EGLNativePixmapType = *const libc::c_void; // FIXME: egl_native_pixmap_t instead -pub type EGLNativeWindowType = *const ANativeWindow; - #[link(name = "android")] #[link(name = "EGL")] #[link(name = "GLESv2")] |