diff options
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..78ef070 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; |