OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fYTileCount
(Results
1 - 4
of
4
) sorted by null
/external/skia/src/core/
SkTileGridPicture.cpp
18
fYTileCount
= (height + tileHeight - 1) / tileHeight;
22
return SkNEW_ARGS(SkTileGrid, (fTileWidth, fTileHeight, fXTileCount,
fYTileCount
,
SkTileGrid.cpp
16
fYTileCount
= yTileCount;
17
fTileCount = fXTileCount *
fYTileCount
;
19
fGridBounds = SkIRect::MakeXYWH(0, 0, fTileWidth * fXTileCount, fTileHeight *
fYTileCount
);
43
int minTileY = SkMax32(SkMin32(dilatedBounds.top() / fTileHeight,
fYTileCount
-1), 0);
44
int maxTileY = SkMax32(SkMin32(dilatedBounds.bottom() / fTileHeight,
fYTileCount
-1), 0);
60
if (tileStartX >= fXTileCount || tileStartY >=
fYTileCount
|| tileEndX <= 0 || tileEndY <= 0) {
67
if (tileEndY >
fYTileCount
) tileEndY =
fYTileCount
;
SkTileGrid.h
64
int fTileWidth, fTileHeight, fXTileCount,
fYTileCount
, fTileCount;
/external/skia/include/core/
SkTileGridPicture.h
26
int fTileWidth, fTileHeight, fXTileCount,
fYTileCount
;
Completed in 21 milliseconds