Skip to content

Commit b6bbf9d

Browse files
committed
Merge pull request #67 from bvssvni/master
Added dependency graph to README
2 parents 4a815e0 + 7c2c870 commit b6bbf9d

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

Cargo.dot

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
digraph example3 {
2+
N0[label="opengl_graphics"];
3+
N1[label="shader_version"];
4+
N2[label="gl"];
5+
N3[label="gl_generator"];
6+
N4[label="khronos_api"];
7+
N5[label="graphics"];
8+
N6[label="vecmath"];
9+
N7[label="rust-xml"];
10+
N8[label="image"];
11+
N2 -> N3[label=""];
12+
N5 -> N6[label=""];
13+
N3 -> N4[label=""];
14+
N3 -> N7[label=""];
15+
N0 -> N5[label=""];
16+
N0 -> N2[label=""];
17+
N0 -> N8[label=""];
18+
N0 -> N1[label=""];
19+
}

Cargo.png

42.1 KB
Loading

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ OpenGL needs to load function pointers before use.
1010
If you are experiencing strange error messages like "X not loaded" this is likely the case.
1111
This is done automatically for you in the SDL2 and GLFW window back-ends for Piston.
1212
To do this manually, see the README in [gl-rs](https://github.com/bjz/gl-rs)
13+
14+
## Dependencies
15+
16+
![dependencies](./Cargo.png)
17+

0 commit comments

Comments
 (0)