pub struct PixelFormat {
pub size: u32,
pub flags: PixelFormatFlags,
pub fourcc: Option<FourCC>,
pub rgb_bit_count: Option<u32>,
pub r_bit_mask: Option<u32>,
pub g_bit_mask: Option<u32>,
pub b_bit_mask: Option<u32>,
pub a_bit_mask: Option<u32>,
}Fields§
§size: u32Size of this structure in bytes; set to 32
flags: PixelFormatFlagsValues which indicate what type of data is in the surface
fourcc: Option<FourCC>Codes for specifying compressed or custom formats.
rgb_bit_count: Option<u32>Number of bits in an RGB (possibly including alpha) format. Valid when flags includes RGB or LUMINANCE.
r_bit_mask: Option<u32>Red (or Y) mask for reading color data. For instance, given the A8R8G8B8 format, the red mask would be 0x00ff0000.
g_bit_mask: Option<u32>Green (or U) mask for reading color data. For instance, given the A8R8G8B8 format, the green mask would be 0x0000ff00.
b_bit_mask: Option<u32>Blue (or V) mask for reading color data. For instance, given the A8R8G8B8 format, the blue mask would be 0x000000ff
a_bit_mask: Option<u32>Alpha mask for reading alpha data. Valid of flags includes ALPHA_PIXELS or ALPHA. For instance, given the A8R8G8B8 format, the alpha mask would be 0xff000000
Implementations§
Trait Implementations§
Source§impl Clone for PixelFormat
impl Clone for PixelFormat
Source§fn clone(&self) -> PixelFormat
fn clone(&self) -> PixelFormat
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more