| 2659 | } |
| 2660 | |
| 2661 | unsigned lodepng_can_have_alpha(const LodePNGColorMode* info) |
| 2662 | { |
| 2663 | return info->key_defined |
| 2664 | || lodepng_is_alpha_type(info) |
| 2665 | || lodepng_has_palette_alpha(info); |
| 2666 | } |
| 2667 | |
| 2668 | size_t lodepng_get_raw_size(unsigned w, unsigned h, const LodePNGColorMode* color) |
| 2669 | { |
no test coverage detected