reVeno/Source/Resources/GL/WaveForm.fragment.glsl
2020-06-13 10:56:20 +02:00

8 lines
98 B
GLSL

#version 330 core
in vec4 newColor;
out vec4 fragColor;
void main()
{
fragColor = newColor;
}