Home | History | Annotate | Download | only in codec

Lines Matching refs:fInfo_ptr

62         , fInfo_ptr(nullptr) {}
65 // fInfo_ptr will never be non-nullptr unless fPng_ptr is.
67 png_infopp info_pp = fInfo_ptr ? &fInfo_ptr : nullptr;
73 SkASSERT(nullptr == fInfo_ptr);
74 fInfo_ptr = info_ptr;
79 fInfo_ptr = nullptr;
84 png_infop fInfo_ptr;
99 if (!png_get_PLTE(fPng_ptr, fInfo_ptr, &palette, &numColors)) {
108 if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) {
337 , fInfo_ptr(info_ptr)
349 // We will never have a nullptr fInfo_ptr with a non-nullptr fPng_ptr
350 SkASSERT(fInfo_ptr);
351 png_destroy_read_struct(&fPng_ptr, &fInfo_ptr, nullptr);
353 fInfo_ptr = nullptr;
371 png_read_update_info(fPng_ptr, fInfo_ptr);
389 const uint8_t encodedColorType = png_get_color_type(fPng_ptr, fInfo_ptr);
397 png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS));
427 // This sets fPng_ptr and fInfo_ptr to nullptr. If read_header
429 fInfo_ptr will
442 fInfo_ptr = info_ptr;
527 png_read_end(fPng_ptr, fInfo_ptr);