aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-11-04 11:27:50 +0100
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-11-09 08:46:52 +0100
commit37262fb2288c38553cc8c8f36e59782273c83e7d (patch)
tree8107afeac457b2ffcc2f839df407f5857a2cf37c /src/lib.rs
parent439d25168e0145bb563c2675ce490c521448f4ba (diff)
downloadglutin-37262fb2288c38553cc8c8f36e59782273c83e7d.tar.gz
glutin-37262fb2288c38553cc8c8f36e59782273c83e7d.zip
Remove public exports of gl_common and libc
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index b62c4a0..a1fa54f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -112,7 +112,7 @@ pub trait GlContext {
fn is_current(&self) -> bool;
/// Returns the address of an OpenGL function.
- fn get_proc_address(&self, addr: &str) -> *const libc::c_void;
+ fn get_proc_address(&self, addr: &str) -> *const ();
/// Swaps the buffers in case of double or triple buffering.
///