summaryrefslogtreecommitdiff
path: root/source/dw/app/shader/main.vert.glsl
blob: a60e9cad2af2cab79f7f5f8ca1678e32e0a8e5fd (plain) (blame)
1
2
3
4
5
6
7
#version 150 core

in vec3 pos;

void main() {
	gl_Position = vec4(pos.x, pos.y, pos.z, 1.0f);
}