armory/Shaders/grease_pencil/grease_pencil_shadows.vert.glsl
2017-12-13 14:44:21 +01:00

11 lines
119 B
GLSL
Executable file

#version 450
in vec3 pos;
in vec4 col;
uniform mat4 LWVP;
void main() {
gl_Position = LWVP * vec4(pos.xyz, 1.0);
}