lyon 0.4.1

2D Graphics rendering on the GPU using tessellation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

echo "building all crates..."
cd ./core && cargo $1 &&
cd ../tessellation && cargo $1 &&
cd ../extra && cargo $1 &&
cd ../path_builder && cargo $1 &&
cd ../path_iterator && cargo $1 &&
cd ../path && cargo $1 &&
cd ../renderer && cargo $1 &&
cd ../cli && cargo $1 &&
cd ../examples/gfx_logo && cargo build &&
echo "...done"