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,16 @@
#version 330
uniform mat4 projection;
uniform mat4 view;
uniform mat4 model;
in vec3 vert;
in vec4 vertColor;
out vec4 fragColor;
void main() {
fragColor = vertColor;
gl_Position = projection * view * model * vec4(vert, 1);
}