This commit is contained in:
2022-07-10 00:38:46 +02:00
commit cce94bcb3f
24 changed files with 20530 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#version 330 core
out vec4 FragColor;
in vec3 ourColor;
in vec2 TextureCords;
uniform sampler2D Texture;
void main() {
FragColor = texture(Texture, TextureCords) * vec4(ourColor, 1.0);
}