armory/Shaders/grease_pencil/grease_pencil_shadows.vert.glsl

15 lines
163 B
Plaintext
Raw Normal View History

2016-10-02 19:52:40 +02:00
#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);
}