/external/webkit/Source/WebCore/platform/graphics/texmap/ |
D | TextureMapperNode.cpp | 732 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 …]
|
D | TextureMapperNode.h | 136 …void syncCompositingStateSelf(GraphicsLayerTextureMapper* graphicsLayer, TextureMapper* textureMap…
|
/external/webkit/Source/WebCore/platform/ |
D | ScrollableArea.cpp | 205 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()
|
D | ScrollView.cpp | 411 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/ |
D | LayerTreeHostCA.cpp | 98 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/ |
D | DrawingAreaImpl.cpp | 225 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/ |
D | RenderLayerBacking.cpp | 281 … 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()
|
D | RenderLayerCompositor.cpp | 383 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()) {
|
D | RenderLayerBacking.h | 77 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); } in graphicsLayer() function
|
D | RenderLayer.cpp | 1403 if (view && backing() && backing()->graphicsLayer()) { in scrollTo() 1404 backingLayer = static_cast<GraphicsLayerAndroid*>(backing()->graphicsLayer()); in scrollTo()
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | ChromeClientQt.cpp | 621 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/ |
D | ChromeClientImpl.cpp | 830 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/ |
D | CanvasLayer.cpp | 178 return m_canvas->renderBox()->layer()->backing()->graphicsLayer()->offsetFromRenderer(); in offsetFromRenderer()
|
/external/webkit/Source/WebCore/page/ |
D | FrameView.cpp | 635 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/ |
D | GraphicsLayerAndroid.cpp | 206 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/ |
D | WebChromeClient.cpp | 822 void WebChromeClient::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer) in attachRootGraphicsLayer() argument 824 m_webView->setRootChildLayer(graphicsLayer); in attachRootGraphicsLayer()
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
D | WebChromeClient.mm | 921 void WebChromeClient::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer) 928 ASSERT(!graphicsLayer); 933 if (graphicsLayer) 934 [webHTMLView attachRootLayer:graphicsLayer->platformLayer()];
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebFullScreenController.mm | 442 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/ |
D | WebViewCore.cpp | 1533 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/ |
D | Document.cpp | 4912 …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/ |
D | ChangeLog-2010-01-29 | 70156 (WebCore::RenderLayerBacking::graphicsLayer):
|