From af57524fb3d6914ab413023af4b197d2eb8e6894 Mon Sep 17 00:00:00 2001 From: grm Date: Mon, 16 Dec 2024 11:16:24 +0200 Subject: smol progress --- src/shader.vert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shader.vert') diff --git a/src/shader.vert b/src/shader.vert index 182bd51..58f8712 100644 --- a/src/shader.vert +++ b/src/shader.vert @@ -17,7 +17,7 @@ layout(location = 0) out vec3 fragColor; layout(location = 1) out vec2 fragTexCoord; void main() { - gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1.0); + gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1); //gl_Position = vec4(inPosition * 2, 1.0); gl_PointSize = 1.5f; -- cgit v1.2.3