Searched refs:graphicsLayer (Results 1 - 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.cpp732 void TextureMapperNode::syncCompositingState(GraphicsLayerTextureMapper* graphicsLayer, bool recurse) argument
735 syncCompositingStateInternal(graphicsLayer, recurse, textureMapper);
739 void TextureMapperNode::syncCompositingStateSelf(GraphicsLayerTextureMapper* graphicsLayer, TextureMapper* textureMapper) argument
741 const int changeMask = graphicsLayer->changeMask();
743 const TextureMapperNode::ContentData& pendingContent = graphicsLayer->pendingContent();
755 if (!graphicsLayer->parent())
758 m_parent = toTextureMapperNode(graphicsLayer->parent());
760 if (!graphicsLayer->parent() && m_parent) {
768 for (size_t i = 0; i < graphicsLayer->children().size(); ++i) {
769 if (TextureMapperNode* child = toTextureMapperNode(graphicsLayer
844 syncCompositingStateInternal(GraphicsLayerTextureMapper* graphicsLayer, bool recurse, TextureMapper* textureMapper) argument
[all...]
H A DTextureMapperNode.h136 void syncCompositingStateSelf(GraphicsLayerTextureMapper* graphicsLayer, TextureMapper* textureMapper);
/external/webkit/Source/WebCore/platform/
H A DScrollableArea.cpp205 if (GraphicsLayer* graphicsLayer = layerForHorizontalScrollbar()) {
206 graphicsLayer->setNeedsDisplay();
210 if (GraphicsLayer* graphicsLayer = layerForVerticalScrollbar()) {
211 graphicsLayer->setNeedsDisplay();
222 if (GraphicsLayer* graphicsLayer = layerForScrollCorner()) {
223 graphicsLayer->setNeedsDisplay();
H A DScrollView.cpp411 layer->backing()->graphicsLayer());
913 static void positionScrollbarLayer(GraphicsLayer* graphicsLayer, Scrollbar* scrollbar) argument
915 if (!graphicsLayer || !scrollbar)
917 graphicsLayer->setDrawsContent(true);
919 graphicsLayer->setPosition(scrollbarRect.location());
920 if (scrollbarRect.size() != graphicsLayer->size())
921 graphicsLayer->setNeedsDisplay();
922 graphicsLayer->setSize(scrollbarRect.size());
925 static void positionScrollCornerLayer(GraphicsLayer* graphicsLayer, const IntRect& cornerRect) argument
927 if (!graphicsLayer)
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
H A DLayerTreeHostCA.cpp98 void LayerTreeHostCA::setRootCompositingLayer(GraphicsLayer* graphicsLayer) argument
103 if (graphicsLayer)
104 m_nonCompositedContentLayer->addChild(graphicsLayer);
173 void LayerTreeHostCA::paintContents(const GraphicsLayer* graphicsLayer, GraphicsContext& graphicsContext, GraphicsLayerPaintingPhase, const IntRect& clipRect) argument
175 if (graphicsLayer == m_nonCompositedContentLayer) {
180 if (graphicsLayer == m_pageOverlayLayer) {
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DDrawingAreaImpl.cpp225 void DrawingAreaImpl::setRootCompositingLayer(GraphicsLayer* graphicsLayer) argument
227 if (graphicsLayer) {
230 enterAcceleratedCompositingMode(graphicsLayer);
234 m_layerTreeHost->setRootCompositingLayer(graphicsLayer);
383 void DrawingAreaImpl::enterAcceleratedCompositingMode(GraphicsLayer* graphicsLayer) argument
393 m_layerTreeHost->setRootCompositingLayer(graphicsLayer);
/external/webkit/Source/WebCore/rendering/
H A DRenderLayerBacking.cpp281 GraphicsLayer* reflectionLayer = m_owningLayer->reflectionLayer()->backing()->graphicsLayer();
483 reflectionBacking->graphicsLayer()->setReplicatedLayerPosition(FloatPoint() + (layerBounds.location() - reflectionLayerBounds.location()));
1235 void RenderLayerBacking::paintContents(const GraphicsLayer* graphicsLayer, GraphicsContext& context, GraphicsLayerPaintingPhase paintingPhase, const IntRect& clip) argument
1237 if (graphicsLayer == m_graphicsLayer.get() || graphicsLayer == m_foregroundLayer.get() || graphicsLayer == m_maskLayer.get()) {
1240 IntSize offset = graphicsLayer->offsetFromRenderer();
1261 } else if (graphicsLayer == layerForHorizontalScrollbar()) {
1263 } else if (graphicsLayer == layerForVerticalScrollbar()) {
1265 } else if (graphicsLayer
[all...]
H A DRenderLayerBacking.h77 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); } function in class:WebCore::RenderLayerBacking
H A 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& context, GraphicsLayerPaintingPhase, const IntRect& clip) argument
1690 if (graphicsLayer == layerForHorizontalScrollbar())
1692 else if (graphicsLayer == layerForVerticalScrollbar())
1694 else if (graphicsLayer == layerForScrollCorner()) {
H A DRenderLayer.cpp1403 if (view && backing() && backing()->graphicsLayer()) {
1404 backingLayer = static_cast<GraphicsLayerAndroid*>(backing()->graphicsLayer());
/external/webkit/Source/WebKit/chromium/src/
H A DChromeClientImpl.cpp830 void ChromeClientImpl::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer) argument
832 m_webView->setRootGraphicsLayer(graphicsLayer ? graphicsLayer->platformLayer() : 0);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.cpp621 void ChromeClientQt::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer) argument
624 platformPageClient()->setRootGraphicsLayer(graphicsLayer ? graphicsLayer->platformLayer() : 0);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DCanvasLayer.cpp178 return m_canvas->renderBox()->layer()->backing()->graphicsLayer()->offsetFromRenderer();
/external/webkit/Source/WebKit/mac/WebView/
H A 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/mac/WebCoreSupport/
H A DWebChromeClient.mm921 void WebChromeClient::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer)
928 ASSERT(!graphicsLayer);
933 if (graphicsLayer)
934 [webHTMLView attachRootLayer:graphicsLayer->platformLayer()];
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp206 GraphicsLayerAndroid* graphicsLayer = static_cast<GraphicsLayerAndroid*>(m_replicatedLayer); local
207 if (graphicsLayer->m_contentLayer)
208 graphicsLayer->m_contentLayer->setReplicatedLayer(m_contentLayer);
/external/webkit/Source/WebCore/page/
H A DFrameView.cpp635 if (GraphicsLayer* graphicsLayer = view->compositor()->layerForHorizontalScrollbar())
636 graphicsLayer->syncCompositingStateForThisLayerOnly();
637 if (GraphicsLayer* graphicsLayer = view->compositor()->layerForVerticalScrollbar())
638 graphicsLayer->syncCompositingStateForThisLayerOnly();
639 if (GraphicsLayer* graphicsLayer = view->compositor()->layerForScrollCorner())
640 graphicsLayer->syncCompositingStateForThisLayerOnly();
645 // The fullScreenRenderer's graphicsLayer has been re-parented, and the above recursive syncCompositingState
647 // the fullScreenRenderer's graphicsLayer here:
657 if (GraphicsLayer* fullScreenLayer = backing->graphicsLayer())
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebChromeClient.cpp822 void WebChromeClient::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer) argument
824 m_webView->setRootChildLayer(graphicsLayer);
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp1542 GraphicsLayer* graphicsLayer = renderLayer->backing()->graphicsLayer();
1543 if (!graphicsLayer)
1545 GraphicsLayerAndroid* agl = static_cast<GraphicsLayerAndroid*>(graphicsLayer);
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp4920 page()->chrome()->client()->setRootFullScreenLayer(m_fullScreenRenderer->layer()->backing()->graphicsLayer());
4944 page()->chrome()->client()->setRootFullScreenLayer(m_fullScreenRenderer->layer()->backing()->graphicsLayer());

Completed in 218 milliseconds