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