├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── SegaPVRImage.c ├── SegaPVRImage.h ├── main.cpp ├── stb_image.h └── stb_image_write.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/README.md -------------------------------------------------------------------------------- /SegaPVRImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/SegaPVRImage.c -------------------------------------------------------------------------------- /SegaPVRImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/SegaPVRImage.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/main.cpp -------------------------------------------------------------------------------- /stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/stb_image.h -------------------------------------------------------------------------------- /stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgeniuspro/spvr2png/HEAD/stb_image_write.h --------------------------------------------------------------------------------