pub type ClearColorValue = VkClearColorValue;
Expand description
A color value representation for clearing operations.
Constructable from RGBA values using From::from
.
Aliased Type§
#[repr(C)]
pub union ClearColorValue {
pub float32: [f32; 4],
pub int32: [i32; 4],
pub uint32: [u32; 4],
}
Fields§
§float32: [f32; 4]
§int32: [i32; 4]
§uint32: [u32; 4]