| 2514 | } |
| 2515 | |
| 2516 | static unsigned lodepng_get_bpp_lct(LodePNGColorType colortype, unsigned bitdepth) |
| 2517 | { |
| 2518 | /*bits per pixel is amount of channels * bits per channel*/ |
| 2519 | return getNumColorChannels(colortype) * bitdepth; |
| 2520 | } |
| 2521 | |
| 2522 | /* ////////////////////////////////////////////////////////////////////////// */ |
| 2523 |
no test coverage detected