mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 14:31:10 +00:00
5c7838e168
Make sure all uniform names have to match between the shader names and the _location integers we save in every Program struct.
6 lines
117 B
GLSL
6 lines
117 B
GLSL
void main() {
|
|
gl_Position = u_projection * u_modelview * vec4(aPosition, 0.0, 1.0);
|
|
|
|
vUv = vec2(aUv.x, aUv.y);
|
|
}
|