Cary Phillips
Cary Phillips
OpenEXR is considering pursuing silver- and gold-level CII but the requirement of an "uninstall" target is problematic. CMake does not provide an uninstall argument by default, and the consensus of...
Now that there's an Imath tag other than master, we should update the CMake FetchContent tag.
All OpenEXR Contributors: OpenEXR is migrating to a new Contributor License Agreement, and all future contributors must sign the new form, even if you've previously signed the past form. The...
PR #250 changed the %lx to %llx to suppress an MSVC warning, but it introduced a gcc warning, where uint64_t is long, not long long. Better to leave it as...
Signed-off-by: Cary Phillips
* Add missing includes * Make intro example actually do something sensible, and move to intro.cpp * Add building the example code to the CI
halfLimits.h is no longer needed but the deprecation warning is confusing for code that must support earlier library versions. There should be a way to suppress the warning.
succf/predf predate c++11
`testMatrix()` in `testExtractSHRT.cpp` fails to check the return status of `extractSHRT()`. If the input matrix is invalid, it will produce garbage results. A better solution is to assert that `extractSHRT()`...
`extractSHRT()` returns false if the input matrix is degenerate, and it leaves the output parameters uninitialized. When it is invoked from `computeRSMatrix()`, the return value is ignored, which means the...