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