ComplexPlotting/shaders/grid.frag

8 lines
98 B
GLSL
Raw Permalink Normal View History

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