https://helpx.adobe.com/content/dam/help/en/photoshop/pdf/DNG_Spec_1_7_0_0.pdf page 94
| 363 | |
| 364 | // https://helpx.adobe.com/content/dam/help/en/photoshop/pdf/DNG_Spec_1_7_0_0.pdf page 94 |
| 365 | float dngHdrEncodingFunction(const float x) { return x * (256.0f + x) / (256.0f * (1 + x)); } |
| 366 | float dngHdrDecodingFunction(const float x) { return 16.0f * (8.0f * x - 8.0f + sqrt(64.0f * x * x - 127.0f * x + 64.0f)); } |
| 367 | |
| 368 | template <trivially_copyable T> |
no outgoing calls
no test coverage detected