Searched defs:paddedWidth (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
H A DFontRenderer.cpp583 uint32_t paddedWidth = (uint32_t) (bounds.right - bounds.left) + 2 * intRadius; local
587 if (paddedWidth > maxSize || paddedHeight > maxSize) {
592 if (paddedWidth & (RS_CPU_ALLOCATION_ALIGNMENT - 1)) {
593 paddedWidth += RS_CPU_ALLOCATION_ALIGNMENT - paddedWidth % RS_CPU_ALLOCATION_ALIGNMENT;
595 int size = paddedWidth * paddedHeight;
608 Font::BITMAP, dataBuffer, paddedWidth, paddedHeight, nullptr, positions);
613 blurImage(&dataBuffer, paddedWidth, paddedHeight, radius);
616 image.width = paddedWidth;

Completed in 161 milliseconds