Searched refs:layerBounds (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/libs/hwui/ |
D | RenderProperties.cpp | 160 Rect layerBounds(0, 0, getWidth(), getHeight()); in debugOutputProperties() local 162 getClippingRectForFlags(clipFlags, &layerBounds); in debugOutputProperties() 166 (int)layerBounds.left, (int)layerBounds.top, in debugOutputProperties() 167 (int)layerBounds.right, (int)layerBounds.bottom, in debugOutputProperties()
|
D | RenderNode.cpp | 425 Rect layerBounds(0, 0, getWidth(), getHeight()); in setViewProperties() local 427 properties().getClippingRectForFlags(clipFlags, &layerBounds); in setViewProperties() 431 layerBounds.left, layerBounds.top, in setViewProperties() 432 layerBounds.right, layerBounds.bottom, in setViewProperties()
|
D | OpenGLRenderer.cpp | 2264 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/ |
D | GcSnapshot.java | 247 public GcSnapshot saveLayer(RectF layerBounds, Paint_Delegate paint, int flags) { in saveLayer() argument 248 return new GcSnapshot(this, layerBounds, paint, flags); in saveLayer() 273 private GcSnapshot(GcSnapshot previous, RectF layerBounds, Paint_Delegate paint, int flags) { in GcSnapshot() argument 287 if (layerBounds != null) { in GcSnapshot() 293 mapRect(matrix, rect2, layerBounds); in GcSnapshot()
|