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

/frameworks/base/libs/hwui/
H A DFontRenderer.cpp617 uint32_t paddedWidth = (uint32_t) (bounds.right - bounds.left) + 2 * intRadius; local
621 if (paddedWidth > maxSize || paddedHeight > maxSize) {
627 if (paddedWidth & (RS_CPU_ALLOCATION_ALIGNMENT - 1)) {
628 paddedWidth += RS_CPU_ALLOCATION_ALIGNMENT - paddedWidth % RS_CPU_ALLOCATION_ALIGNMENT;
630 int size = paddedWidth * paddedHeight;
633 int size = paddedWidth * paddedHeight;
647 Font::BITMAP, dataBuffer, paddedWidth, paddedHeight, NULL, positions);
652 blurImage(&dataBuffer, paddedWidth, paddedHeight, radius);
655 image.width = paddedWidth;
[all...]

Completed in 184 milliseconds