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
Binary file not shown.
Binary file not shown.
+1
View File
@@ -40,4 +40,5 @@ void main() {
vec3 specular_color = specular_value * specular_strength * light_color; 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(ambient_color + diffuse_color + specular_color, 1.0) * texture(diffuse_tex, tex_coords);
// out_color = vec4(1, 0, 0, 1);
} }
Binary file not shown.
Binary file not shown.