This commit is contained in:
2024-08-27 01:48:58 +02:00
parent 68abd9eefe
commit 346bc96ca8
44 changed files with 2593 additions and 546 deletions

View File

@@ -1,8 +1,17 @@
#version 430 core
#version 460 core
precision highp float;
out vec4 color;
out vec4 FragColor;
in vec3 ourColor;
in vec2 TexCoord;
in vec3 pos;
uniform sampler2D ourTexture;
void main()
{
color = vec4(1.0f, 1.0f, 1.0f, 1.0f);
}
FragColor = texture(ourTexture, TexCoord);
// FragColor = vec4(1.0f, TexCoord.x, 1.0f, 1.0);
// FragColor = vec4(137 / 255, 85 / 255, 95 / 255, 1.0f);
}