aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/wayland
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-08-07 16:22:31 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-08-07 16:22:31 +0200
commit587dedaa9e95236f891d9a0e4ec04ee3700236a8 (patch)
tree86e5ba50cdab22fb225aa3b2178d9e04779809ec /src/api/wayland
parentbee3e0e0f0ed4b642afaa6d82389839e87c840f0 (diff)
downloadglutin-587dedaa9e95236f891d9a0e4ec04ee3700236a8.tar.gz
glutin-587dedaa9e95236f891d9a0e4ec04ee3700236a8.zip
Correctly handle eglGetDisplay
Diffstat (limited to 'src/api/wayland')
-rw-r--r--src/api/wayland/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/wayland/mod.rs b/src/api/wayland/mod.rs
index 826826e..77ebc16 100644
--- a/src/api/wayland/mod.rs
+++ b/src/api/wayland/mod.rs
@@ -8,6 +8,7 @@ use self::wayland::core::shell::{ShellSurface, ShellFullscreenMethod};
use libc;
use api::dlopen;
+use api::egl;
use api::egl::Context as EglContext;
use BuilderAttribs;
@@ -169,7 +170,7 @@ impl Window {
try!(EglContext::new(
egl,
&builder,
- Some(wayland_context.display.ptr() as *const _))
+ egl::NativeDisplay::Wayland(Some(wayland_context.display.ptr() as *const _)))
.and_then(|p| p.finish((*shell_surface).ptr() as *const _))
)
};