armory/Shaders/grease_pencil/grease_pencil.frag.glsl

10 lines
87 B
Plaintext
Raw Normal View History

2016-09-30 23:24:18 +02:00
#version 450
in vec4 color;
2016-10-12 17:52:27 +02:00
out vec4 fragColor;
2016-09-30 23:24:18 +02:00
void main() {
2016-10-17 17:39:40 +02:00
fragColor = color;
2016-09-30 23:24:18 +02:00
}