thebookofshaders/glossary/not
Manoylov Andriy eb8d3c5f80 add ukrainian translation 2023-08-06 20:36:42 +03:00
..
README-ua.md add ukrainian translation 2023-08-06 20:36:42 +03:00
README-vi.md Translate the glossary section 2020-07-30 16:34:42 +07:00
README.md folder structure for glossary 2016-04-06 11:44:45 -04: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].

See Also

any(), all()