#version 450 uniform mat4 LVWVP; in vec3 pos; out vec4 wvpposition; void main() { wvpposition = LVWVP * vec4(pos, 1.0); gl_Position = wvpposition; }