| 1443 | #endif //! STBI_NO_STDIO |
| 1444 | |
| 1445 | STBIDEF stbi_us* stbi_load_16_from_memory( |
| 1446 | stbi_uc const* buffer, int len, int* x, int* y, int* channels_in_file, |
| 1447 | int desired_channels) { |
| 1448 | stbi__context s; |
| 1449 | stbi__start_mem(&s, buffer, len); |
| 1450 | return stbi__load_and_postprocess_16bit( |
| 1451 | &s, x, y, channels_in_file, desired_channels); |
| 1452 | } |
| 1453 | |
| 1454 | STBIDEF stbi_us* stbi_load_16_from_callbacks( |
| 1455 | stbi_io_callbacks const* clbk, void* user, int* x, int* y, |
nothing calls this directly
no test coverage detected