mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-01 21:40:27 +00:00
.. | ||
README.md |
Not
Logically invert a boolean vector
Declaration
bvec2 not(bvec2 x)
bvec3 not(bvec3 x)
bvec4 not(bvec4 x)
Parameters
x
specifies the vector to be inverted.
Description
not()
logically inverts the boolean vector x
. It returns a new boolean vector for which each element i
is computed as !x[i]
.