Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90dc51b3 authored by Yuncheol Heo's avatar Yuncheol Heo Committed by Android (Google) Code Review
Browse files

Merge "Add RootTaskDisplayAreaOrganizer.setPosition()." into sc-v2-dev

parents 26b467da 24d18b6f
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -97,6 +97,14 @@ public class RootTaskDisplayAreaOrganizer extends DisplayAreaOrganizer {
        b.setParent(sc);
    }

    public void setPosition(@NonNull SurfaceControl.Transaction tx, int displayId, int x, int y) {
        final SurfaceControl sc = mLeashes.get(displayId);
        if (sc == null) {
            throw new IllegalArgumentException("can't find display" + displayId);
        }
        tx.setPosition(sc, x, y);
    }

    @Override
    public void onDisplayAreaAppeared(@NonNull DisplayAreaInfo displayAreaInfo,
            @NonNull SurfaceControl leash) {