ember/shaders/basic.frag
2024-11-25 18:59:37 +13:00

9 lines
149 B
GLSL

#version 460 core
layout(location = 0) in vec4 vert_color;
layout(location = 0) out vec4 frag_color;
void main() {
frag_color = vert_color;
}