mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 15:00:05 +01:00
20 lines
307 B
Text
20 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
|
||
|
|
}
|