summaryrefslogtreecommitdiff
path: root/src/sobel.vert
blob: 2bbcbe47838b14980e82c93e0190afa684dd25dc (plain)
1
2
3
4
5
6
7
8
9
10
#version 120

attribute vec2 vertex;
varying vec2 texcoord;

void main(void)
{
	texcoord = vertex * 0.5 + 0.5;
	gl_Position = vec4(vertex, 0, 1);
}