This commit is contained in:
Crizomb 2022-08-19 19:28:22 +02:00 committed by GitHub
commit 541c8cb42e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 1410 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#version 440 core
in vec3 in_position;
void main() {
gl_Position = vec4(in_position, 1);
}