From c62e2cd49649109f0135e56ee8add0dab2254d01 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sun, 20 Aug 2017 20:21:29 +0500 Subject: 2017-08-20 --- cwd/shaders/face.vs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cwd/shaders/face.vs') diff --git a/cwd/shaders/face.vs b/cwd/shaders/face.vs index 95818ef..9bf2639 100644 --- a/cwd/shaders/face.vs +++ b/cwd/shaders/face.vs @@ -4,11 +4,13 @@ layout (location = 2) in vec2 UvCoordinates; layout (location = 7) in vec4 Texture; layout (location = 8) in mat4 model; layout (location = 12) in vec3 color; +layout (location = 13) in vec2 light; out VS_OUT { vec2 UvPosition; vec4 Texture; vec3 Color; + vec2 Light; } vs_out; uniform mat4 view; @@ -22,4 +24,5 @@ void main() vs_out.UvPosition = vec2(UvCoordinates.x,UvCoordinates.y); vs_out.Texture = Texture; vs_out.Color = color; + vs_out.Light = light; } -- cgit v1.2.3