OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dilatedBounds
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkTileGrid.cpp
42
SkIRect
dilatedBounds
= bounds;
43
dilatedBounds
.outset(fInfo.fMargin.width(), fInfo.fMargin.height());
44
dilatedBounds
.offset(fInfo.fOffset);
45
if (!SkIRect::Intersects(
dilatedBounds
, fGridBounds)) {
51
int minTileX = SkMax32(SkMin32(
dilatedBounds
.left() / fInfo.fTileInterval.width(),
53
int maxTileX = SkMax32(SkMin32((
dilatedBounds
.right() - 1) / fInfo.fTileInterval.width(),
55
int minTileY = SkMax32(SkMin32(
dilatedBounds
.top() / fInfo.fTileInterval.height(),
57
int maxTileY = SkMax32(SkMin32((
dilatedBounds
.bottom() -1) / fInfo.fTileInterval.height(),
/external/skia/src/core/
SkTileGrid.cpp
42
SkIRect
dilatedBounds
= bounds;
43
dilatedBounds
.outset(fInfo.fMargin.width(), fInfo.fMargin.height());
44
dilatedBounds
.offset(fInfo.fOffset);
45
if (!SkIRect::Intersects(
dilatedBounds
, fGridBounds)) {
51
int minTileX = SkMax32(SkMin32(
dilatedBounds
.left() / fInfo.fTileInterval.width(),
53
int maxTileX = SkMax32(SkMin32((
dilatedBounds
.right() - 1) / fInfo.fTileInterval.width(),
55
int minTileY = SkMax32(SkMin32(
dilatedBounds
.top() / fInfo.fTileInterval.height(),
57
int maxTileY = SkMax32(SkMin32((
dilatedBounds
.bottom() -1) / fInfo.fTileInterval.height(),
Completed in 684 milliseconds