UNPKG

perfetto-protos

Version:

Perfetto protos exposed via protobuf-es for browser and node

83 lines 3.13 kB
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { WindowConfigurationProto } from "../app/window_configuration_pb"; import type { PointProto } from "../graphics/point_pb"; import type { RectProto } from "../graphics/rect_pb"; import type { SurfaceControlProto } from "./surfacecontrol_pb"; import type { Message } from "@bufbuild/protobuf"; /** * Describes the file protos/perfetto/trace/android/view/remote_animation_target.proto. */ export declare const file_protos_perfetto_trace_android_view_remote_animation_target: GenFile; /** * Proto representation for android.view.RemoteAnimationTarget.java class * * @generated from message perfetto.protos.RemoteAnimationTargetProto */ export type RemoteAnimationTargetProto = Message<"perfetto.protos.RemoteAnimationTargetProto"> & { /** * @generated from field: optional int32 task_id = 1; */ taskId: number; /** * @generated from field: optional int32 mode = 2; */ mode: number; /** * @generated from field: optional perfetto.protos.SurfaceControlProto leash = 3; */ leash?: SurfaceControlProto; /** * @generated from field: optional bool is_translucent = 4; */ isTranslucent: boolean; /** * @generated from field: optional perfetto.protos.RectProto clip_rect = 5; */ clipRect?: RectProto; /** * @generated from field: optional perfetto.protos.RectProto content_insets = 6; */ contentInsets?: RectProto; /** * @generated from field: optional int32 prefix_order_index = 7; */ prefixOrderIndex: number; /** * The source position of the app, in screen spaces coordinates. If the * position of the leash is modified from the controlling app, any animation * transform needs to be offset by this amount. * * @generated from field: optional perfetto.protos.PointProto position = 8; */ position?: PointProto; /** * @generated from field: optional perfetto.protos.RectProto source_container_bounds = 9; */ sourceContainerBounds?: RectProto; /** * @generated from field: optional perfetto.protos.WindowConfigurationProto window_configuration = 10; */ windowConfiguration?: WindowConfigurationProto; /** * @generated from field: optional perfetto.protos.SurfaceControlProto start_leash = 11; */ startLeash?: SurfaceControlProto; /** * @generated from field: optional perfetto.protos.RectProto start_bounds = 12; */ startBounds?: RectProto; /** * @generated from field: optional perfetto.protos.RectProto local_bounds = 13; */ localBounds?: RectProto; /** * @generated from field: optional perfetto.protos.RectProto screen_space_bounds = 14; */ screenSpaceBounds?: RectProto; }; /** * Describes the message perfetto.protos.RemoteAnimationTargetProto. * Use `create(RemoteAnimationTargetProtoSchema)` to create a new message. */ export declare const RemoteAnimationTargetProtoSchema: GenMessage<RemoteAnimationTargetProto>; //# sourceMappingURL=remote_animation_target_pb.d.ts.map