mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 11:20:11 +01:00
13 lines
122 B
GLSL
13 lines
122 B
GLSL
/* PASS */
|
|
|
|
uniform float a;
|
|
uniform float b;
|
|
|
|
void main()
|
|
{
|
|
ivec2 c;
|
|
|
|
c = ivec2(a, b);
|
|
|
|
gl_Position = gl_Vertex;
|
|
}
|