Skip to content

Commit

Permalink
Merge pull request #1975 from est31/mdbook
Browse files Browse the repository at this point in the history
Add mdbook github action
  • Loading branch information
est31 committed Dec 11, 2021
2 parents 455b1e4 + 345db04 commit c1f9f04
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 22 deletions.
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)

0 comments on commit c1f9f04

Please sign in to comment.