From b04db611ed0eb7ec9e1b7d988f3031fe63a1de52 Mon Sep 17 00:00:00 2001 From: gramanas Date: Tue, 21 May 2024 11:56:12 +0300 Subject: hot reload shaders bby --- src/shader.vert | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/shader.vert') diff --git a/src/shader.vert b/src/shader.vert index 76de53c..f3355d1 100644 --- a/src/shader.vert +++ b/src/shader.vert @@ -4,6 +4,7 @@ layout(binding = 0) uniform UniformBufferObject { mat4 model; mat4 view; mat4 proj; + vec2 resolution; } ubo; layout(location = 0) in vec2 inPosition; @@ -13,8 +14,8 @@ 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); + //gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition * 2, 0.0, 1.0); + gl_Position = vec4(inPosition * 2, 0.0, 1.0); fragColor = inColor; fragPos = inPosition; } -- cgit v1.2.3