mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-07 19:30:12 +00:00
10 lines
112 B
Plaintext
10 lines
112 B
Plaintext
|
#version 130
|
||
|
|
||
|
varying vec2 vUv;
|
||
|
|
||
|
uniform sampler2D map;
|
||
|
|
||
|
void main() {
|
||
|
gl_FragColor = texture2D (map, vUv);
|
||
|
}
|