OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:layerRect
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/qt/
ContextShadowQt.cpp
127
IntRect
layerRect
= calculateLayerBoundingRect(context, layerArea, clip);
130
if (
layerRect
.isEmpty())
134
QImage* shadowImage = shadowBuffer->scratchImage(
layerRect
.size());
/external/webkit/Source/WebCore/platform/graphics/cairo/
ContextShadowCairo.cpp
92
IntRect
layerRect
= calculateLayerBoundingRect(context, layerArea, IntRect(x1, y1, x2 - x1, y2 - y1));
95
if (
layerRect
.isEmpty())
98
m_layerImage = getScratchBuffer(
layerRect
.size());
/external/webkit/Source/WebCore/platform/graphics/chromium/
ContentLayerChromium.cpp
100
IntRect
layerRect
= visibleLayerRect(targetSurfaceRect);
101
if (
layerRect
.isEmpty())
108
m_tiler->update(painter,
layerRect
);
154
IntRect
layerRect
= surfaceToLayer.projectQuad(FloatQuad(FloatRect(minimalSurfaceRect))).enclosingBoundingBox();
155
layerRect
.intersect(layerBoundRect);
156
return
layerRect
;
186
IntRect
layerRect
= visibleLayerRect(targetSurfaceRect);
187
if (!
layerRect
.isEmpty())
188
m_tiler->draw(
layerRect
, transform, ccLayerImpl()->drawOpacity());
LayerTilerChromium.cpp
150
const IntRect
layerRect
= contentRectToLayerRect(contentRect);
152
left = m_tilingData.tileXIndexFromSrcCoord(
layerRect
.x());
153
top = m_tilingData.tileYIndexFromSrcCoord(
layerRect
.y());
154
right = m_tilingData.tileXIndexFromSrcCoord(
layerRect
.maxX() - 1);
155
bottom = m_tilingData.tileYIndexFromSrcCoord(
layerRect
.maxY() - 1);
161
IntRect
layerRect
(pos, contentRect.size());
165
layerRect
= IntRect(IntPoint(0, 0), IntSize(contentRect.width() + pos.x(), contentRect.height() + pos.y()));
166
return
layerRect
;
169
IntRect LayerTilerChromium::layerRectToContentRect(const IntRect&
layerRect
) const
171
IntRect contentRect =
layerRect
;
[
all
...]
FontChromiumWin.cpp
131
IntRect
layerRect
;
138
layerRect
= estimateTextBounds();
139
m_graphicsContext->clip(
layerRect
);
151
layerRect
= estimateTextBounds();
152
m_graphicsContext->clip(
layerRect
);
161
// Bug 26088 - init() might fail if
layerRect
is invalid. Given this, we
164
TransparencyWin::KeepTransform,
layerRect
);
LayerRendererChromium.cpp
520
FloatRect
layerRect
(-0.5, -0.5, 1, 1);
521
FloatRect mappedRect = renderMatrix.mapRect(
layerRect
);
593
FloatRect
layerRect
(-0.5 * drawLayer->bounds().width(), -0.5 * drawLayer->bounds().height(), drawLayer->bounds().width(), drawLayer->bounds().height());
657
transformedLayerRect = enclosingIntRect(drawLayer->drawTransform().mapRect(
layerRect
));
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/
ShadowBlur.cpp
347
FloatRect
layerRect
;
354
layerRect
= transform.inverse().mapQuad(transformedPolygon).boundingBox();
356
layerRect
= shadowedRect;
357
layerRect
.move(m_offset);
362
layerRect
.inflate(roundedRadius);
366
FloatRect unclippedLayerRect =
layerRect
;
368
if (!clipRect.contains(enclosingIntRect(
layerRect
))) {
370
if (intersection(
layerRect
, clipRect).isEmpty())
379
layerRect
.intersect(inflatedClip);
384
m_layerOrigin = FloatPoint(
layerRect
.x(), layerRect.y())
[
all
...]
Completed in 1344 milliseconds