2024-01-07 22:27:53 -07:00
|
|
|
#version 450
|
|
|
|
|
2024-01-08 12:42:59 -07:00
|
|
|
layout(binding = 0) uniform UniformBufferObject {
|
|
|
|
mat4 model;
|
|
|
|
mat4 view;
|
|
|
|
mat4 proj;
|
|
|
|
} ubo;
|
|
|
|
|
2024-01-08 09:44:47 -07:00
|
|
|
layout(location = 0) in vec2 inPosition;
|
|
|
|
layout(location = 1) in vec3 inColor;
|
2024-01-07 22:27:53 -07:00
|
|
|
|
2024-01-08 09:44:47 -07:00
|
|
|
layout(location = 0) out vec3 fragColor;
|
2024-01-07 22:27:53 -07:00
|
|
|
|
|
|
|
void main() {
|
2024-01-08 12:42:59 -07:00
|
|
|
gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 0.0, 1.0);
|
2024-01-08 09:44:47 -07:00
|
|
|
fragColor = inColor;
|
2024-01-07 22:27:53 -07:00
|
|
|
}
|