├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── details ├── cie1931.h └── lu.h ├── rgb2spec.c ├── rgb2spec.h └── rgb2spec_opt.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/README.md -------------------------------------------------------------------------------- /details/cie1931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/details/cie1931.h -------------------------------------------------------------------------------- /details/lu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/details/lu.h -------------------------------------------------------------------------------- /rgb2spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/rgb2spec.c -------------------------------------------------------------------------------- /rgb2spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/rgb2spec.h -------------------------------------------------------------------------------- /rgb2spec_opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitsuba-renderer/rgb2spec/HEAD/rgb2spec_opt.cpp --------------------------------------------------------------------------------