General clean up

This commit is contained in:
2024-10-15 18:56:25 +02:00
parent 3cc58e0b4b
commit 5e402d9077
17 changed files with 657 additions and 829 deletions
+3 -2
View File
@@ -1,11 +1,12 @@
#version 330 core
out vec4 FragColor;
in vec2 TexCoords;
in vec2 TexCoords;
uniform sampler2D tex;
void main()
{
vec3 color = texture(tex, TexCoords).rgb;
FragColor = vec4(color, 1.0);
FragColor = vec4(color, 1.0);
}