Starting day 19, blending.

This commit is contained in:
Zed A. Shaw 2026-08-29 13:13:41 -04:00
parent dc973009fd
commit 128f522089
94 changed files with 15008 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#version 330 core
out vec4 FragColor;
in vec2 TexCoord;
uniform sampler2D texture1;
void main()
{
FragColor = texture(texture1, TexCoord);
}