gravity/assets/shaders/shader.vert

20 lines
467 B
GLSL
Raw Normal View History

#version 330 core
layout (location = 0) in vec3 pos;
2023-10-15 18:38:47 +00:00
layout (location = 1) in vec3 normal;
2023-10-14 16:24:51 +00:00
uniform mat4 view;
uniform mat4 projection;
2023-10-16 18:48:12 +00:00
uniform mat4 translation;
uniform mat4 rotation;
uniform vec3 color;
2023-10-14 16:24:51 +00:00
2023-10-15 18:38:47 +00:00
out vec4 frag_pos;
out vec4 frag_normal;
out vec3 object_color;
void main() {
gl_Position = projection * view * translation * vec4(pos.xyz, 1.0);
2023-10-15 18:38:47 +00:00
frag_pos = gl_Position;
2023-10-16 18:48:12 +00:00
frag_normal = translation * vec4(normal.xyz, 1.0);
object_color = color;
}