mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
8bb4eb5544
We cannot use GL shaders with GLES.
11 lines
141 B
GLSL
11 lines
141 B
GLSL
attribute vec2 position;
|
|
attribute vec2 uv;
|
|
|
|
varying highp vec2 vUv;
|
|
|
|
void main() {
|
|
vUv = uv;
|
|
|
|
gl_Position = vec4(position, 0.0, 1.0);
|
|
}
|