mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
fail! -> panic!
This commit is contained in:
@@ -101,7 +101,7 @@ pub fn get_primary_monitor() -> MonitorID {
|
||||
}
|
||||
}
|
||||
|
||||
fail!("Failed to find the primary monitor")
|
||||
panic!("Failed to find the primary monitor")
|
||||
}
|
||||
|
||||
impl MonitorID {
|
||||
|
||||
@@ -510,7 +510,7 @@ impl Window {
|
||||
pub unsafe fn make_current(&self) {
|
||||
let res = ffi::glx::MakeCurrent(self.display, self.window, self.context);
|
||||
if res == 0 {
|
||||
fail!("glx::MakeCurrent failed");
|
||||
panic!("glx::MakeCurrent failed");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ pub fn get_available_monitors() -> Vec<MonitorID> {
|
||||
let nb_monitors = unsafe {
|
||||
let display = ffi::XOpenDisplay(ptr::null());
|
||||
if display.is_null() {
|
||||
fail!("get_available_monitors failed");
|
||||
panic!("get_available_monitors failed");
|
||||
}
|
||||
let nb_monitors = ffi::XScreenCount(display);
|
||||
ffi::XCloseDisplay(display);
|
||||
@@ -26,7 +26,7 @@ pub fn get_primary_monitor() -> MonitorID {
|
||||
let primary_monitor = unsafe {
|
||||
let display = ffi::XOpenDisplay(ptr::null());
|
||||
if display.is_null() {
|
||||
fail!("get_available_monitors failed");
|
||||
panic!("get_available_monitors failed");
|
||||
}
|
||||
let primary_monitor = ffi::XDefaultScreen(display);
|
||||
ffi::XCloseDisplay(display);
|
||||
|
||||
Reference in New Issue
Block a user