| 1512 | } |
| 1513 | |
| 1514 | STBIDEF float* stbi_loadf_from_memory( |
| 1515 | stbi_uc const* buffer, int len, int* x, int* y, int* comp, int req_comp) { |
| 1516 | stbi__context s; |
| 1517 | stbi__start_mem(&s, buffer, len); |
| 1518 | return stbi__loadf_main(&s, x, y, comp, req_comp); |
| 1519 | } |
| 1520 | |
| 1521 | STBIDEF float* stbi_loadf_from_callbacks( |
| 1522 | stbi_io_callbacks const* clbk, void* user, int* x, int* y, int* comp, |
nothing calls this directly
no test coverage detected