OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 |
| 7 #include <stdio.h> |
| 8 |
6 #include <vector> | 9 #include <vector> |
7 #include <string> | 10 #include <string> |
8 #include <map> | 11 #include <map> |
9 #include <build/build_config.h> | 12 #include <build/build_config.h> |
10 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
11 #define GLES2_GPU_SERVICE 1 | 14 #define GLES2_GPU_SERVICE 1 |
12 #include "gpu/command_buffer/common/gles2_cmd_format.h" | 15 #include "gpu/command_buffer/common/gles2_cmd_format.h" |
13 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 16 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
14 #include "gpu/command_buffer/service/cmd_buffer_engine.h" | 17 #include "gpu/command_buffer/service/cmd_buffer_engine.h" |
15 #include "gpu/command_buffer/service/gl_utils.h" | 18 #include "gpu/command_buffer/service/gl_utils.h" |
(...skipping 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1752 return parse_error::kParseNoError; | 1755 return parse_error::kParseNoError; |
1753 } | 1756 } |
1754 | 1757 |
1755 // Include the auto-generated part of this file. We split this because it means | 1758 // Include the auto-generated part of this file. We split this because it means |
1756 // we can easily edit the non-auto generated parts right here in this file | 1759 // we can easily edit the non-auto generated parts right here in this file |
1757 // instead of having to edit some template or the code generator. | 1760 // instead of having to edit some template or the code generator. |
1758 #include "gpu/command_buffer/service/gles2_cmd_decoder_autogen.h" | 1761 #include "gpu/command_buffer/service/gles2_cmd_decoder_autogen.h" |
1759 | 1762 |
1760 } // namespace gles2 | 1763 } // namespace gles2 |
1761 } // namespace gpu | 1764 } // namespace gpu |
OLD | NEW |