vec4b
constvec4b:Vec4b
Defined in: packages/typegpu/src/data/vector.ts:252
Schema representing vec4<bool> - a vector with 4 elements of type bool.
Also a constructor function for this vector value.
Example
Section titled βExampleβconst vector = d.vec4b(); // (false, false, false, false)const vector = d.vec4b(true); // (true, true, true, true)const vector = d.vec4b(false, true, false, true); // (false, true, false, true)