Function glm::builtin::greaterThan
[−]
[src]
pub fn greaterThan<T: Primitive, B: GenBVec, V: VecRel<T, B>>(x: V, y: V) -> B
Returns the component-wise compare of x > y
.
Example
use glm::*; let a = ivec4(1, 2, 3, 4); let b = ivec4(2, 2, 3, 3); assert_eq!(greaterThan(a, b), bvec4(false, false, false, true)); assert_eq!(greaterThan(a, b), lessThan(b, a));