ComplexPlotting/shaders/grid.frag
2020-09-04 20:29:55 +02:00

8 lines
98 B
GLSL

#version 460 core
out vec4 fragColor;
void main()
{
fragColor = vec4(0.1f, 0.1f, 0.1f, 1.0f);
}