Searched refs:layerBounds (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/libs/hwui/ |
D | RenderProperties.cpp | 139 Rect layerBounds(0, 0, getWidth(), getHeight()); in debugOutputProperties() local 141 getClippingRectForFlags(clipFlags, &layerBounds); in debugOutputProperties() 145 (int)layerBounds.left, (int)layerBounds.top, in debugOutputProperties() 146 (int)layerBounds.right, (int)layerBounds.bottom, in debugOutputProperties()
|
D | RecordingCanvas.cpp | 151 Rect layerBounds = visibleBounds; in saveLayer() local 152 if (CC_LIKELY(!layerBounds.isEmpty())) { in saveLayer() 156 inverse.mapRect(layerBounds); in saveLayer() 157 layerBounds.doIntersect(unmappedBounds); in saveLayer() 164 if (!layerBounds.isEmpty() && !unmappedBounds.isEmpty()) { in saveLayer() 176 Rect clip = layerBounds; in saveLayer()
|
D | BakedOpDispatcher.cpp | 299 Rect layerBounds(FLT_MAX / 2.0f, FLT_MAX / 2.0f, FLT_MIN / 2.0f, FLT_MIN / 2.0f); in renderText() local 310 op.positions, mustDirtyRenderTarget ? &layerBounds : nullptr, &functor, forceFinish); in renderText() 314 transform.mapRect(layerBounds); in renderText() 316 renderer.dirtyRenderTarget(layerBounds); in renderText() 760 Rect layerBounds(FLT_MAX / 2.0f, FLT_MAX / 2.0f, FLT_MIN / 2.0f, FLT_MIN / 2.0f); in onTextOnPathOp() local 771 mustDirtyRenderTarget ? &layerBounds : nullptr, &functor)) { in onTextOnPathOp() 774 state.computedState.transform.mapRect(layerBounds); in onTextOnPathOp() 775 renderer.dirtyRenderTarget(layerBounds); in onTextOnPathOp()
|
D | RenderNode.cpp | 620 Rect layerBounds(0, 0, getWidth(), getHeight()); in pushLayerUpdate() local 622 properties().getClippingRectForFlags(clipFlags, &layerBounds); in pushLayerUpdate() 626 layerBounds.left, layerBounds.top, in pushLayerUpdate() 627 layerBounds.right, layerBounds.bottom, in pushLayerUpdate()
|
D | OpenGLRenderer.cpp | 2152 Rect layerBounds(FLT_MAX / 2.0f, FLT_MAX / 2.0f, FLT_MIN / 2.0f, FLT_MIN / 2.0f); 2168 positions, hasActiveLayer ? &layerBounds : nullptr, &functor, forceFinish); 2171 positions, hasActiveLayer ? &layerBounds : nullptr, &functor, forceFinish); 2176 transform.mapRect(layerBounds); 2178 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()
|