Home
last modified time | relevance | path

Searched refs:bitdepth (Results 1 – 2 of 2) sorted by relevance

/lvgl-3.7.0/src/extra/libs/png/
Dlodepng.h133 LodePNGColorType colortype, unsigned bitdepth);
150 LodePNGColorType colortype, unsigned bitdepth);
182 LodePNGColorType colortype, unsigned bitdepth);
200 LodePNGColorType colortype, unsigned bitdepth);
220 LodePNGColorType colortype = LCT_RGBA, unsigned bitdepth = 8);
223 LodePNGColorType colortype = LCT_RGBA, unsigned bitdepth = 8);
231 LodePNGColorType colortype = LCT_RGBA, unsigned bitdepth = 8);
240 LodePNGColorType colortype = LCT_RGBA, unsigned bitdepth = 8);
243 LodePNGColorType colortype = LCT_RGBA, unsigned bitdepth = 8);
252 LodePNGColorType colortype = LCT_RGBA, unsigned bitdepth = 8);
[all …]
Dlodepng.c2663 static unsigned lodepng_get_bpp_lct(LodePNGColorType colortype, unsigned bitdepth) { in lodepng_get_bpp_lct() argument
2665 return getNumColorChannels(colortype) * bitdepth; in lodepng_get_bpp_lct()
2674 info->bitdepth = 8; in lodepng_color_mode_init()
2712 LodePNGColorMode lodepng_color_mode_make(LodePNGColorType colortype, unsigned bitdepth) { in lodepng_color_mode_make() argument
2716 result.bitdepth = bitdepth; in lodepng_color_mode_make()
2723 if(a->bitdepth != b->bitdepth) return 0; in lodepng_color_mode_equal()
2762 return lodepng_get_bpp_lct(info->colortype, info->bitdepth); in lodepng_get_bpp()
2795 …t lodepng_get_raw_size_lct(unsigned w, unsigned h, LodePNGColorType colortype, unsigned bitdepth) { in lodepng_get_raw_size_lct() argument
2796 size_t bpp = lodepng_get_bpp_lct(colortype, bitdepth); in lodepng_get_raw_size_lct()
2802 return lodepng_get_raw_size_lct(w, h, color->colortype, color->bitdepth); in lodepng_get_raw_size()
[all …]