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