mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-03 23:15:23 +00:00
25 lines
891 B
Markdown
25 lines
891 B
Markdown
## Equal
|
|
Perform a component-wise equal-to comparison of two vectors
|
|
|
|
### Declaration
|
|
```glsl
|
|
bvec2 equal(vec2 x, vec2 y)
|
|
bvec3 equal(vec3 x, vec3 y)
|
|
bvec4 equal(vec4 x, vec4 y)
|
|
|
|
bvec2 equal(ivec2 x, ivec2 y)
|
|
bvec3 equal(ivec3 x, ivec3 y)
|
|
bvec4 equal(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
|
|
```equal()``` returns a boolean vector in which each element ```i``` is computed as ```x[i] == y[i]```.
|
|
|
|
### See Also
|
|
[lessThanEqual()](index.html#lessThanEqual.md), [lessThan()](index.html#lessThan.md), [greaterThanEqual()](index.html#greaterThanEqual.md), [greaterThan()](index.html#greaterThan.md), [notEqual()](index.html#notEqual.md), [any()](index.html#any.md), [all()](index.html#all.md), [not()](index.html#not.md)
|