diff options
author | sanine-a <sanine.not@pm.me> | 2020-05-24 18:49:46 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-05-24 18:49:46 -0500 |
commit | 2ca743d8df36f8cf863caa9c40f965398f72ef2e (patch) | |
tree | 9fddae310989e47e95e54fb085a818adfe1f392e /demo.vs | |
parent | abf135246914e5ad57892fb005274da96f040fc2 (diff) |
add blinn-phong lighting demo
Diffstat (limited to 'demo.vs')
-rw-r--r-- | demo.vs | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,11 +1,14 @@ #version 330 core layout (location = 0) in vec3 position; -layout (location = 1) in vec3 normal; +layout (location = 1) in vec3 in_normal; layout (location = 2) in vec2 texCoord; out vec2 texture_coordinate; +out vec3 normal; +out vec3 fragment_position; uniform mat4 model; +uniform mat3 normal_mat; uniform mat4 view; uniform mat4 projection; @@ -13,4 +16,6 @@ void main() { gl_Position = projection * view * model * vec4(position.xyz, 1.0); texture_coordinate = texCoord; + normal = mat3(view) * normal_mat * in_normal; + fragment_position = vec3(view * model * vec4(position.xyz, 1.0)); }
\ No newline at end of file |