You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/glossary/greaterThanEqual
Manoylov Andriy eb8d3c5f80 add ukrainian translation 10 months ago
..
README-ua.md add ukrainian translation 10 months ago
README-vi.md Translate the glossary section 4 years ago
README.md folder structure for glossary 8 years ago

README.md

GreaterThanEqual

Perform a component-wise greater-than-or-equal comparison of two vectors

Declaration

bvec2 greaterThanEqual(vec2 x, vec2 y)  
bvec3 greaterThanEqual(vec3 x, vec3 y)  
bvec4 greaterThanEqual(vec4 x, vec4 y)  

bvec2 greaterThanEqual(ivec2 x, ivec2 y)  
bvec3 greaterThanEqual(ivec3 x, ivec3 y)  
bvec4 greaterThanEqual(ivec4 x, ivec4 y)

Parameters

x specifies the first vector to be used in the comparison operation.

y specifies the second vector to be used in the comparison operation.

Description

greaterThanEqual() returns a boolean vector in which each element i is computed as x[i] ≥ y[i].

See Also

lessThanEqual(), lessThan(), greaterThan(), equal(), notEqual(), any(), all(), not()