├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── exports.yml ├── libpng └── VITABUILD └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/pngshot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/pngshot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/pngshot/HEAD/README.md -------------------------------------------------------------------------------- /exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/pngshot/HEAD/exports.yml -------------------------------------------------------------------------------- /libpng/VITABUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/pngshot/HEAD/libpng/VITABUILD -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/pngshot/HEAD/main.c --------------------------------------------------------------------------------