From 4aa2b1e558993e0d81bcf5b694dca651a7943649 Mon Sep 17 00:00:00 2001 From: gramanas Date: Sat, 25 May 2024 01:36:35 +0300 Subject: aasaaap! --- src/shader.vert | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/shader.vert') diff --git a/src/shader.vert b/src/shader.vert index e36a5ea..6c050ac 100644 --- a/src/shader.vert +++ b/src/shader.vert @@ -17,6 +17,10 @@ layout(location = 1) out vec2 fragTexCoord; void main() { gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1.0); //gl_Position = vec4(inPosition * 2, 1.0); + gl_PointSize = 10.0f; + fragColor = inColor; fragTexCoord = inTexCoord; } + + -- cgit v1.2.3