aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/x11/window.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-11-05 07:59:19 +0100
committertomaka <pierre.krieger1708@gmail.com>2015-11-05 07:59:19 +0100
commit0386d093d1acca9c6010e6360bef781726efde5c (patch)
tree1283ec000e02683c1eccee31d01b7b71b5945df9 /src/api/x11/window.rs
parent3b5fe6ad998077eebd46ecb9376b153b0abb6d58 (diff)
parent7e4f795a53aee93add100f74f4b84bf24b04848a (diff)
downloadglutin-0386d093d1acca9c6010e6360bef781726efde5c.tar.gz
glutin-0386d093d1acca9c6010e6360bef781726efde5c.zip
Merge pull request #653 from Daggerbot/pr
Change some uses of c_void to avoid libc version conflicts.
Diffstat (limited to 'src/api/x11/window.rs')
-rw-r--r--src/api/x11/window.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/x11/window.rs b/src/api/x11/window.rs
index 1652483..72b9b33 100644
--- a/src/api/x11/window.rs
+++ b/src/api/x11/window.rs
@@ -354,8 +354,8 @@ impl Window {
Glx(::api::glx::ContextPrototype<'a>),
Egl(::api::egl::ContextPrototype<'a>),
}
- let builder_clone_opengl_glx = opengl.clone().map_sharing(|_| unimplemented!()); // FIXME:
- let builder_clone_opengl_egl = opengl.clone().map_sharing(|_| unimplemented!()); // FIXME:
+ let builder_clone_opengl_glx = opengl.clone().map_sharing(|_| unimplemented!()); // FIXME:
+ let builder_clone_opengl_egl = opengl.clone().map_sharing(|_| unimplemented!()); // FIXME:
let context = match opengl.version {
GlRequest::Latest | GlRequest::Specific(Api::OpenGl, _) | GlRequest::GlThenGles { .. } => {
// GLX should be preferred over EGL, otherwise crashes may occur