| 5868 | } |
| 5869 | |
| 5870 | unsigned lodepng_encode24_file(const char* filename, const unsigned char* image, unsigned w, unsigned h) |
| 5871 | { |
| 5872 | return lodepng_encode_file(filename, image, w, h, LCT_RGB, 8); |
| 5873 | } |
| 5874 | #endif /*LODEPNG_COMPILE_DISK*/ |
| 5875 | |
| 5876 | void lodepng_encoder_settings_init(LodePNGEncoderSettings* settings) |
nothing calls this directly
no test coverage detected