forked from PistonDevelopers/hematite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.dot
56 lines (56 loc) · 1.36 KB
/
Cargo.dot
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
digraph example3 {
N0[label="hematite"];
N1[label="render"];
N2[label="device"];
N3[label="gfx_voxel"];
N4[label="vecmath"];
N5[label="image"];
N6[label="gfx_texture"];
N7[label="cgmath"];
N8[label="gfx_gl"];
N9[label="gl_generator"];
N10[label="khronos_api"];
N11[label="fps_counter"];
N12[label="shader_version"];
N13[label="cam"];
N14[label="event"];
N15[label="sdl2_window"];
N16[label="gl"];
N17[label="input"];
N18[label="sdl2"];
N19[label="gfx"];
N20[label="texture"];
N21[label="rust-xml"];
N22[label="gfx_macros"];
N1 -> N2[label=""];
N3 -> N4[label=""];
N3 -> N5[label=""];
N3 -> N6[label=""];
N8 -> N9[label=""];
N13 -> N14[label=""];
N13 -> N4[label=""];
N2 -> N8[label=""];
N15 -> N12[label=""];
N15 -> N16[label=""];
N15 -> N17[label=""];
N15 -> N14[label=""];
N15 -> N18[label=""];
N6 -> N19[label=""];
N6 -> N5[label=""];
N6 -> N20[label=""];
N19 -> N22[label=""];
N19 -> N2[label=""];
N19 -> N1[label=""];
N0 -> N19[label=""];
N0 -> N15[label=""];
N0 -> N11[label=""];
N0 -> N5[label=""];
N0 -> N3[label=""];
N0 -> N13[label=""];
N0 -> N7[label=""];
N0 -> N4[label=""];
N16 -> N9[label=""];
N14 -> N17[label=""];
N9 -> N21[label=""];
N9 -> N10[label=""];
}