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

14 lines
133 B
GLSL
Executable file

#version 450
#ifdef GL_ES
precision mediump float;
#endif
in vec4 color;
out vec4 fragColor;
void main() {
fragColor = color;
}