ember/shaders/basic.frag

10 lines
149 B
GLSL
Raw Normal View History

2024-11-25 18:59:37 +13:00
#version 460 core
layout(location = 0) in vec4 vert_color;
layout(location = 0) out vec4 frag_color;
void main() {
frag_color = vert_color;
}