diff options
-rw-r--r-- | examples/fullscreen.rs | 2 | ||||
-rw-r--r-- | src/lib.rs | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/examples/fullscreen.rs b/examples/fullscreen.rs index 80e6089..e5f8fd4 100644 --- a/examples/fullscreen.rs +++ b/examples/fullscreen.rs @@ -23,7 +23,7 @@ fn main() { let window = init::WindowBuilder::new() .with_title("Hello world!".to_string()) - .with_monitor(monitor) + .with_fullscreen(monitor) .build() .unwrap(); @@ -43,17 +43,22 @@ impl WindowBuilder { } } + /// Requests the window to be of specific dimensions. + /// + /// Width and height are in pixels. pub fn with_dimensions(mut self, width: uint, height: uint) -> WindowBuilder { self.dimensions = (width, height); self } + /// Requests a specific title for the window. pub fn with_title(mut self, title: String) -> WindowBuilder { self.title = title; self } - pub fn with_monitor(mut self, monitor: MonitorID) -> WindowBuilder { + /// Requests fullscreen mode. + pub fn with_fullscreen(mut self, monitor: MonitorID) -> WindowBuilder { let MonitorID(monitor) = monitor; self.monitor = Some(monitor); self |