Two Triangles (garish)

This commit is contained in:
mtgmonkey
2025-11-27 17:50:45 +01:00
parent d4d9cab0e8
commit 4af0a1c4c2
8 changed files with 243 additions and 72 deletions

8
vert.glsl Normal file
View File

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