mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 20:00:10 +01:00
27 lines
273 B
Text
27 lines
273 B
Text
|
|
/* PASS */
|
||
|
|
|
||
|
|
uniform int a;
|
||
|
|
uniform float b;
|
||
|
|
uniform bool c;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
float x;
|
||
|
|
int y;
|
||
|
|
bool z;
|
||
|
|
|
||
|
|
x = float(a);
|
||
|
|
x = float(b);
|
||
|
|
x = float(c);
|
||
|
|
|
||
|
|
y = int(a);
|
||
|
|
y = int(b);
|
||
|
|
y = int(c);
|
||
|
|
|
||
|
|
z = bool(a);
|
||
|
|
z = bool(b);
|
||
|
|
z = bool(c);
|
||
|
|
|
||
|
|
gl_Position = gl_Vertex;
|
||
|
|
}
|