ComplexPlotting/shaders/grid.frag

8 lines
98 B
GLSL
Raw Permalink Normal View History

2020-09-02 12:15:29 +02:00
#version 460 core
2020-09-02 12:32:00 +02:00
out vec4 fragColor;
2020-09-02 12:15:29 +02:00
void main()
{
2020-09-04 20:29:55 +02:00
fragColor = vec4(0.1f, 0.1f, 0.1f, 1.0f);
}