11 lines
147 B
GLSL
Raw Normal View History

2023-10-29 23:33:08 +01:00
#version 440
layout(location = 0) in vec3 v_color;
layout(location = 0) out vec4 fragColor;
void main()
{
fragColor = vec4(v_color, 1.0);
}