Update SystemUIShared
This commit is contained in:
@@ -65,6 +65,11 @@ public class TransactionCompat {
|
||||
return this;
|
||||
}
|
||||
|
||||
public TransactionCompat setOpaque(SurfaceControlCompat surfaceControl, boolean opaque) {
|
||||
mTransaction.setOpaque(surfaceControl.mSurfaceControl, opaque);
|
||||
return this;
|
||||
}
|
||||
|
||||
public TransactionCompat setMatrix(SurfaceControlCompat surfaceControl, float dsdx, float dtdx,
|
||||
float dtdy, float dsdy) {
|
||||
mTransaction.setMatrix(surfaceControl.mSurfaceControl, dsdx, dtdx, dtdy, dsdy);
|
||||
@@ -92,34 +97,13 @@ public class TransactionCompat {
|
||||
return this;
|
||||
}
|
||||
|
||||
public TransactionCompat deferTransactionUntil(SurfaceControlCompat surfaceControl,
|
||||
SurfaceControl barrier, long frameNumber) {
|
||||
mTransaction.deferTransactionUntil(surfaceControl.mSurfaceControl, barrier,
|
||||
frameNumber);
|
||||
return this;
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public TransactionCompat setEarlyWakeup() {
|
||||
return this;
|
||||
}
|
||||
|
||||
public TransactionCompat setColor(SurfaceControlCompat surfaceControl, float[] color) {
|
||||
mTransaction.setColor(surfaceControl.mSurfaceControl, color);
|
||||
return this;
|
||||
}
|
||||
|
||||
public static void deferTransactionUntil(Transaction t, SurfaceControl surfaceControl,
|
||||
SurfaceControl barrier, long frameNumber) {
|
||||
t.deferTransactionUntil(surfaceControl, barrier, frameNumber);
|
||||
}
|
||||
|
||||
public static void setRelativeLayer(Transaction t, SurfaceControl surfaceControl,
|
||||
SurfaceControl relativeTo, int z) {
|
||||
t.setRelativeLayer(surfaceControl, relativeTo, z);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public static void setEarlyWakeup(Transaction t) {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user