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

in vec2 vertex;
out vec2 texcoord;

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