pub struct SimpleWindowBuilder { /* private fields */ }Expand description
Builder to simplify glium/glutin context creation.
Implementations§
Source§impl SimpleWindowBuilder
impl SimpleWindowBuilder
Sourcepub fn new() -> SimpleWindowBuilder
pub fn new() -> SimpleWindowBuilder
Initializes a new builder with default values.
Sourcepub fn with_inner_size(self, width: u32, height: u32) -> SimpleWindowBuilder
pub fn with_inner_size(self, width: u32, height: u32) -> SimpleWindowBuilder
Requests the window to be of a certain size. If this is not set, the builder defaults to 800x480.
Sourcepub fn with_title(self, title: &str) -> SimpleWindowBuilder
pub fn with_title(self, title: &str) -> SimpleWindowBuilder
Set the initial title for the window.
Sourcepub fn set_window_builder(
self,
window_attributes: WindowAttributes,
) -> SimpleWindowBuilder
pub fn set_window_builder( self, window_attributes: WindowAttributes, ) -> SimpleWindowBuilder
Replace the used WindowAttributes,
do this before you set other parameters or you’ll overwrite the parameters.
Sourcepub fn with_config_template_builder(
self,
config_template_builder: ConfigTemplateBuilder,
) -> SimpleWindowBuilder
pub fn with_config_template_builder( self, config_template_builder: ConfigTemplateBuilder, ) -> SimpleWindowBuilder
Replace the used ConfigTemplateBuilder,
Can be used to configure among other things buffer sizes and number of samples for the window.
Sourcepub fn into_window_builder(self) -> WindowAttributes
pub fn into_window_builder(self) -> WindowAttributes
Returns the inner WindowAttributes.
Sourcepub fn build(
self,
event_loop: &impl GliumEventLoop,
) -> (Window, Display<WindowSurface>)
pub fn build( self, event_loop: &impl GliumEventLoop, ) -> (Window, Display<WindowSurface>)
Auto Trait Implementations§
impl Freeze for SimpleWindowBuilder
impl RefUnwindSafe for SimpleWindowBuilder
impl !Send for SimpleWindowBuilder
impl !Sync for SimpleWindowBuilder
impl Unpin for SimpleWindowBuilder
impl UnwindSafe for SimpleWindowBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more