Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: cc/ipc/texture_mailbox.mojom

Issue 2651793007: Implemented StructTraits for cc::TextureMailbox (Closed)
Patch Set: c Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698