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
32
33
34
35
36
37
38
39
40
41
42
|
digraph G {
fontname = "Roboto";
newrank=true;
node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"];
subgraph cluster_1 {
label = "renderers ";
labelloc = "b";
labeljust = "r";
fontcolor = "#ffffff";
color="#8797AF";
bgcolor="#8797AF";
style=rounded;
node [fillcolor=white, color=white, fontcolor=black];
etc_1 [label="...", style=empty, shape=none, fontcolor=white];
iced_wgpu;
}
subgraph cluster_2 {
label = "shells ";
labelloc = "b";
labeljust = "r";
fontcolor = "#ffffff";
color="#8797AF";
bgcolor="#8797AF";
style=rounded;
node [fillcolor=white, color=white, fontcolor=black];
etc_2 [label="...", style=empty, shape=none, fontcolor=white];
iced_winit;
}
{ rank = same; iced_wgpu iced_winit etc_1 etc_2 }
iced_core -> iced_native [style=dashed];
iced_native -> iced_wgpu;
iced_native -> iced_winit;
iced_core [style=dashed, fontcolor=black];
}
|