├── .github └── workflows │ └── wheels.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── qoi │ ├── __init__.py │ ├── benchmark.py │ ├── implementation.c │ ├── koi.png │ ├── phoboslab_qoi │ ├── README.md │ └── qoi.h │ ├── qoi.pxd │ └── qoi.pyx └── tests ├── test_multithread.py ├── test_qoi.py └── test_ro_issue26.py /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy>=1.22.4 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/setup.py -------------------------------------------------------------------------------- /src/qoi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/src/qoi/__init__.py -------------------------------------------------------------------------------- /src/qoi/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/src/qoi/benchmark.py -------------------------------------------------------------------------------- /src/qoi/implementation.c: -------------------------------------------------------------------------------- 1 | #define QOI_IMPLEMENTATION 2 | #include "phoboslab_qoi/qoi.h" -------------------------------------------------------------------------------- /src/qoi/koi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/src/qoi/koi.png -------------------------------------------------------------------------------- /src/qoi/phoboslab_qoi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/src/qoi/phoboslab_qoi/README.md -------------------------------------------------------------------------------- /src/qoi/phoboslab_qoi/qoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/src/qoi/phoboslab_qoi/qoi.h -------------------------------------------------------------------------------- /src/qoi/qoi.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/src/qoi/qoi.pxd -------------------------------------------------------------------------------- /src/qoi/qoi.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/src/qoi/qoi.pyx -------------------------------------------------------------------------------- /tests/test_multithread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/tests/test_multithread.py -------------------------------------------------------------------------------- /tests/test_qoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/tests/test_qoi.py -------------------------------------------------------------------------------- /tests/test_ro_issue26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodonnell/qoi/HEAD/tests/test_ro_issue26.py --------------------------------------------------------------------------------