aboutsummaryrefslogtreecommitdiff
path: root/shaders/space.vert
blob: fdfec593652bbcf19c6bbdabfdc539c8ac79d8af (plain) (blame)
1
2
3
4
5
6
7
8
#version 150
in vec3 in_position ;
out vec2 texMap ;

void main() {
    texMap = (in_position.xy + 1.0) / 2.0 ;
    gl_Position = vec4(in_position,1.0) ;
}