#version 450 layout (location = 0) out vec4 frag_color; layout (location = 1) in vec3 color; void main() { frag_color = vec4(color, 1); }