| 5874 | } |
| 5875 | |
| 5876 | unsigned lodepng_encode24(unsigned char** out, size_t* outsize, const unsigned char* image, unsigned w, unsigned h) |
| 5877 | { |
| 5878 | return lodepng_encode_memory(out, outsize, image, w, h, LCT_RGB, 8); |
| 5879 | } |
| 5880 | |
| 5881 | #ifdef LODEPNG_COMPILE_DISK |
| 5882 | unsigned lodepng_encode_file(const char* filename, const unsigned char* image, unsigned w, unsigned h, |
nothing calls this directly
no test coverage detected