Struct glutin::PixelFormat [−][src]
pub struct PixelFormat {
pub hardware_accelerated: bool,
pub color_bits: u8,
pub alpha_bits: u8,
pub depth_bits: u8,
pub stencil_bits: u8,
pub stereoscopy: bool,
pub double_buffer: bool,
pub multisampling: Option<u16>,
pub srgb: bool,
}Describes a possible format. Unused.
Fields
hardware_accelerated: bool
color_bits: u8
alpha_bits: u8
depth_bits: u8
stencil_bits: u8
stereoscopy: bool
double_buffer: bool
multisampling: Option<u16>
srgb: bool
Trait Implementations
impl Debug for PixelFormat[src]
impl Debug for PixelFormatfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for PixelFormat[src]
impl Clone for PixelFormatfn clone(&self) -> PixelFormat[src]
fn clone(&self) -> PixelFormatReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for PixelFormat
impl Send for PixelFormatimpl Sync for PixelFormat
impl Sync for PixelFormat