├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Setup.lhs ├── UTFTConverter.cabal ├── bin ├── UTFTConverter_u └── UTFTConverter_w.exe ├── main-src └── Main.hs ├── src ├── Format.hs └── Format │ ├── C.hs │ ├── Converter.hs │ ├── RGB565.hs │ └── Raw.hs ├── stack.yaml └── tests ├── Tests.hs └── examples ├── cat_01 ├── cat_01_bmp_120x120.bmp ├── cat_01_gif_120x120.gif ├── cat_01_jpg_120x120.jpg ├── cat_01_png_120x120.png └── cat_01_tga_120x120.tga ├── cat_02 ├── cat_02_bmp_120x120.bmp ├── cat_02_gif_120x120.gif ├── cat_02_jpg_120x120.jpg ├── cat_02_png_120x120.png └── cat_02_tga_120x120.tga └── cat_03 ├── cat_03_bmp_120x120.bmp ├── cat_03_gif_120x120.gif ├── cat_03_jpg_120x120.jpg ├── cat_03_png_120x120.png └── cat_03_tga_120x120.tga /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/README.md -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/Setup.lhs -------------------------------------------------------------------------------- /UTFTConverter.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/UTFTConverter.cabal -------------------------------------------------------------------------------- /bin/UTFTConverter_u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/bin/UTFTConverter_u -------------------------------------------------------------------------------- /bin/UTFTConverter_w.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/bin/UTFTConverter_w.exe -------------------------------------------------------------------------------- /main-src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/main-src/Main.hs -------------------------------------------------------------------------------- /src/Format.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/src/Format.hs -------------------------------------------------------------------------------- /src/Format/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/src/Format/C.hs -------------------------------------------------------------------------------- /src/Format/Converter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/src/Format/Converter.hs -------------------------------------------------------------------------------- /src/Format/RGB565.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/src/Format/RGB565.hs -------------------------------------------------------------------------------- /src/Format/Raw.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/src/Format/Raw.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/stack.yaml -------------------------------------------------------------------------------- /tests/Tests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/Tests.hs -------------------------------------------------------------------------------- /tests/examples/cat_01/cat_01_bmp_120x120.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_01/cat_01_bmp_120x120.bmp -------------------------------------------------------------------------------- /tests/examples/cat_01/cat_01_gif_120x120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_01/cat_01_gif_120x120.gif -------------------------------------------------------------------------------- /tests/examples/cat_01/cat_01_jpg_120x120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_01/cat_01_jpg_120x120.jpg -------------------------------------------------------------------------------- /tests/examples/cat_01/cat_01_png_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_01/cat_01_png_120x120.png -------------------------------------------------------------------------------- /tests/examples/cat_01/cat_01_tga_120x120.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_01/cat_01_tga_120x120.tga -------------------------------------------------------------------------------- /tests/examples/cat_02/cat_02_bmp_120x120.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_02/cat_02_bmp_120x120.bmp -------------------------------------------------------------------------------- /tests/examples/cat_02/cat_02_gif_120x120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_02/cat_02_gif_120x120.gif -------------------------------------------------------------------------------- /tests/examples/cat_02/cat_02_jpg_120x120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_02/cat_02_jpg_120x120.jpg -------------------------------------------------------------------------------- /tests/examples/cat_02/cat_02_png_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_02/cat_02_png_120x120.png -------------------------------------------------------------------------------- /tests/examples/cat_02/cat_02_tga_120x120.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_02/cat_02_tga_120x120.tga -------------------------------------------------------------------------------- /tests/examples/cat_03/cat_03_bmp_120x120.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_03/cat_03_bmp_120x120.bmp -------------------------------------------------------------------------------- /tests/examples/cat_03/cat_03_gif_120x120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_03/cat_03_gif_120x120.gif -------------------------------------------------------------------------------- /tests/examples/cat_03/cat_03_jpg_120x120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_03/cat_03_jpg_120x120.jpg -------------------------------------------------------------------------------- /tests/examples/cat_03/cat_03_png_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_03/cat_03_png_120x120.png -------------------------------------------------------------------------------- /tests/examples/cat_03/cat_03_tga_120x120.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirquit/UTFTConverter/HEAD/tests/examples/cat_03/cat_03_tga_120x120.tga --------------------------------------------------------------------------------