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