Struct glsl_layout::ivec4
source · pub struct ivec4(_);
Expand description
Vector of 4 int
values.
foo: ivec4
is equivalent to glsl’s ivec4 foo;
Examples
let x: ivec4 = [1i32; 4].into();
Trait Implementations§
source§impl Ord for ivec4
impl Ord for ivec4
source§impl PartialOrd<ivec4> for ivec4
impl PartialOrd<ivec4> for ivec4
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