Home
last modified time | relevance | path

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

/aosp12/frameworks/base/tools/aapt/
H A DImages.cpp101 image_info* outImageInfo) in read_png() argument
112 &outImageInfo->height, &bit_depth, &color_type, in read_png()
143 outImageInfo->rows = (png_bytepp)malloc( in read_png()
144 outImageInfo->height * sizeof(png_bytep)); in read_png()
145 outImageInfo->allocHeight = outImageInfo->height; in read_png()
146 outImageInfo->allocRows = outImageInfo->rows; in read_png()
150 for (i = 0; i < (int)outImageInfo->height; i++) in read_png()
152 outImageInfo->rows[i] = (png_bytep) in read_png()
156 png_read_image(read_ptr, outImageInfo->rows); in read_png()
163 (int)outImageInfo->width, (int)outImageInfo->height, in read_png()
[all …]