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

Function stbi_loadf_from_file

include/stb/stb_image.h:1503–1508  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1501}
1502
1503STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
1504{
1505 stbi__context s;
1506 stbi__start_file(&s,f);
1507 return stbi__loadf_main(&s,x,y,comp,req_comp);
1508}
1509#endif // !STBI_NO_STDIO
1510
1511#endif // !STBI_NO_LINEAR

Callers 1

stbi_loadfFunction · 0.85

Calls 2

stbi__start_fileFunction · 0.85
stbi__loadf_mainFunction · 0.85

Tested by

no test coverage detected