Struct glsl_layout::vec4
source · pub struct vec4(_);
Expand description
Vector of 4 float
values.
foo: vec4
is equivalent to glsl’s vec4 foo;
Examples
let x: vec4 = [1f32; 4].into();
Trait Implementations§
source§impl PartialOrd<vec4> for vec4
impl PartialOrd<vec4> for vec4
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more