diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-11-09 10:10:22 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-11-09 10:10:22 +0100 |
commit | bfc46c56703eab9404651ea9dd4a195acbe8c784 (patch) | |
tree | bf8f195f8b38c7f6d78d917fe95ed768bcaaefc5 /src/api/win32 | |
parent | 439d25168e0145bb563c2675ce490c521448f4ba (diff) | |
parent | b02265fa1103c526c365d7768e3c8ae3633cf4cf (diff) | |
download | glutin-bfc46c56703eab9404651ea9dd4a195acbe8c784.tar.gz glutin-bfc46c56703eab9404651ea9dd4a195acbe8c784.zip |
Merge pull request #652 from tomaka/rem-gl-common
[Breaking change] Remove public exports of gl_common and libc
Diffstat (limited to 'src/api/win32')
-rw-r--r-- | src/api/win32/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/win32/mod.rs b/src/api/win32/mod.rs index 4fb3635..d85ef09 100644 --- a/src/api/win32/mod.rs +++ b/src/api/win32/mod.rs @@ -365,7 +365,7 @@ impl GlContext for Window { } #[inline] - fn get_proc_address(&self, addr: &str) -> *const libc::c_void { + fn get_proc_address(&self, addr: &str) -> *const () { match self.context { Context::Wgl(ref c) => c.get_proc_address(addr), Context::Egl(ref c) => c.get_proc_address(addr), |