| Index: cc/ipc/render_pass.mojom
|
| diff --git a/cc/ipc/render_pass.mojom b/cc/ipc/render_pass.mojom
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8d8b29a578f997e04b8f4ff8b102e7da562a47a5
|
| --- /dev/null
|
| +++ b/cc/ipc/render_pass.mojom
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +module cc.mojom;
|
| +
|
| +import "cc/ipc/render_pass_id.mojom";
|
| +import "cc/ipc/quads.mojom";
|
| +import "cc/ipc/shared_quad_state.mojom";
|
| +import "ui/gfx/geometry/mojo/geometry.mojom";
|
| +import "ui/gfx/mojo/transform.mojom";
|
| +
|
| +// See cc/quads/render_pass.h.
|
| +struct RenderPass {
|
| + cc.mojom.RenderPassId id;
|
| + gfx.mojom.Rect output_rect;
|
| + gfx.mojom.Rect damage_rect;
|
| + gfx.mojom.Transform transform_to_root_target;
|
| + bool has_transparent_background;
|
| + array<DrawQuad> quads;
|
| + cc.mojom.SharedQuadStateList shared_quad_states;
|
| +};
|
|
|