| 1335 | |
| 1336 | #if !defined(STBI_NO_HDR) && !defined(STBI_NO_LINEAR) |
| 1337 | static void stbi__float_postprocess( |
| 1338 | float* result, int* x, int* y, int* comp, int req_comp) { |
| 1339 | if (stbi__vertically_flip_on_load && result != NULL) { |
| 1340 | int channels = req_comp ? req_comp : *comp; |
| 1341 | stbi__vertical_flip(result, *x, *y, channels * sizeof(float)); |
| 1342 | } |
| 1343 | } |
| 1344 | #endif |
| 1345 | |
| 1346 | #ifndef STBI_NO_STDIO |
no test coverage detected