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/command_buffer/service/gles2_cmd_decoder.h" | 5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" |
6 | 6 |
7 #include <stdio.h> | 7 #include <stdio.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <list> | 10 #include <list> |
11 #include <map> | 11 #include <map> |
12 #include <stack> | 12 #include <stack> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/at_exit.h" | 16 #include "base/at_exit.h" |
17 #include "base/bind.h" | 17 #include "base/bind.h" |
18 #include "base/callback_helpers.h" | 18 #include "base/callback_helpers.h" |
19 #include "base/command_line.h" | 19 #include "base/command_line.h" |
20 #include "base/debug/trace_event.h" | |
21 #include "base/debug/trace_event_synthetic_delay.h" | |
22 #include "base/float_util.h" | 20 #include "base/float_util.h" |
23 #include "base/memory/scoped_ptr.h" | 21 #include "base/memory/scoped_ptr.h" |
24 #include "base/numerics/safe_math.h" | 22 #include "base/numerics/safe_math.h" |
25 #include "base/strings/string_number_conversions.h" | 23 #include "base/strings/string_number_conversions.h" |
26 #include "base/strings/string_split.h" | 24 #include "base/strings/string_split.h" |
| 25 #include "base/trace_event/trace_event.h" |
| 26 #include "base/trace_event/trace_event_synthetic_delay.h" |
27 #include "build/build_config.h" | 27 #include "build/build_config.h" |
28 #define GLES2_GPU_SERVICE 1 | 28 #define GLES2_GPU_SERVICE 1 |
29 #include "gpu/command_buffer/common/debug_marker_manager.h" | 29 #include "gpu/command_buffer/common/debug_marker_manager.h" |
30 #include "gpu/command_buffer/common/gles2_cmd_format.h" | 30 #include "gpu/command_buffer/common/gles2_cmd_format.h" |
31 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 31 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
32 #include "gpu/command_buffer/common/id_allocator.h" | 32 #include "gpu/command_buffer/common/id_allocator.h" |
33 #include "gpu/command_buffer/common/mailbox.h" | 33 #include "gpu/command_buffer/common/mailbox.h" |
34 #include "gpu/command_buffer/service/async_pixel_transfer_delegate.h" | 34 #include "gpu/command_buffer/service/async_pixel_transfer_delegate.h" |
35 #include "gpu/command_buffer/service/async_pixel_transfer_manager.h" | 35 #include "gpu/command_buffer/service/async_pixel_transfer_manager.h" |
36 #include "gpu/command_buffer/service/buffer_manager.h" | 36 #include "gpu/command_buffer/service/buffer_manager.h" |
(...skipping 11614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11651 } | 11651 } |
11652 } | 11652 } |
11653 | 11653 |
11654 // Include the auto-generated part of this file. We split this because it means | 11654 // Include the auto-generated part of this file. We split this because it means |
11655 // we can easily edit the non-auto generated parts right here in this file | 11655 // we can easily edit the non-auto generated parts right here in this file |
11656 // instead of having to edit some template or the code generator. | 11656 // instead of having to edit some template or the code generator. |
11657 #include "gpu/command_buffer/service/gles2_cmd_decoder_autogen.h" | 11657 #include "gpu/command_buffer/service/gles2_cmd_decoder_autogen.h" |
11658 | 11658 |
11659 } // namespace gles2 | 11659 } // namespace gles2 |
11660 } // namespace gpu | 11660 } // namespace gpu |
OLD | NEW |