opengl-stuff/shaders/light_cube_vertex.glsl

15 lines
238 B
Text
Raw Normal View History

2023-07-25 11:52:12 +03:00
#version 330 core
layout (location = 0) in vec3 aPos;
2023-09-02 02:39:46 +03:00
layout(std140, binding = 0) uniform Matrices
{
mat4 projection;
mat4 view;
};
2023-07-25 11:52:12 +03:00
uniform mat4 model;
void main()
{
gl_Position = projection * view * model * vec4(aPos, 1.0);
}