Searched refs:numColorsWithAlpha (Results 1 – 2 of 2) sorted by relevance
/third_party/flutter/skia/src/codec/ |
D | SkPngCodec.cpp | 273 int numColorsWithAlpha = 0; in createColorTable() local 274 if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) { in createColorTable() 281 for (int i = 0; i < numColorsWithAlpha; i++) { in createColorTable() 290 if (numColorsWithAlpha < numColors) { in createColorTable() 300 SkOpts::RGB_to_RGB1(colorTable + numColorsWithAlpha, (const uint8_t*)palette, in createColorTable() 301 numColors - numColorsWithAlpha); in createColorTable() 303 SkOpts::RGB_to_BGR1(colorTable + numColorsWithAlpha, (const uint8_t*)palette, in createColorTable() 304 numColors - numColorsWithAlpha); in createColorTable()
|
/third_party/skia/src/codec/ |
D | SkPngCodec.cpp | 271 int numColorsWithAlpha = 0; in createColorTable() local 272 if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) { in createColorTable() 279 for (int i = 0; i < numColorsWithAlpha; i++) { in createColorTable() 288 if (numColorsWithAlpha < numColors) { in createColorTable() 298 SkOpts::RGB_to_RGB1(colorTable + numColorsWithAlpha, (const uint8_t*)palette, in createColorTable() 299 numColors - numColorsWithAlpha); in createColorTable() 301 SkOpts::RGB_to_BGR1(colorTable + numColorsWithAlpha, (const uint8_t*)palette, in createColorTable() 302 numColors - numColorsWithAlpha); in createColorTable()
|