mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-28 07:33:14 -04:00
* Add support for generating dummy DeviceIDs and WindowIDs * Fix linux * Improve docs and move dummy to unsafe * Strengthen guarantees a bit * Add backticks to CHANGELOG.md Co-Authored-By: Xaeroxe <xaeroxe@amethyst-engine.org>
38 lines
860 B
Rust
38 lines
860 B
Rust
#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd",
|
|
target_os = "netbsd", target_os = "openbsd"))]
|
|
|
|
pub use self::window::Window;
|
|
pub use self::event_loop::{EventsLoop, EventsLoopProxy, EventsLoopSink, MonitorId};
|
|
|
|
use sctk::reexports::client::protocol::wl_surface;
|
|
use sctk::reexports::client::Proxy;
|
|
|
|
mod event_loop;
|
|
mod pointer;
|
|
mod touch;
|
|
mod keyboard;
|
|
mod window;
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
pub struct DeviceId;
|
|
|
|
impl DeviceId {
|
|
pub unsafe fn dummy() -> Self {
|
|
DeviceId
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
pub struct WindowId(usize);
|
|
|
|
impl WindowId {
|
|
pub unsafe fn dummy() -> Self {
|
|
WindowId(0)
|
|
}
|
|
}
|
|
|
|
#[inline]
|
|
fn make_wid(s: &Proxy<wl_surface::WlSurface>) -> WindowId {
|
|
WindowId(s.c_ptr() as usize)
|
|
}
|