summaryrefslogtreecommitdiff
path: root/gdk/resources/glsl/gl2-texture-rect.vs.glsl
blob: 492a10f45f22e7ec5e053fa5b0d17f7eaf84bc70 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 110

attribute vec2 position;
attribute vec2 uv;

varying vec2 vUv;

void main() {
  gl_Position = vec4(position, 0, 1);
  vUv = uv;
}