| 1501 | } |
| 1502 | |
| 1503 | STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) |
| 1504 | { |
| 1505 | stbi__context s; |
| 1506 | stbi__start_file(&s,f); |
| 1507 | return stbi__loadf_main(&s,x,y,comp,req_comp); |
| 1508 | } |
| 1509 | #endif // !STBI_NO_STDIO |
| 1510 | |
| 1511 | #endif // !STBI_NO_LINEAR |
no test coverage detected