#version 450
layout(location = 0) out vec4 color;
layout(location = 0) flat in vec4 color_in;
void main() {
color = color_in;
}