Searched refs:layerBounds (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
H A DRenderProperties.cpp160 Rect layerBounds(0, 0, getWidth(), getHeight());
162 getClippingRectForFlags(clipFlags, &layerBounds);
166 (int)layerBounds.left, (int)layerBounds.top,
167 (int)layerBounds.right, (int)layerBounds.bottom,
H A DRenderNode.cpp425 Rect layerBounds(0, 0, getWidth(), getHeight());
427 properties().getClippingRectForFlags(clipFlags, &layerBounds);
431 layerBounds.left, layerBounds.top,
432 layerBounds.right, layerBounds.bottom,
H A DOpenGLRenderer.cpp2264 Rect layerBounds(FLT_MAX / 2.0f, FLT_MAX / 2.0f, FLT_MIN / 2.0f, FLT_MIN / 2.0f);
2275 positions, hasActiveLayer ? &layerBounds : nullptr, &functor, forceFinish);
2278 positions, hasActiveLayer ? &layerBounds : nullptr, &functor, forceFinish);
2283 transform.mapRect(layerBounds);
2285 dirtyLayerUnchecked(layerBounds, getRegion());
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java239 * @param layerBounds the layer bounds
247 public GcSnapshot saveLayer(RectF layerBounds, Paint_Delegate paint, int flags) { argument
248 return new GcSnapshot(this, layerBounds, paint, flags);
268 * @param layerBounds the region of the layer. Optional, if null, this is a normal save()
273 private GcSnapshot(GcSnapshot previous, RectF layerBounds, Paint_Delegate paint, int flags) { argument
287 if (layerBounds != null) {
291 // transform the layerBounds with the current transform and stores it into a int rect
293 mapRect(matrix, rect2, layerBounds);

Completed in 134 milliseconds