| 1412 | #endif //!STBI_NO_STDIO |
| 1413 | |
| 1414 | STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels) |
| 1415 | { |
| 1416 | stbi__context s; |
| 1417 | stbi__start_mem(&s,buffer,len); |
| 1418 | return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); |
| 1419 | } |
| 1420 | |
| 1421 | STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels) |
| 1422 | { |
nothing calls this directly
no test coverage detected