ComplexPlotting/src/shader/basic.frag

10 lines
103 B
GLSL
Raw Normal View History

2020-09-02 10:15:29 +00:00
#version 460 core
2020-09-02 10:32:00 +00:00
in vec4 vertexColor;
out vec4 fragColor;
2020-09-02 10:15:29 +00:00
void main()
{
2020-09-02 10:32:00 +00:00
fragColor = vertexColor;
2020-09-02 10:15:29 +00:00
}