Merge "Default to true for updateDestinationFrame in BBQ" into tm-dev

This commit is contained in:
Chavi Weingarten
2022-04-12 19:27:48 +00:00
committed by Android (Google) Code Review

View File

@@ -47,7 +47,7 @@ public final class BLASTBufferQueue {
/** Create a new connection with the surface flinger. */
public BLASTBufferQueue(String name, SurfaceControl sc, int width, int height,
@PixelFormat.Format int format) {
this(name, false /* updateDestinationFrame */);
this(name, true /* updateDestinationFrame */);
update(sc, width, height, format);
}