mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 15:50:17 +01:00
8 lines
156 B
GLSL
8 lines
156 B
GLSL
/* FAIL - type of second two operands must match */
|
|
|
|
uniform bool a;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = (a) ? vec4(1.0, 0.0, 0.0, 1.0) : vec3(0.0, 1.0, 0.0);
|
|
}
|