| 5891 | } |
| 5892 | |
| 5893 | unsigned lodepng_encode32_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) |
| 5894 | { |
| 5895 | return lodepng_encode_file(filename, image, w, h, LCT_RGBA, 8); |
| 5896 | } |
| 5897 | |
| 5898 | unsigned lodepng_encode24_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) |
| 5899 | { |
nothing calls this directly
no test coverage detected