+ | First sphere

This commit is contained in:
TheRedShip
2024-10-14 23:16:28 +02:00
parent 163828707a
commit 9d7a30800e
10 changed files with 239 additions and 110 deletions

6
shaders/vertex.vert Normal file
View File

@ -0,0 +1,6 @@
#version 330 core
layout(location = 0) in vec2 vPos;
void main()
{
gl_Position = vec4(vPos, 0.0, 1.0);
};