File: plugin-stack.gv

package info (click to toggle)
libinput 1.30.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,404 kB
  • sloc: ansic: 104,881; python: 3,570; sh: 183; makefile: 37; cpp: 7
file content (31 lines) | stat: -rw-r--r-- 522 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
digraph stack
{
  compound=true;
  rankdir="LR";
  node [
    shape="box";
  ]

  subgraph cluster_2 {
	  label="Kernel";
	  event0 [label="/dev/input/event0"]
  }

  subgraph cluster_1 {
	  label="libinput";
    subgraph cluster_0 {
	    label="Plugin pipeline";
	    p1 [label="00-foo.lua"];
	    p2 [label="10-bar.lua"];
    }
	  libinput [label="libinput core"];
  }


  compositor [label="Compositor"];

  event0 -> p1;
  p1 -> p2;
  p2 -> libinput;
  libinput -> compositor [ltail=cluster_1 label="libinput API"];
}