mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-05-20 14:48:14 +02:00
8 lines
143 B
GLSL
8 lines
143 B
GLSL
#version 450
|
|
|
|
layout(location = 0) in vec3 v_color;
|
|
layout(location = 0) out vec4 out_color;
|
|
|
|
void main() {
|
|
out_color = vec4(v_color, 1.0);
|
|
}
|