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

Function stbi_loadf_from_memory

include/stb/stb_image.h:1478–1483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1476}
1477
1478STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
1479{
1480 stbi__context s;
1481 stbi__start_mem(&s,buffer,len);
1482 return stbi__loadf_main(&s,x,y,comp,req_comp);
1483}
1484
1485STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
1486{

Callers

nothing calls this directly

Calls 2

stbi__start_memFunction · 0.85
stbi__loadf_mainFunction · 0.85

Tested by

no test coverage detected