| 2573 | } |
| 2574 | |
| 2575 | static unsigned lodepng_get_bpp_lct(LodePNGColorType colortype, unsigned bitdepth) |
| 2576 | { |
| 2577 | /*bits per pixel is amount of channels * bits per channel*/ |
| 2578 | return getNumColorChannels(colortype) * bitdepth; |
| 2579 | } |
| 2580 | |
| 2581 | /* ////////////////////////////////////////////////////////////////////////// */ |
| 2582 |
no test coverage detected