mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
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
120 B
GLSL
10 lines
120 B
GLSL
#version 110
|
|
|
|
varying vec2 vUv;
|
|
|
|
uniform sampler2DRect map;
|
|
|
|
void main() {
|
|
gl_FragColor = texture2DRect (map, vUv);
|
|
}
|