Searched defs:targetSurfaceRect (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCLayerImpl.cpp132 void CCLayerImpl::draw(const IntRect& targetSurfaceRect) argument
134 return m_owner->draw(targetSurfaceRect);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DContentLayerChromium.cpp90 void ContentLayerChromium::paintContentsIfDirty(const IntRect& targetSurfaceRect) argument
100 IntRect layerRect = visibleLayerRect(targetSurfaceRect);
130 IntRect ContentLayerChromium::visibleLayerRect(const IntRect& targetSurfaceRect) argument
132 if (targetSurfaceRect.isEmpty())
133 return targetSurfaceRect;
140 if (targetSurfaceRect.contains(layerInSurfaceSpace))
146 IntRect minimalSurfaceRect = targetSurfaceRect;
183 void ContentLayerChromium::draw(const IntRect& targetSurfaceRect) argument
186 IntRect layerRect = visibleLayerRect(targetSurfaceRect);
H A DLayerRendererChromium.cpp358 const IntRect targetSurfaceRect = layer->ccLayerImpl()->scissorRect(); local
361 layer->paintContentsIfDirty(targetSurfaceRect);
363 layer->maskLayer()->paintContentsIfDirty(targetSurfaceRect);
365 layer->replicaLayer()->paintContentsIfDirty(targetSurfaceRect);
367 layer->replicaLayer()->maskLayer()->paintContentsIfDirty(targetSurfaceRect);

Completed in 60 milliseconds