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/vertex_array_manager.h" | 5 #include "gpu/command_buffer/service/vertex_array_manager.h" |
6 #include "base/debug/trace_event.h" | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/trace_event/trace_event.h" |
8 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 9 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
9 #include "gpu/command_buffer/service/buffer_manager.h" | 10 #include "gpu/command_buffer/service/buffer_manager.h" |
10 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" | 11 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" |
11 #include "gpu/command_buffer/service/vertex_attrib_manager.h" | 12 #include "gpu/command_buffer/service/vertex_attrib_manager.h" |
12 | 13 |
13 namespace gpu { | 14 namespace gpu { |
14 namespace gles2 { | 15 namespace gles2 { |
15 | 16 |
16 VertexArrayManager::VertexArrayManager() | 17 VertexArrayManager::VertexArrayManager() |
17 : vertex_attrib_manager_count_(0), | 18 : vertex_attrib_manager_count_(0), |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 return true; | 83 return true; |
83 } | 84 } |
84 } | 85 } |
85 return false; | 86 return false; |
86 } | 87 } |
87 | 88 |
88 } // namespace gles2 | 89 } // namespace gles2 |
89 } // namespace gpu | 90 } // namespace gpu |
90 | 91 |
91 | 92 |
OLD | NEW |