| 5938 | } |
| 5939 | |
| 5940 | unsigned lodepng_encode32_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) |
| 5941 | { |
| 5942 | return lodepng_encode_file(filename, image, w, h, LCT_RGBA, 8); |
| 5943 | } |
| 5944 | |
| 5945 | unsigned lodepng_encode24_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) |
| 5946 | { |
nothing calls this directly
no test coverage detected