| 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 11 matching lines...) Expand all Loading... |
| 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 unsigned sync_point; | |
| 33 ResourceFormat format; | 32 ResourceFormat format; |
| 34 uint32 target; | |
| 35 uint32 filter; | 33 uint32 filter; |
| 36 gfx::Size size; | 34 gfx::Size size; |
| 37 gpu::Mailbox mailbox; | 35 gpu::MailboxHolder mailbox_holder; |
| 38 bool is_software; | 36 bool is_software; |
| 39 }; | 37 }; |
| 40 | 38 |
| 41 } // namespace cc | 39 } // namespace cc |
| 42 | 40 |
| 43 #endif // CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ | 41 #endif // CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ |
| OLD | NEW |