OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 GPU_COMMAND_BUFFER_SERVICE_MAILBOX_MANAGER_IMPL_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_MAILBOX_MANAGER_IMPL_H_ |
6 #define GPU_COMMAND_BUFFER_SERVICE_MAILBOX_MANAGER_IMPL_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_MAILBOX_MANAGER_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/linked_ptr.h" | |
13 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
14 #include "gpu/command_buffer/common/constants.h" | 13 #include "gpu/command_buffer/common/constants.h" |
15 #include "gpu/command_buffer/common/mailbox.h" | 14 #include "gpu/command_buffer/common/mailbox.h" |
16 #include "gpu/command_buffer/service/mailbox_manager.h" | 15 #include "gpu/command_buffer/service/mailbox_manager.h" |
17 #include "gpu/gpu_export.h" | 16 #include "gpu/gpu_export.h" |
18 | 17 |
19 namespace gpu { | 18 namespace gpu { |
20 namespace gles2 { | 19 namespace gles2 { |
21 | 20 |
22 class Texture; | 21 class Texture; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 TextureToMailboxMap textures_to_mailboxes_; | 54 TextureToMailboxMap textures_to_mailboxes_; |
56 | 55 |
57 DISALLOW_COPY_AND_ASSIGN(MailboxManagerImpl); | 56 DISALLOW_COPY_AND_ASSIGN(MailboxManagerImpl); |
58 }; | 57 }; |
59 | 58 |
60 } // namespage gles2 | 59 } // namespage gles2 |
61 } // namespace gpu | 60 } // namespace gpu |
62 | 61 |
63 #endif // GPU_COMMAND_BUFFER_SERVICE_MAILBOX_MANAGER_IMPL_H_ | 62 #endif // GPU_COMMAND_BUFFER_SERVICE_MAILBOX_MANAGER_IMPL_H_ |
64 | 63 |
OLD | NEW |