├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── lib ├── FindIlmBase.cmake ├── FindOpenEXR.cmake └── IlmMacros.cmake └── src ├── CMakeLists.txt ├── exr_handler.cpp ├── exr_handler.h ├── exr_io.cpp ├── exr_io.h ├── exr_plugin.cpp └── exr_plugin.h /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/README.md -------------------------------------------------------------------------------- /lib/FindIlmBase.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/lib/FindIlmBase.cmake -------------------------------------------------------------------------------- /lib/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/lib/FindOpenEXR.cmake -------------------------------------------------------------------------------- /lib/IlmMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/lib/IlmMacros.cmake -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/exr_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/src/exr_handler.cpp -------------------------------------------------------------------------------- /src/exr_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/src/exr_handler.h -------------------------------------------------------------------------------- /src/exr_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/src/exr_io.cpp -------------------------------------------------------------------------------- /src/exr_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/src/exr_io.h -------------------------------------------------------------------------------- /src/exr_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/src/exr_plugin.cpp -------------------------------------------------------------------------------- /src/exr_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AardmanCGI/qt4-exr-plugin/HEAD/src/exr_plugin.h --------------------------------------------------------------------------------