OLD | NEW |
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" |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 ReturnedResource ToReturnedResource() const; | 28 ReturnedResource ToReturnedResource() const; |
29 static void ReturnResources(const TransferableResourceArray& input, | 29 static void ReturnResources(const TransferableResourceArray& input, |
30 ReturnedResourceArray* output); | 30 ReturnedResourceArray* output); |
31 | 31 |
32 ResourceId id; | 32 ResourceId id; |
33 ResourceFormat format; | 33 ResourceFormat format; |
34 uint32 filter; | 34 uint32 filter; |
35 gfx::Size size; | 35 gfx::Size size; |
36 gpu::MailboxHolder mailbox_holder; | 36 gpu::MailboxHolder mailbox_holder; |
| 37 bool read_lock_fences_enabled; |
37 bool is_repeated; | 38 bool is_repeated; |
38 bool is_software; | 39 bool is_software; |
39 bool allow_overlay; | 40 bool allow_overlay; |
40 }; | 41 }; |
41 | 42 |
42 } // namespace cc | 43 } // namespace cc |
43 | 44 |
44 #endif // CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ | 45 #endif // CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ |
OLD | NEW |