summaryrefslogblamecommitdiff
path: root/source/dw/app/shader/main.vert.glsl
blob: fb6999c407bc8b62189d2ec10a1ebaaf1a5cb054 (plain) (tree)
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);
}