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

/frameworks/base/libs/hwui/
H A DRect.h168 void outset(float delta) { function in class:android::uirenderer::Rect
198 /* For other geometry, we do the regular rounding in order to snap, but also outset the
H A DPathTessellator.cpp63 float outset = paint->getStrokeWidth() * 0.5f; local
64 if (outset == 0) outset = 0.5f; // account for hairline
65 bounds.outset(outset, outset);
H A DOpenGLRenderer.cpp1649 float outset = paint->getStrokeWidth() * 0.5f; local
1650 return quickReject(left - outset, top - outset, right + outset, bottom + outset, snapOut);
2673 float outset = p->getStrokeWidth() / 2; local
2674 rect.outset(outset, outset);
2675 rx += outset;
[all...]

Completed in 63 milliseconds