From 7c26dcc4480025b5d11e315273541b3fb2c34a09 Mon Sep 17 00:00:00 2001 From: gramanas Date: Tue, 21 May 2024 01:35:20 +0300 Subject: ez going --- src/shader.vert | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/shader.vert') diff --git a/src/shader.vert b/src/shader.vert index 7ce15ef..76de53c 100644 --- a/src/shader.vert +++ b/src/shader.vert @@ -10,8 +10,11 @@ layout(location = 0) in vec2 inPosition; layout(location = 1) in vec3 inColor; layout(location = 0) out vec3 fragColor; +layout(location = 1) out vec2 fragPos; void main() { gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 0.0, 1.0); + //gl_Position = vec4(inPosition * 1.5, 1.0, 1.0); fragColor = inColor; + fragPos = inPosition; } -- cgit v1.2.3