| 1539 | } |
| 1540 | |
| 1541 | STBIDEF float* stbi_loadf_from_file(FILE* f, int* x, int* y, int* comp, int req_comp) { |
| 1542 | stbi__context s; |
| 1543 | stbi__start_file(&s, f); |
| 1544 | return stbi__loadf_main(&s, x, y, comp, req_comp); |
| 1545 | } |
| 1546 | #endif // !STBI_NO_STDIO |
| 1547 | |
| 1548 | #endif // !STBI_NO_LINEAR |
no test coverage detected