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