forked from AuroraMiddleware/gtk
c607d51890
According to docs and Intel legacy drivers, GLSL version 130 is for GL 3.0 not GL 2.0/2.1 Validated files with reference compiler from https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/
10 lines
112 B
GLSL
10 lines
112 B
GLSL
#version 110
|
|
|
|
varying vec2 vUv;
|
|
|
|
uniform sampler2D map;
|
|
|
|
void main() {
|
|
gl_FragColor = texture2D (map, vUv);
|
|
}
|