mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-02 16:00:09 +01:00
8 lines
155 B
GLSL
8 lines
155 B
GLSL
/* FAIL - :? condition is not bool scalar */
|
|
|
|
uniform bvec4 a;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = (a) ? vec4(1.0, 0.0, 0.0, 1.0) : vec4(0.0, 1.0, 0.0, 1.0);
|
|
}
|