OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "gpu/gles2_conform_support/egl/display.h" | 5 #include "gpu/gles2_conform_support/egl/display.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/bind_helpers.h" | 9 #include "base/bind_helpers.h" |
10 #include "gpu/command_buffer/client/gles2_implementation.h" | 10 #include "gpu/command_buffer/client/gles2_implementation.h" |
11 #include "gpu/command_buffer/client/gles2_lib.h" | 11 #include "gpu/command_buffer/client/gles2_lib.h" |
12 #include "gpu/command_buffer/client/transfer_buffer.h" | 12 #include "gpu/command_buffer/client/transfer_buffer.h" |
13 #include "gpu/command_buffer/service/context_group.h" | 13 #include "gpu/command_buffer/service/context_group.h" |
| 14 #include "gpu/command_buffer/service/mailbox_manager.h" |
| 15 #include "gpu/command_buffer/service/memory_tracking.h" |
14 #include "gpu/command_buffer/service/transfer_buffer_manager.h" | 16 #include "gpu/command_buffer/service/transfer_buffer_manager.h" |
15 #include "gpu/gles2_conform_support/egl/config.h" | 17 #include "gpu/gles2_conform_support/egl/config.h" |
16 #include "gpu/gles2_conform_support/egl/surface.h" | 18 #include "gpu/gles2_conform_support/egl/surface.h" |
17 | 19 |
18 namespace { | 20 namespace { |
19 const int32 kCommandBufferSize = 1024 * 1024; | 21 const int32 kCommandBufferSize = 1024 * 1024; |
20 const int32 kTransferBufferSize = 512 * 1024; | 22 const int32 kTransferBufferSize = 512 * 1024; |
21 } | 23 } |
22 | 24 |
23 namespace egl { | 25 namespace egl { |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 void Display::Echo(const base::Closure& callback) { | 317 void Display::Echo(const base::Closure& callback) { |
316 NOTIMPLEMENTED(); | 318 NOTIMPLEMENTED(); |
317 } | 319 } |
318 | 320 |
319 uint32 Display::CreateStreamTexture(uint32 texture_id) { | 321 uint32 Display::CreateStreamTexture(uint32 texture_id) { |
320 NOTIMPLEMENTED(); | 322 NOTIMPLEMENTED(); |
321 return 0; | 323 return 0; |
322 } | 324 } |
323 | 325 |
324 } // namespace egl | 326 } // namespace egl |
OLD | NEW |