OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:adjustedQuery
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkTileGrid.cpp
69
SkIRect
adjustedQuery
= query;
73
adjustedQuery
.inset(fInfo.fMargin.width(), fInfo.fMargin.height());
74
adjustedQuery
.offset(fInfo.fOffset);
75
adjustedQuery
.sort(); // in case the inset inverted the rectangle
79
int tileStartX =
adjustedQuery
.left() / fInfo.fTileInterval.width();
80
int tileEndX = (
adjustedQuery
.right() + fInfo.fTileInterval.width() - 1) /
82
int tileStartY =
adjustedQuery
.top() / fInfo.fTileInterval.height();
83
int tileEndY = (
adjustedQuery
.bottom() + fInfo.fTileInterval.height() - 1) /
/external/skia/src/core/
SkTileGrid.cpp
69
SkIRect
adjustedQuery
= query;
73
adjustedQuery
.inset(fInfo.fMargin.width(), fInfo.fMargin.height());
74
adjustedQuery
.offset(fInfo.fOffset);
75
adjustedQuery
.sort(); // in case the inset inverted the rectangle
79
int tileStartX =
adjustedQuery
.left() / fInfo.fTileInterval.width();
80
int tileEndX = (
adjustedQuery
.right() + fInfo.fTileInterval.width() - 1) /
82
int tileStartY =
adjustedQuery
.top() / fInfo.fTileInterval.height();
83
int tileEndY = (
adjustedQuery
.bottom() + fInfo.fTileInterval.height() - 1) /
Completed in 85 milliseconds