diff options
author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-11-04 11:22:44 +0100 |
---|---|---|
committer | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-11-04 11:28:08 +0100 |
commit | 2fcbdcc2fc71e63aba50d752c53eb266799cf4ec (patch) | |
tree | 4b42dc0d0a5d2e8138443c7a622f1e8c26bcad89 /src/api/osmesa | |
parent | 188b8f5c081011e6a2dfe7b0ff9d72e7a0bb2566 (diff) | |
download | glutin-2fcbdcc2fc71e63aba50d752c53eb266799cf4ec.tar.gz glutin-2fcbdcc2fc71e63aba50d752c53eb266799cf4ec.zip |
Fix the libc breakage
Diffstat (limited to 'src/api/osmesa')
-rw-r--r-- | src/api/osmesa/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/osmesa/mod.rs b/src/api/osmesa/mod.rs index c41c997..065ffc6 100644 --- a/src/api/osmesa/mod.rs +++ b/src/api/osmesa/mod.rs @@ -89,7 +89,7 @@ impl GlContext for OsMesaContext { #[inline] unsafe fn make_current(&self) -> Result<(), ContextError> { let ret = osmesa_sys::OSMesaMakeCurrent(self.context, self.buffer.as_ptr() - as *mut libc::c_void, 0x1401, self.width + as *mut _, 0x1401, self.width as libc::c_int, self.height as libc::c_int); // an error can only happen in case of invalid parameter, which would indicate a bug |