Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 "gpu/ipc/common/mailbox_holder.mojom"; | |
| 8 import "ui/gfx/geometry/mojo/geometry.mojom"; | |
| 9 import "ui/gfx/mojo/color_space.mojom"; | |
| 10 | |
| 11 // TODO (samans): Add shared_bitmap. | |
|
vmpstr
2017/01/27 21:08:05
Typically no space between TODO and (.
Can you fi
Saman Sami
2017/01/27 21:24:53
Done.
| |
| 12 // See cc/resources/texture_mailbox.h. | |
| 13 struct TextureMailbox { | |
| 14 gpu.mojom.MailboxHolder mailbox_holder; | |
| 15 gfx.mojom.Size size_in_pixels; | |
| 16 bool is_overlay_candidate; | |
| 17 bool is_backed_by_surface_texture; | |
| 18 bool wants_promotion_hint; | |
| 19 bool secure_output_only; | |
| 20 bool nearest_neighbor; | |
| 21 gfx.mojom.ColorSpace color_space; | |
| 22 }; | |
| OLD | NEW |