From e0540e6fee755444deb9986da38e2d10f15aeb97 Mon Sep 17 00:00:00 2001 From: USS Constellation <98734231+CptMacTavish404@users.noreply.github.com> Date: Wed, 13 Aug 2025 22:17:04 +0545 Subject: [PATCH] Update grid.vert Improved code readability --- grid.vert | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/grid.vert b/grid.vert index 2f3c81c..b8b3bca 100644 --- a/grid.vert +++ b/grid.vert @@ -1,6 +1,8 @@ #version 330 core layout(location = 0) in vec3 aPos; uniform mat4 viewProj; -void main() { +void main() +{ gl_Position = viewProj * vec4(aPos, 1.0); } +