aboutsummaryrefslogtreecommitdiffstats
path: root/vert.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'vert.glsl')
-rw-r--r--vert.glsl9
1 files changed, 6 insertions, 3 deletions
diff --git a/vert.glsl b/vert.glsl
index 2ee78d0..d33cc47 100644
--- a/vert.glsl
+++ b/vert.glsl
@@ -2,13 +2,16 @@
// SPDX-License-Identifier: MIT
#version 330 core
layout (location = 0) in vec3 pos;
-layout (location = 1) in vec3 color;
+layout (location = 1) in vec3 normal;
layout (location = 2) in vec2 uv;
out vec3 vcolor;
+uniform mat4 model;
+uniform mat4 view;
+uniform mat4 proj;
void main()
{
- gl_Position = vec4(pos, 1.0);
- vcolor = color;
+ gl_Position = proj * view * model * vec4(pos, 1.0);
+ vcolor = normal;
}