From 7f66a924156e6baa9110e2e023e3a24c31ce95d3 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 00:08:38 -0400 Subject: Added LIGHTING --- Shaders/world.vert | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Shaders/world.vert') diff --git a/Shaders/world.vert b/Shaders/world.vert index 743ff3d..0760183 100644 --- a/Shaders/world.vert +++ b/Shaders/world.vert @@ -9,9 +9,11 @@ uniform mat4 view; uniform mat4 model; out vec2 texCoord; +out vec4 fragCoord; void main() { texCoord = texc; - gl_Position = projection * view * model * vec4(vertex, 1.0f); + fragCoord = vec4(vertex, 1.0f); + gl_Position = projection * view * model * fragCoord; } -- cgit v1.2.3