bevy/src/render/passes/ui/ui.frag
2020-01-10 22:42:54 -08:00

10 lines
134 B
GLSL

#version 450
layout(location = 0) in vec4 v_Color;
layout(location = 0) out vec4 o_Target;
void main() {
o_Target = v_Color;
}