| 6088 | } |
| 6089 | |
| 6090 | unsigned lodepng_encode32(unsigned char** out, size_t* outsize, const unsigned char* image, unsigned w, unsigned h) { |
| 6091 | return lodepng_encode_memory(out, outsize, image, w, h, LCT_RGBA, 8); |
| 6092 | } |
| 6093 | |
| 6094 | unsigned lodepng_encode24(unsigned char** out, size_t* outsize, const unsigned char* image, unsigned w, unsigned h) { |
| 6095 | return lodepng_encode_memory(out, outsize, image, w, h, LCT_RGB, 8); |
nothing calls this directly
no test coverage detected