├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENCE ├── README.md ├── images ├── lua_qoi.png └── lua_qoi.qoi ├── lua-qoi.c └── test ├── all.lua ├── basic.lua ├── circle-no-alpha.lua ├── circle.lua ├── memory.lua └── multiple.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/README.md -------------------------------------------------------------------------------- /images/lua_qoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/images/lua_qoi.png -------------------------------------------------------------------------------- /images/lua_qoi.qoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/images/lua_qoi.qoi -------------------------------------------------------------------------------- /lua-qoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/lua-qoi.c -------------------------------------------------------------------------------- /test/all.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/test/all.lua -------------------------------------------------------------------------------- /test/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/test/basic.lua -------------------------------------------------------------------------------- /test/circle-no-alpha.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/test/circle-no-alpha.lua -------------------------------------------------------------------------------- /test/circle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/test/circle.lua -------------------------------------------------------------------------------- /test/memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/test/memory.lua -------------------------------------------------------------------------------- /test/multiple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4xy/lua-qoi/HEAD/test/multiple.lua --------------------------------------------------------------------------------