summaryrefslogtreecommitdiff
path: root/03v.glsl
blob: d5286df825668e48b8d7689db6fedfe88c2c2a48 (plain)
1
2
3
4
5
6
7
8
9
attribute vec2 v_render_pos;
attribute vec2 v_pos;

varying vec2 pos;

void main() {
	gl_Position = vec4(v_render_pos, 0.0, 1.0);
	pos = v_pos;
}