OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tileWidth
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/android/
GaneshContext.cpp
160
const float
tileWidth
= renderInfo.tileSize.width();
165
int result = ANativeWindow_setBuffersGeometry(anw, (int)
tileWidth
,
168
renderInfo.textureInfo->m_width =
tileWidth
;
185
surfaceDesc.fWidth = TilesManager::
tileWidth
();
211
const float
tileWidth
= renderInfo.tileSize.width();
218
if (renderInfo.textureInfo->m_width !=
tileWidth
221
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA,
tileWidth
, tileHeight,
223
renderInfo.textureInfo->m_width =
tileWidth
;
239
TilesManager::
tileWidth
(),
256
surfaceDesc.fWidth = TilesManager::
tileWidth
();
[
all
...]
BaseTile.cpp
190
int
tileWidth
= TilesManager::instance()->
tileWidth
();
193
tileWidth
= TilesManager::instance()->layerTileWidth();
200
if (intersectWithRect(m_x, m_y,
tileWidth
, tileHeight,
316
bool BaseTile::intersectWithRect(int x, int y, int
tileWidth
, int tileHeight,
321
realTileRect.fLeft = x *
tileWidth
;
323
realTileRect.fRight = realTileRect.fLeft +
tileWidth
;
395
const float
tileWidth
= renderInfo.tileSize.width();
403
|| textureInfo->m_width !=
tileWidth
417
bool intersect = intersectWithRect(x, y,
tileWidth
, tileHeight
[
all
...]
TiledPage.cpp
128
const float invTileContentWidth = m_scale / TilesManager::
tileWidth
();
263
float maxBaseX = m_glWebViewState->baseContentWidth() * m_scale / TilesManager::
tileWidth
();
368
const float
tileWidth
= TilesManager::
tileWidth
() * m_invScale;
376
rect.fLeft = tile.x() *
tileWidth
;
378
rect.fRight = rect.fLeft +
tileWidth
;
TiledTexture.cpp
118
int
tileWidth
= TilesManager::instance()->layerTileWidth();
121
computedArea.setX(area.x() /
tileWidth
);
123
float right = (area.x() + area.width()) / (float)
tileWidth
;
261
const float
tileWidth
= TilesManager::layerTileWidth() * m_invScale;
271
rect.fLeft = tile->x() *
tileWidth
;
273
rect.fRight = rect.fLeft +
tileWidth
;
TilesManager.cpp
126
tileWidth
(), tileHeight());
415
float TilesManager::
tileWidth
()
/external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTilerChromium.cpp
409
float
tileWidth
= static_cast<float>(m_tileSize.width());
411
float texTranslateX = texOffset.x() /
tileWidth
;
413
float texScaleX = tileRect.width() /
tileWidth
;
Completed in 149 milliseconds