HomeSort by relevance Sort by last modified time
    Searched refs:layerBounds (Results 1 - 8 of 8) sorted by null

  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 229 return new GcSnapshot(this, null /*layerbounds*/, null /*paint*/, flags);
237 * @param layerBounds the layer bounds
245 public GcSnapshot saveLayer(RectF layerBounds, Paint_Delegate paint, int flags) {
246 return new GcSnapshot(this, layerBounds, paint, flags);
266 * @param layerBounds the region of the layer. Optional, if null, this is a normal save()
271 private GcSnapshot(GcSnapshot previous, RectF layerBounds, Paint_Delegate paint, int flags) {
285 if (layerBounds != null) {
289 // transform the layerBounds with the current transform and stores it into a int rect
291 mapRect(matrix, rect2, layerBounds);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTreeAsText.cpp 540 const LayoutRect& layerBounds, const LayoutRect& backgroundClipRect, const LayoutRect& clipRect, const LayoutRect& outlineClipRect,
543 IntRect adjustedLayoutBounds = pixelSnappedIntRect(layerBounds);
662 LayoutRect layerBounds;
664 l->calculateRects(RenderLayer::ClipRectsContext(rootLayer, 0, TemporaryClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect);
669 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : l->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
673 write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), LayerPaintPhaseBackground, indent, behavior);
687 write(ts, *l, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
RenderLayerBacking.cpp 324 IntRect layerBounds = compositor()->calculateCompositedBounds(m_owningLayer, m_owningLayer);
346 layerBounds.intersect(pixelSnappedIntRect(clippingBounds));
354 if (layerBounds.isEmpty() && hasNonZeroTransformOrigin(renderer())) {
355 layerBounds.setWidth(1);
356 layerBounds.setHeight(1);
361 setCompositedBounds(layerBounds);
611 IntRect layerBounds = IntRect(delta, borderBox.size());
616 FloatPoint3D anchor(relativeCompositingBounds.width() != 0.0f ? ((layerBounds.x() - relativeCompositingBounds.x()) + transformOrigin.x()) / relativeCompositingBounds.width() : 0.5f,
617 relativeCompositingBounds.height() != 0.0f ? ((layerBounds.y() - relativeCompositingBounds.y()) + transformOrigin.y()) / relativeCompositingBounds.height() : 0.5f,
682 FloatRect layerBounds = compositedBounds()
    [all...]
RenderLayer.h 275 layerBounds = bounds;
283 layerBounds.moveBy(offset);
298 LayoutRect layerBounds;
631 // This method figures out our layerBounds in coordinates relative to
635 void calculateRects(const ClipRectsContext&, const LayoutRect& paintDirtyRect, LayoutRect& layerBounds,
655 bool intersectsDamageRect(const LayoutRect& layerBounds, const LayoutRect& damageRect, const RenderLayer* rootLayer, const LayoutPoint* offsetFromRoot = 0) const;
    [all...]
RenderLayerCompositor.h 236 void addToOverlapMap(OverlapMap&, RenderLayer*, IntRect& layerBounds, bool& boundsComputed);
RenderLayer.cpp     [all...]
RenderLayerCompositor.cpp 691 void RenderLayerCompositor::addToOverlapMap(OverlapMap& overlapMap, RenderLayer* layer, IntRect& layerBounds, bool& boundsComputed)
699 layerBounds = enclosingIntRect(overlapMap.geometryMap().absoluteRect(layer->overlapBounds()));
701 if (layerBounds.isEmpty())
702 layerBounds.setSize(IntSize(1, 1));
707 clipRect.intersect(layerBounds);
    [all...]
  /frameworks/base/libs/hwui/
OpenGLRenderer.cpp     [all...]

Completed in 87 milliseconds