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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.