mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-27 15:13:13 -04:00
Add with_robustness and handle robustness on all implementations
This commit is contained in:
@@ -13,6 +13,7 @@ use GlContext;
|
||||
use GlProfile;
|
||||
use GlRequest;
|
||||
use PixelFormat;
|
||||
use Robustness;
|
||||
use native_monitor::NativeMonitorId;
|
||||
|
||||
use objc::runtime::{Class, Object, Sel, BOOL, YES, NO};
|
||||
@@ -332,6 +333,13 @@ impl Window {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
match builder.gl_robustness {
|
||||
Robustness::RobustNoResetNotification | Robustness::RobustLoseContextOnReset => {
|
||||
return Err(CreationError::NotSupported);
|
||||
},
|
||||
_ => ()
|
||||
}
|
||||
|
||||
let app = match Window::create_app() {
|
||||
Some(app) => app,
|
||||
None => { return Err(OsError(format!("Couldn't create NSApplication"))); },
|
||||
|
||||
Reference in New Issue
Block a user