pub type BGR16 = Bgr<u16>;
Expand description
16-bit BGR in machine’s native endian
Aliased Type§
#[repr(C)]pub struct BGR16 {
pub b: u16,
pub g: u16,
pub r: u16,
}
Fields§
§b: u16
Blue Component
g: u16
Green Component
r: u16
Red Component