#include #include #include #include #include int test_not() { int Error(0); { glm::bvec1 v(false); Error += glm::all(glm::not_(v)) ? 0 : 1; } { glm::bvec2 v(false); Error += glm::all(glm::not_(v)) ? 0 : 1; } { glm::bvec3 v(false); Error += glm::all(glm::not_(v)) ? 0 : 1; } { glm::bvec4 v(false); Error += glm::all(glm::not_(v)) ? 0 : 1; } return Error; } int main() { int Error(0); Error += test_not(); return Error; }