[require] GLSL >= 1.10 [vertex shader] void main() { gl_Position = gl_Vertex; } [fragment shader] uniform bool testBool; void main() { if (testBool) gl_FragColor = vec4(0.0, 1.0, 0.0, 1.0); else gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0); } [test] uniform int testBool 1 draw rect -1 -1 2 2 probe rgb 1 1 0.0 1.0 0.0