ComplexPlotting/src/shader/basic.frag

10 lines
103 B
GLSL
Raw Normal View History

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