MCPcopy Create free account
hub / github.com/DISTRHO/Cardinal / stbi_write_tga_to_func

Function stbi_write_tga_to_func

include/stb_image_write.h:455–460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453}
454
455int stbi_write_tga_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data)
456{
457 stbi__write_context s;
458 stbi__start_write_callbacks(&s, func, context);
459 return stbi_write_tga_core(&s, x, y, comp, (void *) data);
460}
461
462#ifndef STBI_WRITE_NO_STDIO
463int stbi_write_tga(char const *filename, int x, int y, int comp, const void *data)

Callers

nothing calls this directly

Calls 2

stbi_write_tga_coreFunction · 0.85

Tested by

no test coverage detected