| OLD | NEW |
| 1 // Copyright (c) 2010 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 auto-generated. DO NOT EDIT! | 5 // This file is auto-generated. DO NOT EDIT! |
| 6 | 6 |
| 7 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ | 7 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ |
| 8 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ | 8 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ |
| 9 | 9 |
| 10 #define GLES2_COMMAND_LIST(OP) \ | 10 #define GLES2_COMMAND_LIST(OP) \ |
| 11 OP(ActiveTexture) /* 256 */ \ | 11 OP(ActiveTexture) /* 256 */ \ |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 enum CommandId { | 207 enum CommandId { |
| 208 kStartPoint = cmd::kLastCommonId, // All GLES2 commands start after this. | 208 kStartPoint = cmd::kLastCommonId, // All GLES2 commands start after this. |
| 209 #define GLES2_CMD_OP(name) k ## name, | 209 #define GLES2_CMD_OP(name) k ## name, |
| 210 GLES2_COMMAND_LIST(GLES2_CMD_OP) | 210 GLES2_COMMAND_LIST(GLES2_CMD_OP) |
| 211 #undef GLES2_CMD_OP | 211 #undef GLES2_CMD_OP |
| 212 kNumCommands | 212 kNumCommands |
| 213 }; | 213 }; |
| 214 | 214 |
| 215 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ | 215 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ |
| 216 | 216 |
| OLD | NEW |