mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 02:10: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/
12 lines
144 B
GLSL
12 lines
144 B
GLSL
#version 110
|
|
|
|
attribute vec2 position;
|
|
attribute vec2 uv;
|
|
|
|
varying vec2 vUv;
|
|
|
|
void main() {
|
|
gl_Position = vec4(position, 0, 1);
|
|
vUv = uv;
|
|
}
|