mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 16:10:06 +01:00
20 lines
272 B
Text
20 lines
272 B
Text
digraph stack
|
|
{
|
|
compound=true;
|
|
rankdir="LR";
|
|
node [
|
|
shape="box";
|
|
]
|
|
|
|
kernel [label="Kernel"];
|
|
|
|
libinput;
|
|
xserver [label="X Server"];
|
|
record [label="libinput record"];
|
|
|
|
kernel -> libinput
|
|
libinput -> xserver
|
|
|
|
kernel -> record;
|
|
record -> stdout
|
|
}
|