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

Commit 24d18b6f authored by Yuncheol Heo's avatar Yuncheol Heo
Browse files

Add RootTaskDisplayAreaOrganizer.setPosition().

Bug: 191271445
Test: Send a command to change the cluster display size and check if it effects.
Change-Id: I84b0403d3a1ec15066cf16e37ca183abf897d080
parent 532bb317
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) {