OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 module cc.mojom; |
| 6 |
| 7 import "cc/ipc/compositor_frame_metadata.mojom"; |
| 8 import "cc/ipc/render_pass.mojom"; |
| 9 import "cc/ipc/transferable_resource.mojom"; |
| 10 |
| 11 // See src/cc/output/compositor_frame.h. |
| 12 struct CompositorFrame { |
| 13 cc.mojom.CompositorFrameMetadata metadata; |
| 14 array<cc.mojom.TransferableResource> resources; |
| 15 array<cc.mojom.RenderPass> passes; |
| 16 }; |
OLD | NEW |