#version 330

in vec3 position;

out vec2 texCoords;

void main() {
	
	texCoords = (position.xy + 1.0) * 0.5;
	gl_Position = vec4(position, 1.0);

}