alecgl_old/sfml20test/dvert.vert
Alec Obradovich 03f7d95b13 fuckmess
what is this nonsense
2015-04-08 16:35:21 -05:00

10 lines
176 B
GLSL

#version 330
layout(location = 0) in vec2 position;
layout(location = 1) in vec2 tex;
out vec2 textex;
void main() {
textex = tex;
gl_Position = vec4(position, 0.0, 1.0);
}