| 1433 | } |
| 1434 | |
| 1435 | STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) |
| 1436 | { |
| 1437 | stbi__context s; |
| 1438 | stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); |
| 1439 | return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); |
| 1440 | } |
| 1441 | |
| 1442 | #ifndef STBI_NO_GIF |
| 1443 | STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp) |
nothing calls this directly
no test coverage detected