mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-11 21:31:29 +11:00
Add dummy implementation for OS/X
This commit is contained in:
parent
52cccb8dda
commit
f4fb699b52
|
@ -1 +1,5 @@
|
||||||
language: rust
|
language: rust
|
||||||
|
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
- osx
|
||||||
|
|
|
@ -26,10 +26,12 @@ use winimpl = win32;
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
use winimpl = x11;
|
use winimpl = x11;
|
||||||
|
|
||||||
#[cfg(windows)]
|
#[cfg(target_os = "win32")]
|
||||||
mod win32;
|
mod win32;
|
||||||
#[cfg(unix)]
|
#[cfg(target_os = "linux")]
|
||||||
mod x11;
|
mod x11;
|
||||||
|
#[cfg(target_os = "macos")]
|
||||||
|
mod osx;
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
//mod egl;
|
//mod egl;
|
||||||
|
|
79
src/osx/mod.rs
Normal file
79
src/osx/mod.rs
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
//! Dummy implementation for OS/X to make gl-init-rs compile on this platform
|
||||||
|
|
||||||
|
use WindowBuilder;
|
||||||
|
|
||||||
|
pub struct Window;
|
||||||
|
|
||||||
|
pub struct MonitorID;
|
||||||
|
|
||||||
|
pub fn get_available_monitors() -> Vec<MonitorID> {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_primary_monitor() -> MonitorID {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
impl MonitorID {
|
||||||
|
pub fn get_name(&self) -> Option<String> {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_dimensions(&self) -> (uint, uint) {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Window {
|
||||||
|
pub fn new(_builder: WindowBuilder) -> Result<Window, String> {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn is_closed(&self) -> bool {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_title(&self, _title: &str) {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_position(&self) -> Option<(int, int)> {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_position(&self, _x: uint, _y: uint) {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_inner_size(&self) -> Option<(uint, uint)> {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_outer_size(&self) -> Option<(uint, uint)> {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_inner_size(&self, _x: uint, _y: uint) {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn poll_events(&self) -> Vec<Event> {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn wait_events(&self) -> Vec<Event> {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub unsafe fn make_current(&self) {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_proc_address(&self, _addr: &str) -> *const () {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn swap_buffers(&self) {
|
||||||
|
unimplemented!()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue