OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tileRows
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.cpp
169
int
tileRows
= ceilf(constrainedSize.height / m_tileSize.height);
170
int numTiles = tileColumns *
tileRows
;
177
if (
tileRows
< cSqrtMaxTileCount)
178
tileColumns = floorf(cMaxTileCount /
tileRows
);
180
tileRows
= floorf(cMaxTileCount / tileColumns);
182
tileRows
= ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));
183
tileColumns = floorf(cMaxTileCount /
tileRows
);
187
constrainedSize.height =
tileRows
* m_tileSize.height;
/external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp
349
int
tileRows
= ceilf(constrainedSize.height / m_tileSize.height);
350
int numTiles = tileColumns *
tileRows
;
357
if (
tileRows
< cSqrtMaxTileCount)
358
tileColumns = floorf(cMaxTileCount /
tileRows
);
360
tileRows
= floorf(cMaxTileCount / tileColumns);
362
tileRows
= ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));
363
tileColumns = floorf(cMaxTileCount /
tileRows
);
367
constrainedSize.height =
tileRows
* m_tileSize.height;
/external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp
[
all
...]
Completed in 70 milliseconds