diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 00:08:38 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 00:08:38 -0400 |
commit | 7f66a924156e6baa9110e2e023e3a24c31ce95d3 (patch) | |
tree | cd15542fcebdec4d49af9fae1f4867a1f3947094 /Shaders/world.vert | |
parent | 1ecf176a48d8a3e4e17df2ebcc4f8974cd1ce023 (diff) |
Added LIGHTING
Diffstat (limited to 'Shaders/world.vert')
-rw-r--r-- | Shaders/world.vert | 4 |
1 files changed, 3 insertions, 1 deletions
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; } |