OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tileHeight
(Results
1 - 14
of
14
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/android/
GaneshContext.cpp
161
const float
tileHeight
= renderInfo.tileSize.height();
166
(int)
tileHeight
, WINDOW_FORMAT_RGBA_8888);
169
renderInfo.textureInfo->m_height =
tileHeight
;
186
surfaceDesc.fHeight = TilesManager::
tileHeight
();
212
const float
tileHeight
= renderInfo.tileSize.height();
219
|| renderInfo.textureInfo->m_height !=
tileHeight
) {
221
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tileWidth,
tileHeight
,
224
renderInfo.textureInfo->m_height =
tileHeight
;
240
TilesManager::
tileHeight
());
257
surfaceDesc.fHeight = TilesManager::
tileHeight
();
[
all
...]
BaseTile.cpp
291
bool BaseTile::intersectWithRect(int x, int y, int tileWidth, int
tileHeight
,
297
realTileRect.fTop = y *
tileHeight
;
299
realTileRect.fBottom = realTileRect.fTop +
tileHeight
;
371
const float
tileHeight
= renderInfo.tileSize.height();
379
|| textureInfo->m_height !=
tileHeight
) {
392
bool intersect = intersectWithRect(x, y, tileWidth,
tileHeight
,
411
if (iWidth == tileWidth || iHeight ==
tileHeight
) {
418
finalRealRect.fTop = finalRealRect.fTop % static_cast<int>(
tileHeight
);
434
rect.set(0, 0, tileWidth,
tileHeight
);
TiledPage.cpp
128
const float invTileContentHeight = m_scale / TilesManager::
tileHeight
();
268
float maxHeightTiles = m_glWebViewState->baseContentHeight() * m_scale / TilesManager::
tileHeight
();
343
const float
tileHeight
= TilesManager::
tileHeight
() * m_invScale;
360
rect.fTop = tile.y() *
tileHeight
;
362
rect.fBottom = rect.fTop +
tileHeight
;
TiledTexture.cpp
99
int
tileHeight
= TilesManager::instance()->layerTileHeight();
102
m_area.setY(area.y() /
tileHeight
);
104
float bottom = (area.y() + area.height()) / (float)
tileHeight
;
228
const float
tileHeight
= TilesManager::layerTileHeight() * m_invScale;
238
rect.fTop = tile->y() *
tileHeight
;
240
rect.fBottom = rect.fTop +
tileHeight
;
GaneshRenderer.cpp
104
&& renderInfo.tileSize.height() == TilesManager::
tileHeight
()) {
109
TilesManager::tileWidth(), TilesManager::
tileHeight
(),
PaintedSurface.cpp
216
float
tileHeight
= TilesManager::instance()->layerTileHeight();
218
int h = ceilf(m_area.height() * m_scale /
tileHeight
);
BaseTile.h
109
bool intersectWithRect(int x, int y, int tileWidth, int
tileHeight
,
TilesManager.h
110
static float
tileHeight
();
TilesManager.cpp
120
tileWidth(),
tileHeight
());
377
float TilesManager::
tileHeight
()
BaseLayerAndroid.cpp
135
/ TilesManager::instance()->
tileHeight
();
GLWebViewState.cpp
301
const float invTileContentHeight = scale / TilesManager::
tileHeight
();
TransferQueue.cpp
396
int height = TilesManager::instance()->
tileHeight
();
/external/webkit/Source/WebCore/platform/graphics/filters/
FETurbulence.cpp
282
float
tileHeight
= paintingData.filterSize.height();
283
ASSERT(
tileHeight
> 0);
298
float lowFrequency = floorf(
tileHeight
* m_baseFrequencyY) /
tileHeight
;
299
float highFrequency = ceilf(
tileHeight
* m_baseFrequencyY) /
tileHeight
;
308
paintingData.height = roundf(
tileHeight
* m_baseFrequencyY);
/external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTilerChromium.cpp
410
float
tileHeight
= static_cast<float>(m_tileSize.height());
412
float texTranslateY = texOffset.y() /
tileHeight
;
414
float texScaleY = tileRect.height() /
tileHeight
;
Completed in 314 milliseconds