Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mdbook github action #1975

Merged
merged 2 commits into from Dec 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -35,3 +35,13 @@ jobs:
RUSTFLAGS: -D warnings
run: |
cargo doc --all --all-features
book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install mdbook
run: |
sudo snap install mdbook
- name: Run mdbook
run: |
cd book && mdbook build
45 changes: 23 additions & 22 deletions book/SUMMARY.md
@@ -1,24 +1,25 @@
# Summary

- [Intro](README.md)
- [Opening a window](tuto-01-getting-started.md)
- [Drawing a triangle](tuto-02-triangle.md)
- [Uniforms](tuto-03-animated-triangle.md)
- [Matrices](tuto-04-matrices.md)
- [Adding colors](tuto-05-colors.md)
- [Adding a texture](tuto-06-texture.md)
- [A more complex shape](tuto-07-shape.md)
- [Gouraud shading](tuto-08-gouraud.md)
- [Depth testing](tuto-09-depth.md)
- [Adjusting the perspective](tuto-10-perspective.md)
- [Backface culling](tuto-11-backface-culling.md)
- [The camera and summary of the vertex processing stages](tuto-12-camera.md)
- [Blinn-phong shading](tuto-13-phong.md)
- [Normal mapping](tuto-14-wall.md)
- [Parallax mapping]()
- [Deferred shading]()
- [Shadow mapping]()
- [Antialiasing]()
- [Drawing lots of objects with instancing]()
- [Performances](perf-intro.md)
- [Synchronization](perf-sync.md)
[Intro](README.md)

- [Opening a window](tuto-01-getting-started.md)
- [Drawing a triangle](tuto-02-triangle.md)
- [Uniforms](tuto-03-animated-triangle.md)
- [Matrices](tuto-04-matrices.md)
- [Adding colors](tuto-05-colors.md)
- [Adding a texture](tuto-06-texture.md)
- [A more complex shape](tuto-07-shape.md)
- [Gouraud shading](tuto-08-gouraud.md)
- [Depth testing](tuto-09-depth.md)
- [Adjusting the perspective](tuto-10-perspective.md)
- [Backface culling](tuto-11-backface-culling.md)
- [The camera and summary of the vertex processing stages](tuto-12-camera.md)
- [Blinn-phong shading](tuto-13-phong.md)
- [Normal mapping](tuto-14-wall.md)
- [Parallax mapping]()
- [Deferred shading]()
- [Shadow mapping]()
- [Antialiasing]()
- [Drawing lots of objects with instancing]()
- [Performances](perf-intro.md)
- [Synchronization](perf-sync.md)