mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 12:40:05 +01:00
19 lines
307 B
Text
19 lines
307 B
Text
digraph stack
|
|
{
|
|
rankdir="LR";
|
|
node [
|
|
shape="box";
|
|
]
|
|
|
|
kernel [label="Kernel"];
|
|
|
|
libinput;
|
|
xf86libinput [label="xf86-input-libinput"];
|
|
xserver [label="X Server"];
|
|
client [label="X11 client"];
|
|
|
|
kernel -> libinput
|
|
libinput -> xf86libinput
|
|
xf86libinput -> xserver
|
|
xserver -> client
|
|
}
|