mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-04 09:40:19 +00:00
10 lines
129 B
Plaintext
10 lines
129 B
Plaintext
|
precision mediump float;
|
||
|
|
||
|
uniform sampler2D map;
|
||
|
|
||
|
varying highp vec2 vUv;
|
||
|
|
||
|
void main() {
|
||
|
gl_FragColor = texture2D(map, vUv);
|
||
|
}
|