Merge "More Sync in More Places" into sc-dev
This commit is contained in:
@@ -1479,7 +1479,7 @@ final class ActivityRecord extends WindowToken implements WindowManagerService.A
|
||||
private void setCornersRadius(WindowState mainWindow, int cornersRadius) {
|
||||
final SurfaceControl windowSurface = mainWindow.getClientViewRootSurface();
|
||||
if (windowSurface != null && windowSurface.isValid()) {
|
||||
Transaction transaction = getPendingTransaction();
|
||||
Transaction transaction = getSyncTransaction();
|
||||
transaction.setCornerRadius(windowSurface, cornersRadius);
|
||||
}
|
||||
}
|
||||
@@ -1491,7 +1491,7 @@ final class ActivityRecord extends WindowToken implements WindowManagerService.A
|
||||
}
|
||||
layoutLetterbox(winHint);
|
||||
if (mLetterbox != null && mLetterbox.needsApplySurfaceChanges()) {
|
||||
mLetterbox.applySurfaceChanges(getPendingTransaction());
|
||||
mLetterbox.applySurfaceChanges(getSyncTransaction());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -3428,7 +3428,7 @@ class DisplayContent extends RootDisplayArea implements WindowManagerPolicy.Disp
|
||||
/** Updates the layer assignment of windows on this display. */
|
||||
void assignWindowLayers(boolean setLayoutNeeded) {
|
||||
Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "assignWindowLayers");
|
||||
assignChildLayers(getPendingTransaction());
|
||||
assignChildLayers(getSyncTransaction());
|
||||
if (setLayoutNeeded) {
|
||||
setLayoutNeeded();
|
||||
}
|
||||
|
||||
@@ -389,12 +389,12 @@ class WindowContainer<E extends WindowContainer> extends ConfigurationContainer<
|
||||
mParent.onChildAdded(this);
|
||||
}
|
||||
if (!mReparenting) {
|
||||
onSyncReparent(oldParent, mParent);
|
||||
if (mParent != null && mParent.mDisplayContent != null
|
||||
&& mDisplayContent != mParent.mDisplayContent) {
|
||||
onDisplayChanged(mParent.mDisplayContent);
|
||||
}
|
||||
onParentChanged(mParent, oldParent);
|
||||
onSyncReparent(oldParent, mParent);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user