MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / stbi_load_16_from_memory

Function stbi_load_16_from_memory

include/stb/stb_image.h:1415–1420  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1413#endif //!STBI_NO_STDIO
1414
1415STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels)
1416{
1417 stbi__context s;
1418 stbi__start_mem(&s,buffer,len);
1419 return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels);
1420}
1421
1422STBIDEF 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)
1423{

Callers

nothing calls this directly

Calls 2

stbi__start_memFunction · 0.85

Tested by

no test coverage detected