Home
last modified time | relevance | path

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

/aosp14/frameworks/base/tools/aapt2/compile/
H A DPngCrunch.cpp268 const size_t row_bytes = png_get_rowbytes(read_ptr, info_ptr); in ReadPng() local
269 CHECK(row_bytes == 4 * width); // RGBA in ReadPng()
272 output_image->data = std::unique_ptr<uint8_t[]>(new uint8_t[height * row_bytes]); in ReadPng()
277 output_image->rows[h] = output_image->data.get() + (h * row_bytes); in ReadPng()