mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 15:00:05 +01:00
18 lines
253 B
Text
18 lines
253 B
Text
|
|
digraph stack
|
||
|
|
{
|
||
|
|
rankdir="LR";
|
||
|
|
node [
|
||
|
|
shape="box";
|
||
|
|
]
|
||
|
|
|
||
|
|
kernel [label="Kernel"];
|
||
|
|
|
||
|
|
libinput;
|
||
|
|
compositor [label="Wayland Compositor"];
|
||
|
|
client [label="Wayland Client"];
|
||
|
|
|
||
|
|
kernel -> libinput
|
||
|
|
libinput -> compositor
|
||
|
|
compositor -> client
|
||
|
|
}
|