blob: 6383b9ec25f348461a023d6eeaa6a5f18634f7a7 [file] [log] [blame]
syntax = "proto2";
package graphicsbenchmark_proto;
option java_package = "com.android.graphics.benchmark.proto";
option java_outer_classname = "ResultDataProto";
message Event {
enum Type {
START_LOOP = 1;
}
optional Type type = 1;
optional int64 timestamp = 2;
}
message Result {
repeated Event events = 1;
}