| 365 | } |
| 366 | |
| 367 | STBIWDEF 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 |
| 375 | STBIWDEF int stbi_write_bmp(char const *filename, int x, int y, int comp, const void *data) |
nothing calls this directly
no test coverage detected