├── .gitignore ├── .gitmodules ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Cargo.toml ├── LICENSE-MIT ├── LICENSE-ZLIB ├── README.md ├── examples ├── demo-clock.rs ├── demo-cutout.rs ├── demo-glutin.rs ├── demo-text.rs ├── demo-transform.rs └── demo-ui.rs ├── nanovg-sys ├── Cargo.toml ├── build.rs ├── glad │ ├── glad.c │ └── glad.h ├── lib.rs └── nanovg_shim.c ├── resources ├── Mechanic of the Heart.ttf ├── NotoEmoji-Regular.ttf ├── Roboto-Bold.ttf ├── Roboto-Regular.ttf ├── entypo.ttf ├── images │ ├── image1.jpg │ ├── image10.jpg │ ├── image11.jpg │ ├── image12.jpg │ ├── image2.jpg │ ├── image3.jpg │ ├── image4.jpg │ ├── image5.jpg │ ├── image6.jpg │ ├── image7.jpg │ ├── image8.jpg │ └── image9.jpg └── lenna.png ├── rustfmt.toml ├── screenshots ├── README.md ├── demo-clock.png ├── demo-cutout.gif ├── demo-glutin.png ├── demo-text.png ├── demo-transform.png └── demo-ui.png └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE-ZLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/LICENSE-ZLIB -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/demo-clock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/examples/demo-clock.rs -------------------------------------------------------------------------------- /examples/demo-cutout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/examples/demo-cutout.rs -------------------------------------------------------------------------------- /examples/demo-glutin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/examples/demo-glutin.rs -------------------------------------------------------------------------------- /examples/demo-text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/examples/demo-text.rs -------------------------------------------------------------------------------- /examples/demo-transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/examples/demo-transform.rs -------------------------------------------------------------------------------- /examples/demo-ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/examples/demo-ui.rs -------------------------------------------------------------------------------- /nanovg-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/nanovg-sys/Cargo.toml -------------------------------------------------------------------------------- /nanovg-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/nanovg-sys/build.rs -------------------------------------------------------------------------------- /nanovg-sys/glad/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/nanovg-sys/glad/glad.c -------------------------------------------------------------------------------- /nanovg-sys/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/nanovg-sys/glad/glad.h -------------------------------------------------------------------------------- /nanovg-sys/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/nanovg-sys/lib.rs -------------------------------------------------------------------------------- /nanovg-sys/nanovg_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/nanovg-sys/nanovg_shim.c -------------------------------------------------------------------------------- /resources/Mechanic of the Heart.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/Mechanic of the Heart.ttf -------------------------------------------------------------------------------- /resources/NotoEmoji-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/NotoEmoji-Regular.ttf -------------------------------------------------------------------------------- /resources/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/Roboto-Bold.ttf -------------------------------------------------------------------------------- /resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /resources/entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/entypo.ttf -------------------------------------------------------------------------------- /resources/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image1.jpg -------------------------------------------------------------------------------- /resources/images/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image10.jpg -------------------------------------------------------------------------------- /resources/images/image11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image11.jpg -------------------------------------------------------------------------------- /resources/images/image12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image12.jpg -------------------------------------------------------------------------------- /resources/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image2.jpg -------------------------------------------------------------------------------- /resources/images/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image3.jpg -------------------------------------------------------------------------------- /resources/images/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image4.jpg -------------------------------------------------------------------------------- /resources/images/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image5.jpg -------------------------------------------------------------------------------- /resources/images/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image6.jpg -------------------------------------------------------------------------------- /resources/images/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image7.jpg -------------------------------------------------------------------------------- /resources/images/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image8.jpg -------------------------------------------------------------------------------- /resources/images/image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/images/image9.jpg -------------------------------------------------------------------------------- /resources/lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/resources/lenna.png -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 120 2 | 3 | -------------------------------------------------------------------------------- /screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/screenshots/README.md -------------------------------------------------------------------------------- /screenshots/demo-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/screenshots/demo-clock.png -------------------------------------------------------------------------------- /screenshots/demo-cutout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/screenshots/demo-cutout.gif -------------------------------------------------------------------------------- /screenshots/demo-glutin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/screenshots/demo-glutin.png -------------------------------------------------------------------------------- /screenshots/demo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/screenshots/demo-text.png -------------------------------------------------------------------------------- /screenshots/demo-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/screenshots/demo-transform.png -------------------------------------------------------------------------------- /screenshots/demo-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/screenshots/demo-ui.png -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinKelley/nanovg-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------