daily update

This commit is contained in:
2025-12-29 09:08:40 +08:00
parent b32406225f
commit 411fc48982
130 changed files with 24830 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#version 330 core
uniform vec3 aFragColor;
out vec4 FragColor;
void main() {
FragColor = vec4(aFragColor, 1.0);
}