1#version 430 2layout(location = 0) in vec4 in_color; 3layout(location = 0) out vec4 out_color; 4void main() 5{ 6 out_color = in_color; 7}