| 1475 | } |
| 1476 | |
| 1477 | STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) |
| 1478 | { |
| 1479 | stbi__context s; |
| 1480 | stbi__start_mem(&s,buffer,len); |
| 1481 | return stbi__loadf_main(&s,x,y,comp,req_comp); |
| 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 | { |
nothing calls this directly
no test coverage detected