Searched defs:numTiles (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DTiledImageOpenVG.cpp68 int TiledImageOpenVG::numTiles() const function in class:WebCore::TiledImageOpenVG
137 int numTiles = m_tiles.size();
140 for (int i = 0; i < numTiles; ++i) {
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DTilingData.h53 int numTiles() const { return numTilesX() * numTilesY(); } function in class:WebCore::TilingData
81 void assertTile(int tile) const { ASSERT(tile >= 0 && tile < numTiles()); }
H A DTexture.cpp93 int numTiles = tiling.numTiles(); local
95 OwnPtr<Vector<unsigned int> > textureIds(new Vector<unsigned int>(numTiles));
96 textureIds->fill(0, numTiles);
98 for (int i = 0; i < numTiles; i++) {
101 for (int i = 0; i < numTiles; i++)
171 for (int tile = 0; tile < m_tiles.numTiles(); tile++) {
H A DTilingData.cpp50 int numTiles = max(1, 1 + (totalSize - 1 - 2 * borderTexels) / (maxTextureSize - 2 * borderTexels)); local
51 return totalSize > 0 ? numTiles : 0;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DWebTiledLayer.cpp170 int numTiles = tileColumns * tileRows; local
176 if (numTiles > cMaxTileCount) {
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.cpp350 int numTiles = tileColumns * tileRows; local
356 if (numTiles > cMaxTileCount) {
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.cpp1999 double numTiles = tileColumns * tileRows; local
2003 while (numTiles > cMaxTileCount) {
2012 numTiles = tileColumns * tileRows;

Completed in 124 milliseconds