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

Side by Side Diff: cc/resources/transferable_resource.h

Issue 660333004: cc cleanup: Update paths to geometry headers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 2 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
« no previous file with comments | « cc/resources/tile_priority.h ('k') | cc/resources/transferable_resource.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ 5 #ifndef CC_RESOURCES_TRANSFERABLE_RESOURCE_H_
6 #define CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ 6 #define CC_RESOURCES_TRANSFERABLE_RESOURCE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "cc/base/cc_export.h" 11 #include "cc/base/cc_export.h"
12 #include "cc/resources/resource_format.h" 12 #include "cc/resources/resource_format.h"
13 #include "gpu/command_buffer/common/mailbox_holder.h" 13 #include "gpu/command_buffer/common/mailbox_holder.h"
14 #include "ui/gfx/size.h" 14 #include "ui/gfx/geometry/size.h"
15 15
16 namespace cc { 16 namespace cc {
17 17
18 struct ReturnedResource; 18 struct ReturnedResource;
19 typedef std::vector<ReturnedResource> ReturnedResourceArray; 19 typedef std::vector<ReturnedResource> ReturnedResourceArray;
20 struct TransferableResource; 20 struct TransferableResource;
21 typedef std::vector<TransferableResource> TransferableResourceArray; 21 typedef std::vector<TransferableResource> TransferableResourceArray;
22 22
23 struct CC_EXPORT TransferableResource { 23 struct CC_EXPORT TransferableResource {
24 TransferableResource(); 24 TransferableResource();
25 ~TransferableResource(); 25 ~TransferableResource();
26 26
27 ReturnedResource ToReturnedResource() const; 27 ReturnedResource ToReturnedResource() const;
28 static void ReturnResources(const TransferableResourceArray& input, 28 static void ReturnResources(const TransferableResourceArray& input,
29 ReturnedResourceArray* output); 29 ReturnedResourceArray* output);
30 30
31 unsigned id; 31 unsigned id;
32 ResourceFormat format; 32 ResourceFormat format;
33 uint32 filter; 33 uint32 filter;
34 gfx::Size size; 34 gfx::Size size;
35 gpu::MailboxHolder mailbox_holder; 35 gpu::MailboxHolder mailbox_holder;
36 bool is_repeated; 36 bool is_repeated;
37 bool is_software; 37 bool is_software;
38 bool allow_overlay; 38 bool allow_overlay;
39 }; 39 };
40 40
41 } // namespace cc 41 } // namespace cc
42 42
43 #endif // CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ 43 #endif // CC_RESOURCES_TRANSFERABLE_RESOURCE_H_
OLDNEW
« no previous file with comments | « cc/resources/tile_priority.h ('k') | cc/resources/transferable_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698