summaryrefslogtreecommitdiff
path: root/source/shaders/light_source.vs.glsl
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2024-03-13 22:54:43 +0500
committertalha <talha@talhaamir.xyz>2024-03-13 22:54:43 +0500
commit2a1557aa2b4d406c92703f60f2d34283fed5fcfb (patch)
treeed0690693f97a21a8d8495d9e7154cc490f23a05 /source/shaders/light_source.vs.glsl
parent20f2625f9832504661774b8a9f6661188fd97716 (diff)
Did some work on materials, refactored a few things
Diffstat (limited to 'source/shaders/light_source.vs.glsl')
-rw-r--r--source/shaders/light_source.vs.glsl10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/shaders/light_source.vs.glsl b/source/shaders/light_source.vs.glsl
new file mode 100644
index 0000000..bf372d5
--- /dev/null
+++ b/source/shaders/light_source.vs.glsl
@@ -0,0 +1,10 @@
+#version 330 core
+layout(location = 0) in vec3 position;
+
+uniform mat4 Model;
+uniform mat4 View;
+uniform mat4 Projection;
+
+void main() {
+ gl_Position = Projection * View * Model * vec4(position.x, position.y, position.z, 1.0);
+}