Searched refs:layerBounds (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/libs/hwui/ |
D | RenderProperties.cpp | 140 Rect layerBounds(0, 0, getWidth(), getHeight()); in debugOutputProperties() local 142 getClippingRectForFlags(clipFlags, &layerBounds); in debugOutputProperties() 145 output << indent << "(SaveLayerAlpha " << (int)layerBounds.left << ", " in debugOutputProperties() 146 << (int)layerBounds.top << ", " << (int)layerBounds.right << ", " in debugOutputProperties() 147 << (int)layerBounds.bottom << ", " << (int)(mPrimitiveFields.mAlpha * 255) in debugOutputProperties()
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | RenderNodeDrawable.cpp | 296 Rect layerBounds(0, 0, properties.getWidth(), properties.getHeight()); in setViewProperties() local 298 properties.getClippingRectForFlags(clipFlags, &layerBounds); in setViewProperties() 301 SkRect bounds = SkRect::MakeLTRB(layerBounds.left, layerBounds.top, layerBounds.right, in setViewProperties() 302 layerBounds.bottom); in setViewProperties()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | GcSnapshot.java | 248 public GcSnapshot saveLayer(RectF layerBounds, Paint_Delegate paint, int flags) { in saveLayer() argument 249 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()
|
/frameworks/native/services/surfaceflinger/ |
D | Layer.cpp | 2062 Rect layerBounds = info.portalToDisplayId == ADISPLAY_ID_NONE in fillInputInfo() local 2065 if (!layerBounds.isValid()) { in fillInputInfo() 2066 layerBounds = getCroppedBufferSize(getDrawingState()); in fillInputInfo() 2068 layerBounds = t.transform(layerBounds); in fillInputInfo() 2069 layerBounds.inset(xSurfaceInset, ySurfaceInset, xSurfaceInset, ySurfaceInset); in fillInputInfo() 2072 info.frameLeft = layerBounds.left; in fillInputInfo() 2073 info.frameTop = layerBounds.top; in fillInputInfo() 2074 info.frameRight = layerBounds.right; in fillInputInfo() 2075 info.frameBottom = layerBounds.bottom; in fillInputInfo()
|