| 1312 | |
| 1313 | #if !defined(STBI_NO_HDR) && !defined(STBI_NO_LINEAR) |
| 1314 | static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp) |
| 1315 | { |
| 1316 | if (stbi__vertically_flip_on_load && result != NULL) { |
| 1317 | int channels = req_comp ? req_comp : *comp; |
| 1318 | stbi__vertical_flip(result, *x, *y, channels * sizeof(float)); |
| 1319 | } |
| 1320 | } |
| 1321 | #endif |
| 1322 | |
| 1323 | #ifndef STBI_NO_STDIO |
no test coverage detected