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

/frameworks/base/libs/hwui/
H A DFontRenderer.cpp597 uint32_t paddedWidth = (uint32_t) (bounds.right - bounds.left) + 2 * intRadius; local
601 if (paddedWidth > maxSize || paddedHeight > maxSize) {
607 if (paddedWidth & (RS_CPU_ALLOCATION_ALIGNMENT - 1)) {
608 paddedWidth += RS_CPU_ALLOCATION_ALIGNMENT - paddedWidth % RS_CPU_ALLOCATION_ALIGNMENT;
610 int size = paddedWidth * paddedHeight;
613 int size = paddedWidth * paddedHeight;
627 Font::BITMAP, dataBuffer, paddedWidth, paddedHeight, nullptr, positions);
632 blurImage(&dataBuffer, paddedWidth, paddedHeight, radius);
635 image.width = paddedWidth;
[all...]

Completed in 63 milliseconds