This commit is contained in:
2021-02-21 18:44:18 +01:00
parent b98c85a13a
commit f209666144
5 changed files with 1 additions and 0 deletions

View File

@@ -40,4 +40,5 @@ void main() {
vec3 specular_color = specular_value * specular_strength * light_color;
out_color = vec4(ambient_color + diffuse_color + specular_color, 1.0) * texture(diffuse_tex, tex_coords);
// out_color = vec4(1, 0, 0, 1);
}