| 1482 | } |
| 1483 | |
| 1484 | STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) |
| 1485 | { |
| 1486 | stbi__context s; |
| 1487 | stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); |
| 1488 | return stbi__loadf_main(&s,x,y,comp,req_comp); |
| 1489 | } |
| 1490 | |
| 1491 | #ifndef STBI_NO_STDIO |
| 1492 | STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp) |
nothing calls this directly
no test coverage detected