This commit is contained in:
2020-06-24 21:47:26 +02:00
parent 63eb97b908
commit eee534d816
5 changed files with 73 additions and 27 deletions

7
shader/test.vert Normal file
View File

@ -0,0 +1,7 @@
#version 330 core
layout (location = 0) in vec3 aPos;
void main()
{
gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
}