Files
fall-fever/res/shaders/light.frag
2020-09-08 00:28:07 +02:00

8 lines
101 B
GLSL

#version 330 core
layout(location = 0) out vec4 f_color;
void main() {
f_color = vec4(1.0f);
}