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/context_state.h" | 5 #include "gpu/command_buffer/service/context_state.h" |
6 | 6 |
| 7 #include <cmath> |
| 8 |
7 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 9 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
8 #include "gpu/command_buffer/service/buffer_manager.h" | 10 #include "gpu/command_buffer/service/buffer_manager.h" |
9 #include "gpu/command_buffer/service/error_state.h" | 11 #include "gpu/command_buffer/service/error_state.h" |
10 #include "gpu/command_buffer/service/framebuffer_manager.h" | 12 #include "gpu/command_buffer/service/framebuffer_manager.h" |
11 #include "gpu/command_buffer/service/program_manager.h" | 13 #include "gpu/command_buffer/service/program_manager.h" |
12 #include "gpu/command_buffer/service/renderbuffer_manager.h" | 14 #include "gpu/command_buffer/service/renderbuffer_manager.h" |
13 #include "ui/gl/gl_bindings.h" | 15 #include "ui/gl/gl_bindings.h" |
14 #include "ui/gl/gl_implementation.h" | 16 #include "ui/gl/gl_implementation.h" |
15 | 17 |
16 namespace gpu { | 18 namespace gpu { |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 | 293 |
292 // Include the auto-generated part of this file. We split this because it means | 294 // Include the auto-generated part of this file. We split this because it means |
293 // we can easily edit the non-auto generated parts right here in this file | 295 // we can easily edit the non-auto generated parts right here in this file |
294 // instead of having to edit some template or the code generator. | 296 // instead of having to edit some template or the code generator. |
295 #include "gpu/command_buffer/service/context_state_impl_autogen.h" | 297 #include "gpu/command_buffer/service/context_state_impl_autogen.h" |
296 | 298 |
297 } // namespace gles2 | 299 } // namespace gles2 |
298 } // namespace gpu | 300 } // namespace gpu |
299 | 301 |
300 | 302 |
OLD | NEW |