| 49 | } |
| 50 | |
| 51 | std::string GetErrorMessage(float expected, float actual, OCIO::BitDepth inBD, OCIO::BitDepth outBD) |
| 52 | { |
| 53 | std::ostringstream oss; |
| 54 | oss << "expected: " << expected << " != " << "actual: " << actual << " : " << GetFormatName(inBD) << " -> " << GetFormatName(outBD); |
| 55 | return oss.str(); |
| 56 | } |
| 57 | |
| 58 | template<OCIO::BitDepth BD> |
| 59 | typename OCIO::BitDepthInfo<BD>::Type scale_unsigned(unsigned i) |
no test coverage detected