armory/Shaders/grease_pencil/grease_pencil.frag.glsl

14 lines
133 B
Plaintext
Raw Normal View History

2016-09-30 23:24:18 +02:00
#version 450
#ifdef GL_ES
precision mediump float;
#endif
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
}