umbra/resources/tri/tri.vert
Curle a3e89b4e8f
Replace the renderer with a modern, module version. (#7)
* New Vulkan Renderer Module & Associated Fixups
2022-11-26 16:44:16 +00:00

11 lines
203 B
GLSL

#version 450
layout(location = 0) in vec3 in_pos;
layout(location = 1) in vec3 in_color;
layout(location = 0) out vec3 color;
void main() {
gl_Position = vec4(in_pos, 1.0);
color = in_color;
}