mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 11:20:11 +01:00
11 lines
194 B
GLSL
11 lines
194 B
GLSL
/* FAIL - if-statement condition is not bool scalar */
|
|
|
|
uniform bvec4 a;
|
|
|
|
void main()
|
|
{
|
|
if (a)
|
|
gl_Position = vec4(1.0, 0.0, 0.0, 1.0);
|
|
else
|
|
gl_Position = vec4(0.0, 1.0, 0.0, 1.0);
|
|
}
|