armory/Shaders/grease_pencil/grease_pencil_shadows.vert.glsl
2016-10-25 13:01:20 +02:00

15 lines
163 B
GLSL
Executable file

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