gtk2/gdk/resources/glsl/gl3-texture-rect.vs.glsl

12 lines
144 B
Plaintext
Raw Normal View History

#version 150
attribute vec2 position;
attribute vec2 uv;
varying vec2 vUv;
void main() {
gl_Position = vec4(position, 0, 1);
vUv = uv;
}