| 2599 | } |
| 2600 | |
| 2601 | unsigned lodepng_get_bpp(const LodePNGColorMode* info) |
| 2602 | { |
| 2603 | /*calculate bits per pixel out of colortype and bitdepth*/ |
| 2604 | return lodepng_get_bpp_lct(info->colortype, info->bitdepth); |
| 2605 | } |
| 2606 | |
| 2607 | unsigned lodepng_get_channels(const LodePNGColorMode* info) |
| 2608 | { |
no test coverage detected