forked from AuroraMiddleware/gtk
55537cccbd
Having the shaders inlined as C strings makes them harder to edit and maintain.
10 lines
112 B
GLSL
10 lines
112 B
GLSL
#version 130
|
|
|
|
varying vec2 vUv;
|
|
|
|
uniform sampler2D map;
|
|
|
|
void main() {
|
|
gl_FragColor = texture2D (map, vUv);
|
|
}
|