reVeno/Source/Resources/GL/WaveForm.fragment.glsl

8 lines
98 B
Text
Raw Normal View History

2020-06-13 10:56:20 +02:00
#version 330 core
in vec4 newColor;
out vec4 fragColor;
void main()
{
fragColor = newColor;
}