Searched refs:paintDirtyRect (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/WebCore/rendering/ |
D | RenderLayerBacking.cpp | 1070 static void setClip(GraphicsContext* p, const IntRect& paintDirtyRect, const IntRect& clipRect) in setClip() argument 1072 if (paintDirtyRect == clipRect) in setClip() 1078 static void restoreClip(GraphicsContext* p, const IntRect& paintDirtyRect, const IntRect& clipRect) in restoreClip() argument 1080 if (paintDirtyRect == clipRect) in restoreClip() 1087 const IntRect& paintDirtyRect, // in the coords of rootLayer in paintIntoLayer() argument 1100 …m_owningLayer->calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply,… in paintIntoLayer() 1125 setClip(context, paintDirtyRect, damageRect); in paintIntoLayer() 1143 restoreClip(context, paintDirtyRect, damageRect); in paintIntoLayer() 1150 setClip(context, paintDirtyRect, outlineRect); in paintIntoLayer() 1152 restoreClip(context, paintDirtyRect, outlineRect); in paintIntoLayer() [all …]
|
D | RenderTreeAsText.cpp | 77 …tStream&, const RenderLayer* rootLayer, RenderLayer*, const IntRect& paintDirtyRect, int indent = … 650 IntRect paintDirtyRect(paintRect); in writeLayers() local 652 …paintDirtyRect.setWidth(max(paintDirtyRect.width(), rootLayer->renderBox()->maxXLayoutOverflow())); in writeLayers() 653 …paintDirtyRect.setHeight(max(paintDirtyRect.height(), rootLayer->renderBox()->maxYLayoutOverflow()… in writeLayers() 660 …l->calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect… in writeLayers() 680 writeLayers(ts, rootLayer, negList->at(i), paintDirtyRect, currIndent, behavior); in writeLayers() 694 writeLayers(ts, rootLayer, normalFlowList->at(i), paintDirtyRect, currIndent, behavior); in writeLayers() 705 writeLayers(ts, rootLayer, posList->at(i), paintDirtyRect, currIndent, behavior); in writeLayers()
|
D | RenderLayer.cpp | 2534 static void setClip(GraphicsContext* p, const IntRect& paintDirtyRect, const IntRect& clipRect) in scrollTo() argument 2536 if (paintDirtyRect == clipRect) in scrollTo() 2542 static void restoreClip(GraphicsContext* p, const IntRect& paintDirtyRect, const IntRect& clipRect) in scrollTo() argument 2544 if (paintDirtyRect == clipRect) in scrollTo() 2573 const IntRect& paintDirtyRect, PaintBehavior paintBehavior, in scrollTo() argument 2616 IntRect clipRect = paintDirtyRect; in scrollTo() 2619 clipRect.intersect(paintDirtyRect); in scrollTo() 2623 setClip(p, paintDirtyRect, clipRect); in scrollTo() 2638 …paintLayer(this, p, transform.inverse().mapRect(paintDirtyRect), paintBehavior, paintingRoot, over… in scrollTo() 2643 restoreClip(p, paintDirtyRect, clipRect); in scrollTo() [all …]
|
D | RenderLayer.h | 390 …void calculateRects(const RenderLayer* rootLayer, const IntRect& paintDirtyRect, IntRect& layerBou… 514 void paintLayer(RenderLayer* rootLayer, GraphicsContext*, const IntRect& paintDirtyRect, 518 const IntRect& paintDirtyRect, PaintBehavior, 522 const IntRect& paintDirtyRect, PaintBehavior, 526 const IntRect& paintDirtyRect, PaintBehavior,
|
D | RenderLayerBacking.h | 191 void paintIntoLayer(RenderLayer* rootLayer, GraphicsContext*, const IntRect& paintDirtyRect,
|