diff options
author | Akos Kiss <akiss@inf.u-szeged.hu> | 2015-07-22 21:18:50 +0000 |
---|---|---|
committer | Akos Kiss <akiss@inf.u-szeged.hu> | 2015-07-23 06:19:54 +0000 |
commit | 07c8154cb7f7f0f9387e64ddccd8705c048b35d8 (patch) | |
tree | 97e1cba5edb04a9905a3e858038863f9875d1d75 /examples | |
parent | eb8611f2724401a84b84fa4e30ba570edf011886 (diff) | |
download | glutin-07c8154cb7f7f0f9387e64ddccd8705c048b35d8.tar.gz glutin-07c8154cb7f7f0f9387e64ddccd8705c048b35d8.zip |
Add aarch64-unknown-linux-gnu support
* Adding dependencies
* Replacing `i8` with `c_char` ot `_` (since `c_char` can be
unsigned on some platforms, aarch64 is one of them)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/support/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/support/mod.rs b/examples/support/mod.rs index ac41239..01eeb7b 100644 --- a/examples/support/mod.rs +++ b/examples/support/mod.rs @@ -22,7 +22,7 @@ pub fn load(window: &glutin::Window) -> Context { let gl = gl::Gl::load(window); let version = unsafe { - let data = CStr::from_ptr(gl.GetString(gl::VERSION) as *const i8).to_bytes().to_vec(); + let data = CStr::from_ptr(gl.GetString(gl::VERSION) as *const _).to_bytes().to_vec(); String::from_utf8(data).unwrap() }; |