gtk/gdk/resources/glsl/gles2-texture.vs.glsl
Emmanuele Bassi 8bb4eb5544 gdk: Add GLES shaders
We cannot use GL shaders with GLES.
2016-04-25 12:29:36 +01:00

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);
}