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

Function stbi_write_bmp_to_func

include/stb_image_write.h:367–372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365}
366
367STBIWDEF int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data)
368{
369 stbi__write_context s;
370 stbi__start_write_callbacks(&s, func, context);
371 return stbi_write_bmp_core(&s, x, y, comp, data);
372}
373
374#ifndef STBI_WRITE_NO_STDIO
375STBIWDEF int stbi_write_bmp(char const *filename, int x, int y, int comp, const void *data)

Callers

nothing calls this directly

Calls 2

stbi_write_bmp_coreFunction · 0.85

Tested by

no test coverage detected