mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
11 lines
141 B
Plaintext
11 lines
141 B
Plaintext
|
attribute vec2 position;
|
||
|
attribute vec2 uv;
|
||
|
|
||
|
varying highp vec2 vUv;
|
||
|
|
||
|
void main() {
|
||
|
vUv = uv;
|
||
|
|
||
|
gl_Position = vec4(position, 0.0, 1.0);
|
||
|
}
|