| 2635 | } |
| 2636 | |
| 2637 | unsigned lodepng_can_have_alpha(const LodePNGColorMode* info) |
| 2638 | { |
| 2639 | return info->key_defined |
| 2640 | || lodepng_is_alpha_type(info) |
| 2641 | || lodepng_has_palette_alpha(info); |
| 2642 | } |
| 2643 | |
| 2644 | size_t lodepng_get_raw_size(unsigned w, unsigned h, const LodePNGColorMode* color) |
| 2645 | { |
no test coverage detected