Home
last modified time | relevance | path

Searched refs:graphicsLayer (Results 1 – 21 of 21) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/texmap/
DTextureMapperNode.cpp732 void TextureMapperNode::syncCompositingState(GraphicsLayerTextureMapper* graphicsLayer, bool recurs… in syncCompositingState() argument
735 syncCompositingStateInternal(graphicsLayer, recurse, textureMapper); in syncCompositingState()
739 void TextureMapperNode::syncCompositingStateSelf(GraphicsLayerTextureMapper* graphicsLayer, Texture… in syncCompositingStateSelf() argument
741 const int changeMask = graphicsLayer->changeMask(); in syncCompositingStateSelf()
743 const TextureMapperNode::ContentData& pendingContent = graphicsLayer->pendingContent(); in syncCompositingStateSelf()
755 if (!graphicsLayer->parent()) in syncCompositingStateSelf()
758 m_parent = toTextureMapperNode(graphicsLayer->parent()); in syncCompositingStateSelf()
760 if (!graphicsLayer->parent() && m_parent) { in syncCompositingStateSelf()
768 for (size_t i = 0; i < graphicsLayer->children().size(); ++i) { in syncCompositingStateSelf()
769 if (TextureMapperNode* child = toTextureMapperNode(graphicsLayer->children()[i])) { in syncCompositingStateSelf()
[all …]
DTextureMapperNode.h136 …void syncCompositingStateSelf(GraphicsLayerTextureMapper* graphicsLayer, TextureMapper* textureMap…
/external/webkit/Source/WebCore/platform/
DScrollableArea.cpp205 if (GraphicsLayer* graphicsLayer = layerForHorizontalScrollbar()) { in invalidateScrollbar() local
206 graphicsLayer->setNeedsDisplay(); in invalidateScrollbar()
210 if (GraphicsLayer* graphicsLayer = layerForVerticalScrollbar()) { in invalidateScrollbar() local
211 graphicsLayer->setNeedsDisplay(); in invalidateScrollbar()
222 if (GraphicsLayer* graphicsLayer = layerForScrollCorner()) { in invalidateScrollCorner() local
223 graphicsLayer->setNeedsDisplay(); in invalidateScrollCorner()
DScrollView.cpp411 layer->backing()->graphicsLayer()); in scrollTo()
913 static void positionScrollbarLayer(GraphicsLayer* graphicsLayer, Scrollbar* scrollbar) in wheelEvent() argument
915 if (!graphicsLayer || !scrollbar) in wheelEvent()
917 graphicsLayer->setDrawsContent(true); in wheelEvent()
919 graphicsLayer->setPosition(scrollbarRect.location()); in wheelEvent()
920 if (scrollbarRect.size() != graphicsLayer->size()) in wheelEvent()
921 graphicsLayer->setNeedsDisplay(); in wheelEvent()
922 graphicsLayer->setSize(scrollbarRect.size()); in wheelEvent()
925 static void positionScrollCornerLayer(GraphicsLayer* graphicsLayer, const IntRect& cornerRect) in wheelEvent() argument
927 if (!graphicsLayer) in wheelEvent()
[all …]
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
DLayerTreeHostCA.cpp98 void LayerTreeHostCA::setRootCompositingLayer(GraphicsLayer* graphicsLayer) in setRootCompositingLayer() argument
103 if (graphicsLayer) in setRootCompositingLayer()
104 m_nonCompositedContentLayer->addChild(graphicsLayer); in setRootCompositingLayer()
173 void LayerTreeHostCA::paintContents(const GraphicsLayer* graphicsLayer, GraphicsContext& graphicsCo… in paintContents() argument
175 if (graphicsLayer == m_nonCompositedContentLayer) { in paintContents()
180 if (graphicsLayer == m_pageOverlayLayer) { in paintContents()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DDrawingAreaImpl.cpp225 void DrawingAreaImpl::setRootCompositingLayer(GraphicsLayer* graphicsLayer) in setRootCompositingLayer() argument
227 if (graphicsLayer) { in setRootCompositingLayer()
230 enterAcceleratedCompositingMode(graphicsLayer); in setRootCompositingLayer()
234 m_layerTreeHost->setRootCompositingLayer(graphicsLayer); in setRootCompositingLayer()
383 void DrawingAreaImpl::enterAcceleratedCompositingMode(GraphicsLayer* graphicsLayer) in enterAcceleratedCompositingMode() argument
393 m_layerTreeHost->setRootCompositingLayer(graphicsLayer); in enterAcceleratedCompositingMode()
/external/webkit/Source/WebCore/rendering/
DRenderLayerBacking.cpp281 … GraphicsLayer* reflectionLayer = m_owningLayer->reflectionLayer()->backing()->graphicsLayer(); in updateGraphicsLayerConfiguration()
483 …reflectionBacking->graphicsLayer()->setReplicatedLayerPosition(FloatPoint() + (layerBounds.locatio… in updateGraphicsLayerGeometry()
1235 void RenderLayerBacking::paintContents(const GraphicsLayer* graphicsLayer, GraphicsContext& context… in paintIntoLayer() argument
1237 …if (graphicsLayer == m_graphicsLayer.get() || graphicsLayer == m_foregroundLayer.get() || graphics… in paintIntoLayer()
1240 IntSize offset = graphicsLayer->offsetFromRenderer(); in paintIntoLayer()
1261 } else if (graphicsLayer == layerForHorizontalScrollbar()) { in paintIntoLayer()
1263 } else if (graphicsLayer == layerForVerticalScrollbar()) { in paintIntoLayer()
1265 } else if (graphicsLayer == layerForScrollCorner()) { in paintIntoLayer()
DRenderLayerCompositor.cpp383 layer->backing()->graphicsLayer()->setAcceleratesDrawing(true);
387 layer->backing()->graphicsLayer()->setAcceleratesDrawing(true);
400 … ASSERT(backing->graphicsLayer()->replicaLayer() == layer->backing()->graphicsLayer());
401 backing->graphicsLayer()->setReplicatedByLayer(0);
1688 void RenderLayerCompositor::paintContents(const GraphicsLayer* graphicsLayer, GraphicsContext& cont… argument
1690 if (graphicsLayer == layerForHorizontalScrollbar())
1692 else if (graphicsLayer == layerForVerticalScrollbar())
1694 else if (graphicsLayer == layerForScrollCorner()) {
DRenderLayerBacking.h77 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); } in graphicsLayer() function
DRenderLayer.cpp1403 if (view && backing() && backing()->graphicsLayer()) { in scrollTo()
1404 backingLayer = static_cast<GraphicsLayerAndroid*>(backing()->graphicsLayer()); in scrollTo()
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DChromeClientQt.cpp621 void ChromeClientQt::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer) in attachRootGraphicsLayer() argument
624 … platformPageClient()->setRootGraphicsLayer(graphicsLayer ? graphicsLayer->platformLayer() : 0); in attachRootGraphicsLayer()
/external/webkit/Source/WebKit/chromium/src/
DChromeClientImpl.cpp830 void ChromeClientImpl::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer) in attachRootGraphicsLayer() argument
832 m_webView->setRootGraphicsLayer(graphicsLayer ? graphicsLayer->platformLayer() : 0); in attachRootGraphicsLayer()
/external/webkit/Source/WebCore/platform/graphics/android/layers/
DCanvasLayer.cpp178 return m_canvas->renderBox()->layer()->backing()->graphicsLayer()->offsetFromRenderer(); in offsetFromRenderer()
/external/webkit/Source/WebCore/page/
DFrameView.cpp635 if (GraphicsLayer* graphicsLayer = view->compositor()->layerForHorizontalScrollbar()) in syncCompositingStateForThisFrame() local
636 graphicsLayer->syncCompositingStateForThisLayerOnly(); in syncCompositingStateForThisFrame()
637 if (GraphicsLayer* graphicsLayer = view->compositor()->layerForVerticalScrollbar()) in syncCompositingStateForThisFrame() local
638 graphicsLayer->syncCompositingStateForThisLayerOnly(); in syncCompositingStateForThisFrame()
639 if (GraphicsLayer* graphicsLayer = view->compositor()->layerForScrollCorner()) in syncCompositingStateForThisFrame() local
640 graphicsLayer->syncCompositingStateForThisLayerOnly(); in syncCompositingStateForThisFrame()
657 if (GraphicsLayer* fullScreenLayer = backing->graphicsLayer()) in syncCompositingStateForThisFrame()
/external/webkit/Source/WebCore/platform/graphics/android/
DGraphicsLayerAndroid.cpp206 GraphicsLayerAndroid* graphicsLayer = static_cast<GraphicsLayerAndroid*>(m_replicatedLayer); in setReplicatedLayer() local
207 if (graphicsLayer->m_contentLayer) in setReplicatedLayer()
208 graphicsLayer->m_contentLayer->setReplicatedLayer(m_contentLayer); in setReplicatedLayer()
/external/webkit/Source/WebKit/win/WebCoreSupport/
DWebChromeClient.cpp822 void WebChromeClient::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer) in attachRootGraphicsLayer() argument
824 m_webView->setRootChildLayer(graphicsLayer); in attachRootGraphicsLayer()
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebChromeClient.mm921 void WebChromeClient::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer)
928 ASSERT(!graphicsLayer);
933 if (graphicsLayer)
934 [webHTMLView attachRootLayer:graphicsLayer->platformLayer()];
/external/webkit/Source/WebKit/mac/WebView/
DWebFullScreenController.mm442 GraphicsLayer* rendererGraphics = _renderer->layer()->backing()->graphicsLayer();
504 … CALayer* rendererLayer = _renderer->layer()->backing()->graphicsLayer()->platformLayer();
578 GraphicsLayer* rendererGraphics = _renderer->layer()->backing()->graphicsLayer();
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp1533 GraphicsLayer* graphicsLayer = renderLayer->backing()->graphicsLayer(); in platformLayerIdFromNode() local
1534 if (!graphicsLayer) in platformLayerIdFromNode()
1536 GraphicsLayerAndroid* agl = static_cast<GraphicsLayerAndroid*>(graphicsLayer); in platformLayerIdFromNode()
/external/webkit/Source/WebCore/dom/
DDocument.cpp4912 …ome()->client()->setRootFullScreenLayer(m_fullScreenRenderer->layer()->backing()->graphicsLayer()); in webkitWillEnterFullScreenForElement()
4936 …ome()->client()->setRootFullScreenLayer(m_fullScreenRenderer->layer()->backing()->graphicsLayer()); in webkitWillExitFullScreenForElement()
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2970156 (WebCore::RenderLayerBacking::graphicsLayer):