summaryrefslogtreecommitdiff
path: root/source/shaders/light_subject.vs.glsl
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2024-03-31 18:22:14 +0500
committertalha <talha@talhaamir.xyz>2024-03-31 18:22:14 +0500
commit02077305a5b63fcf7242ac909d8caed5cc3cf18f (patch)
tree9940db9786f9496e3a3a872955591c21b433632f /source/shaders/light_subject.vs.glsl
parent82de1ef9f3d7fd9268af7de92bfc929f48f5b3bb (diff)
Completed lighting, Model loading
Diffstat (limited to 'source/shaders/light_subject.vs.glsl')
-rw-r--r--source/shaders/light_subject.vs.glsl21
1 files changed, 0 insertions, 21 deletions
diff --git a/source/shaders/light_subject.vs.glsl b/source/shaders/light_subject.vs.glsl
deleted file mode 100644
index 49e58d8..0000000
--- a/source/shaders/light_subject.vs.glsl
+++ /dev/null
@@ -1,21 +0,0 @@
-#version 330 core
-
-layout(location = 0) in vec3 position;
-layout(location = 1) in vec3 normal;
-layout(location = 2) in vec2 inTexCoords;
-
-uniform mat4 Model;
-uniform mat4 View;
-uniform mat4 Projection;
-
-out vec3 fragNormal;
-out vec3 worldPosition;
-out vec2 texCoords;
-
-void main() {
- gl_Position = Projection * View * Model * vec4(position, 1.0);
- worldPosition = vec3(Model * vec4(position, 1.0));
- fragNormal = mat3(transpose(inverse(Model))) * normal;
- fragNormal = normalize(normal);
- texCoords = inTexCoords;
-}