Skip to content

Commit

Permalink
Merge pull request #653 from Daggerbot/pr
Browse files Browse the repository at this point in the history
Change some uses of c_void to avoid libc version conflicts.
  • Loading branch information
tomaka committed Nov 5, 2015
2 parents 3b5fe6a + 7e4f795 commit 0386d09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/x11/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0386d09

Please sign in to comment.