Remove id from RegionProto object
The region proto object contains an Id, which is assigned to the memory
address of the Region object.
This information is not necessary on winscope traces, remove.
Test: Flash a device. Collect a SF trace. Open trace in winscope. Check
if Id for region objects is removed from the property list
Change-Id: I4f91745d79d9f1812915836e5e7ac3b416c2052a
diff --git a/services/surfaceflinger/layerproto/layers.proto b/services/surfaceflinger/layerproto/layers.proto
index a0fb0a0..fd4695e 100644
--- a/services/surfaceflinger/layerproto/layers.proto
+++ b/services/surfaceflinger/layerproto/layers.proto
@@ -117,7 +117,7 @@
}
message RegionProto {
- uint64 id = 1;
+ reserved 1; // Previously: uint64 id
repeated RectProto rect = 2;
}