Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DRenderProperties.cpp140 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/
DRenderNodeDrawable.cpp296 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/
DGcSnapshot.java248 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/
DLayer.cpp2062 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()