mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3b63d7c3bc
Summary: Both DrawView and AbstractDrawCommand have clipping logic, this diff is moving out logic into a common base class. This also reverts the screenshot tests fix, which was causing issues with overflow: visible. Reviewed By: ahmedre Differential Revision: D2933780
30 lines
857 B
Java
30 lines
857 B
Java
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
package com.facebook.react.flat;
|
|
|
|
import android.graphics.Canvas;
|
|
|
|
/* package */ final class DrawView extends AbstractClippingDrawCommand {
|
|
|
|
/* package */ static final DrawView INSTANCE = new DrawView(0, 0, 0, 0);
|
|
|
|
public DrawView(float clipLeft, float clipTop, float clipRight, float clipBottom) {
|
|
setClipBounds(clipLeft, clipTop, clipRight, clipBottom);
|
|
}
|
|
|
|
@Override
|
|
public void draw(FlatViewGroup parent, Canvas canvas) {
|
|
canvas.save();
|
|
applyClipping(canvas);
|
|
parent.drawNextChild(canvas);
|
|
canvas.restore();
|
|
}
|
|
}
|