From 02077305a5b63fcf7242ac909d8caed5cc3cf18f Mon Sep 17 00:00:00 2001 From: talha Date: Sun, 31 Mar 2024 18:22:14 +0500 Subject: Completed lighting, Model loading --- source/shaders/light_source.vs.glsl | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 source/shaders/light_source.vs.glsl (limited to 'source/shaders/light_source.vs.glsl') diff --git a/source/shaders/light_source.vs.glsl b/source/shaders/light_source.vs.glsl deleted file mode 100644 index bf372d5..0000000 --- a/source/shaders/light_source.vs.glsl +++ /dev/null @@ -1,10 +0,0 @@ -#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); -} -- cgit v1.2.3