Initial commit

This commit is contained in:
github-classroom[bot] 2024-11-29 09:50:03 +00:00 committed by GitHub
commit 686dcaf351
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
68 changed files with 6230 additions and 0 deletions

6
glsl/pass-through.vs Normal file
View file

@ -0,0 +1,6 @@
in vec4 pos_vs_in;
out vec4 pos_cs_in;
void main()
{
pos_cs_in = pos_vs_in;
}