OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:numTiles
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/openvg/
TiledImageOpenVG.cpp
68
int TiledImageOpenVG::
numTiles
() const
137
int
numTiles
= m_tiles.size();
140
for (int i = 0; i <
numTiles
; ++i) {
/external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.h
53
int
numTiles
() const { return numTilesX() * numTilesY(); }
81
void assertTile(int tile) const { ASSERT(tile >= 0 && tile <
numTiles
()); }
Texture.cpp
93
int
numTiles
= tiling.
numTiles
();
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++) {
TilingData.cpp
50
int
numTiles
= max(1, 1 + (totalSize - 1 - 2 * borderTexels) / (maxTextureSize - 2 * borderTexels));
51
return totalSize > 0 ?
numTiles
: 0;
/external/webkit/Source/WebCore/platform/graphics/android/
TiledPage.cpp
283
float
numTiles
= static_cast<float>(nbTilesHeight) * static_cast<float>(nbTilesWidth);
284
if (
numTiles
> TilesManager::getMaxTextureAllocation() || nbTilesHeight < 1 || nbTilesWidth < 1)
/external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp
350
int
numTiles
= tileColumns * tileRows;
356
if (
numTiles
> cMaxTileCount) {
/external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.cpp
170
int
numTiles
= tileColumns * tileRows;
176
if (
numTiles
> cMaxTileCount) {
/external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp
[
all
...]
Completed in 154 milliseconds