terrain-gen/shaders/normal.frag

7 lines
86 B
GLSL

#version 420 core
out vec4 out_color;
void main() {
out_color = vec4(0,0,0,1);
}