├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac └── tonemap.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifb/vapoursynth-tonemap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifb/vapoursynth-tonemap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifb/vapoursynth-tonemap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifb/vapoursynth-tonemap/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifb/vapoursynth-tonemap/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifb/vapoursynth-tonemap/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifb/vapoursynth-tonemap/HEAD/configure.ac -------------------------------------------------------------------------------- /tonemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifb/vapoursynth-tonemap/HEAD/tonemap.c --------------------------------------------------------------------------------