mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
Merge pull request #13 from pnkfelix/fsk-fix-osx-dummy-impl
Fix bugs in OS X dummy impl
This commit is contained in:
@@ -23,8 +23,10 @@ pub use events::*;
|
||||
|
||||
#[cfg(windows)]
|
||||
use winimpl = win32;
|
||||
#[cfg(unix)]
|
||||
#[cfg(target_os = "linux")]
|
||||
use winimpl = x11;
|
||||
#[cfg(target_os = "macos")]
|
||||
use winimpl = osx;
|
||||
|
||||
#[cfg(target_os = "win32")]
|
||||
mod win32;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
//! Dummy implementation for OS/X to make gl-init-rs compile on this platform
|
||||
|
||||
use WindowBuilder;
|
||||
use {Event, WindowBuilder};
|
||||
|
||||
pub struct Window;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user