mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 11:00:11 +01:00
13 lines
131 B
GLSL
13 lines
131 B
GLSL
#version 120
|
|
/* PASS */
|
|
|
|
uniform bool a;
|
|
uniform int b;
|
|
|
|
void main()
|
|
{
|
|
float x;
|
|
|
|
x = (a) ? 2.0 : b;
|
|
gl_Position = vec4(x);
|
|
}
|