From 743cc317d7ee6bf197311e7a7cfa8f72f83b58d1 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Tue, 28 Jul 2015 19:54:17 +0200 Subject: Use EGL by default with X11 --- src/api/x11/window.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/api/x11/window.rs') diff --git a/src/api/x11/window.rs b/src/api/x11/window.rs index 4e6e17e..fc8ed5c 100644 --- a/src/api/x11/window.rs +++ b/src/api/x11/window.rs @@ -334,10 +334,10 @@ impl Window { let builder_clone = builder.clone(); let context = match builder.gl_version { GlRequest::Latest | GlRequest::Specific(Api::OpenGl, _) | GlRequest::GlThenGles { .. } => { - if let Some(ref glx) = display.glx { - Prototype::Glx(try!(GlxContext::new(glx.clone(), &display.xlib, &builder_clone, display.display))) - } else if let Some(ref egl) = display.egl { + if let Some(ref egl) = display.egl { Prototype::Egl(try!(EglContext::new(egl.clone(), &builder_clone, Some(display.display as *const _)))) + } else if let Some(ref glx) = display.glx { + Prototype::Glx(try!(GlxContext::new(glx.clone(), &display.xlib, &builder_clone, display.display))) } else { return Err(CreationError::NotSupported); } -- cgit v1.2.3