From 1e436946514f3a0e9fe3d091394db6b86e06f033 Mon Sep 17 00:00:00 2001 From: kartofen Date: Sat, 11 Nov 2023 19:00:10 +0200 Subject: .obj loading --- files/shaders/shader1.vert | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'files/shaders/shader1.vert') diff --git a/files/shaders/shader1.vert b/files/shaders/shader1.vert index de25828..c85f877 100644 --- a/files/shaders/shader1.vert +++ b/files/shaders/shader1.vert @@ -6,12 +6,13 @@ layout(binding = 0) uniform uniform_buffer { mat4 proj; } ubo; -layout(location = 0) in vec2 inPosition; -layout(location = 1) in vec3 inColor; +layout(location = 0) in vec3 inPosition; +layout(location = 1) in vec3 iNormal; +layout(location = 2) in vec3 inColor; layout(location = 0) out vec3 fragColor; void main() { - gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 0.0, 1.0); + gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1.0); fragColor = inColor; } -- cgit v1.2.3