mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2025-12-20 07:00:09 +01:00
10 lines
134 B
GLSL
10 lines
134 B
GLSL
|
|
#version 450 core
|
||
|
|
|
||
|
|
layout(location = 0) in vec4 v_color;
|
||
|
|
|
||
|
|
layout(location = 0) out vec4 f_color;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
f_color = v_color;
|
||
|
|
}
|