Initial commit

This commit is contained in:
2022-01-20 21:58:50 +08:00
commit b44d41ec66
86 changed files with 5415 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#version 330
in vec4 fragColor;
out vec4 outputColor;
void main() {
outputColor = fragColor;
}