diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2014-10-22 11:28:10 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2014-10-22 11:28:10 +0200 |
commit | 2a29e4d743205e96da611516f5fe99da78e462d1 (patch) | |
tree | 0c44986d2c2db6a27dee94a3a9c9d6a8385ec9c6 /src/android | |
parent | c8ea2bf587429b5b59d5a41f7ebb16a7998badd9 (diff) | |
parent | 2ff393fe623d10f2ea89262013ba66e228cc0c94 (diff) | |
download | glutin-2a29e4d743205e96da611516f5fe99da78e462d1.tar.gz glutin-2a29e4d743205e96da611516f5fe99da78e462d1.zip |
Merge pull request #59 from tomaka/update
Update for rustc and gl-rs
Diffstat (limited to 'src/android')
-rw-r--r-- | src/android/ffi.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/android/ffi.rs b/src/android/ffi.rs index a7482e3..b65f44d 100644 --- a/src/android/ffi.rs +++ b/src/android/ffi.rs @@ -17,7 +17,12 @@ pub mod egl { pub type NativePixmapType = super::EGLNativePixmapType; pub type NativeWindowType = super::EGLNativeWindowType; - generate_gl_bindings!("egl", "core", "1.5", "static") + generate_gl_bindings! { + api: "egl", + profile: "core", + version: "1.5", + generator: "static" + } } pub type khronos_utime_nanoseconds_t = khronos_uint64_t; |