MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / stbi_loadf_from_memory

Function stbi_loadf_from_memory

Source/Utils/stb_image.h:1477–1482  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

stbi__start_memFunction · 0.85
stbi__loadf_mainFunction · 0.85

Tested by

no test coverage detected