| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // This file is here so other GLES2 related files can have a common set of | 5 // This file is here so other GLES2 related files can have a common set of |
| 6 // includes where appropriate. | 6 // includes where appropriate. |
| 7 | 7 |
| 8 #include <stdio.h> | 8 #include <stdio.h> |
| 9 #include <GLES2/gl2.h> | 9 #include <GLES2/gl2.h> |
| 10 #include <GLES2/gl2ext.h> | 10 #include <GLES2/gl2ext.h> |
| 11 #include <GLES2/gles2_command_buffer.h> | |
| 12 | 11 |
| 13 #include "../common/gles2_cmd_utils.h" | 12 #include "../common/gles2_cmd_utils.h" |
| 14 #include "../common/gles2_cmd_format.h" | 13 #include "../common/gles2_cmd_format.h" |
| 15 | 14 |
| 16 namespace gpu { | 15 namespace gpu { |
| 17 namespace gles2 { | 16 namespace gles2 { |
| 18 | 17 |
| 19 namespace gl_error_bit { | 18 namespace gl_error_bit { |
| 20 enum GLErrorBit { | 19 enum GLErrorBit { |
| 21 kNoError = 0, | 20 kNoError = 0, |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 } | 568 } |
| 570 } | 569 } |
| 571 return GetStringEnum(value); | 570 return GetStringEnum(value); |
| 572 } | 571 } |
| 573 | 572 |
| 574 #include "../common/gles2_cmd_utils_implementation_autogen.h" | 573 #include "../common/gles2_cmd_utils_implementation_autogen.h" |
| 575 | 574 |
| 576 } // namespace gles2 | 575 } // namespace gles2 |
| 577 } // namespace gpu | 576 } // namespace gpu |
| 578 | 577 |
| OLD | NEW |