Merge pull request #448 from vberger/x-wayland-split
Make platform::linux generic over X11 and Wayland
This commit is contained in:
commit
41af4406cb
5 changed files with 347 additions and 10 deletions
|
|
@ -14,6 +14,8 @@ use std::{mem, ptr};
|
|||
|
||||
use api::x11::ffi;
|
||||
|
||||
use platform::Window as PlatformWindow;
|
||||
|
||||
pub struct Context {
|
||||
glx: ffi::glx::Glx,
|
||||
display: *mut ffi::Display,
|
||||
|
|
@ -80,9 +82,12 @@ impl Context {
|
|||
});
|
||||
|
||||
let share = if let Some(win) = builder.sharing {
|
||||
match win.x.context {
|
||||
::api::x11::Context::Glx(ref c) => c.context,
|
||||
_ => panic!("Cannot share contexts between different APIs")
|
||||
match win {
|
||||
&PlatformWindow::X(ref win) => match win.x.context {
|
||||
::api::x11::Context::Glx(ref c) => c.context,
|
||||
_ => panic!("Cannot share contexts between different APIs")
|
||||
},
|
||||
_ => panic!("Cannot use glx on a non-X11 window.")
|
||||
}
|
||||
} else {
|
||||
ptr::null()
|
||||
|
|
|
|||
|
|
@ -147,6 +147,10 @@ lazy_static! {
|
|||
};
|
||||
}
|
||||
|
||||
pub fn is_available() -> bool {
|
||||
WAYLAND_CONTEXT.is_some()
|
||||
}
|
||||
|
||||
pub struct Window {
|
||||
shell_surface: ShellSurface<EGLSurface>,
|
||||
pending_events: Arc<Mutex<VecDeque<Event>>>,
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@ use api::dlopen;
|
|||
use api::glx::Context as GlxContext;
|
||||
use api::egl::Context as EglContext;
|
||||
|
||||
use platform::MonitorID as PlatformMonitorID;
|
||||
|
||||
pub use self::monitor::{MonitorID, get_available_monitors, get_primary_monitor};
|
||||
|
||||
mod events;
|
||||
|
|
@ -310,9 +312,9 @@ pub struct Window {
|
|||
|
||||
impl Window {
|
||||
pub fn new(builder: BuilderAttribs) -> Result<Window, CreationError> {
|
||||
let xlib = ffi::Xlib::open().unwrap(); // FIXME: gracious handling
|
||||
let xcursor = ffi::Xcursor::open().unwrap(); // FIXME: gracious handling
|
||||
let xf86vmode = ffi::Xf86vmode::open().unwrap(); // FIXME: gracious handling
|
||||
let xlib = try!(ffi::Xlib::open().map_err(|_| CreationError::NotSupported));
|
||||
let xcursor = try!(ffi::Xcursor::open().map_err(|_| CreationError::NotSupported));
|
||||
let xf86vmode = try!(ffi::Xf86vmode::open().map_err(|_| CreationError::NotSupported));
|
||||
|
||||
let glx = {
|
||||
let mut libglx = unsafe { dlopen::dlopen(b"libGL.so.1\0".as_ptr() as *const _, dlopen::RTLD_NOW) };
|
||||
|
|
@ -342,8 +344,8 @@ impl Window {
|
|||
};
|
||||
|
||||
let screen_id = match builder.monitor {
|
||||
Some(MonitorID(monitor)) => monitor as i32,
|
||||
None => unsafe { (xlib.XDefaultScreen)(display) },
|
||||
Some(PlatformMonitorID::X(MonitorID(monitor))) => monitor as i32,
|
||||
_ => unsafe { (xlib.XDefaultScreen)(display) },
|
||||
};
|
||||
|
||||
// getting the FBConfig
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue