Skip to content

Commit

Permalink
Merge pull request #67 from bvssvni/master
Browse files Browse the repository at this point in the history
Added dependency graph to README
  • Loading branch information
bvssvni committed Oct 28, 2014
2 parents 4a815e0 + 7c2c870 commit b6bbf9d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Cargo.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
digraph example3 {
N0[label="opengl_graphics"];
N1[label="shader_version"];
N2[label="gl"];
N3[label="gl_generator"];
N4[label="khronos_api"];
N5[label="graphics"];
N6[label="vecmath"];
N7[label="rust-xml"];
N8[label="image"];
N2 -> N3[label=""];
N5 -> N6[label=""];
N3 -> N4[label=""];
N3 -> N7[label=""];
N0 -> N5[label=""];
N0 -> N2[label=""];
N0 -> N8[label=""];
N0 -> N1[label=""];
}
Binary file added Cargo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@ OpenGL needs to load function pointers before use.
If you are experiencing strange error messages like "X not loaded" this is likely the case.
This is done automatically for you in the SDL2 and GLFW window back-ends for Piston.
To do this manually, see the README in [gl-rs](https://github.com/bjz/gl-rs)

## Dependencies

![dependencies](./Cargo.png)

0 comments on commit b6bbf9d

Please sign in to comment.