OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tileBounds
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.cpp
88
IntRect TilingData::
tileBounds
(int tile) const
104
IntRect bounds =
tileBounds
(tile);
130
FloatRect bounds(
tileBounds
(tile));
209
FloatRect
tileBounds
= this->
tileBounds
(tile);
211
srcRectIntersected.intersect(
tileBounds
);
225
-
tileBounds
.x() + ((tileXIndex(tile) > 0) ? m_borderTexels : 0),
226
-
tileBounds
.y() + ((tileYIndex(tile) > 0) ? m_borderTexels : 0));
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
TileGrid.cpp
289
IntRect
tileBounds
= computeTilesArea(area, scale);
290
int numberTextures =
tileBounds
.width() *
tileBounds
.height();
297
&& tile->x() >=
tileBounds
.x() && tile->x() <=
tileBounds
.maxX()
298
&& tile->y() >=
tileBounds
.y() && tile->y() <=
tileBounds
.maxY())
/external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp
463
CGRect
tileBounds
= CACFLayerGetBounds(tile);
471
CGContextClipToRect(context, CGRectMake(tilePosition.x, tilePosition.y,
tileBounds
.size.width,
tileBounds
.size.height));
/external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.cpp
278
CGRect
tileBounds
= CACFLayerGetBounds(tile);
286
CGContextClipToRect(context, CGRectMake(tilePosition.x, tilePosition.y,
tileBounds
.size.width,
tileBounds
.size.height));
Completed in 80 milliseconds