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

BIN
shaders/line_frag.spv Normal file

Binary file not shown.

BIN
shaders/line_vert.spv Normal file

Binary file not shown.

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);
} }

BIN
shaders/triangle_frag.spv Normal file

Binary file not shown.

BIN
shaders/triangle_vert.spv Normal file

Binary file not shown.