Set bool as int to uniform.
// Set variables to glsl uniform named "v". bool a = 1.0; bool b = 2.0; bool c = 3.0; shader.setUniform("v", a, b, c);
See Implementation
Set bool as int to uniform.