mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
55537cccbd
Having the shaders inlined as C strings makes them harder to edit and maintain.
12 lines
129 B
GLSL
12 lines
129 B
GLSL
#version 150
|
|
|
|
in vec2 vUv;
|
|
|
|
out vec4 vertexColor;
|
|
|
|
uniform sampler2D map;
|
|
|
|
void main() {
|
|
vertexColor = texture2D (map, vUv);
|
|
}
|