| OLD | NEW |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 1 // This file is auto-generated. DO NOT EDIT! | 5 // This file is auto-generated. DO NOT EDIT! |
| 2 | 6 |
| 7 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ |
| 8 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ |
| 9 |
| 3 #define GLES2_COMMAND_LIST(OP) \ | 10 #define GLES2_COMMAND_LIST(OP) \ |
| 4 OP(ActiveTexture) /* 256 */ \ | 11 OP(ActiveTexture) /* 256 */ \ |
| 5 OP(AttachShader) /* 257 */ \ | 12 OP(AttachShader) /* 257 */ \ |
| 6 OP(BindAttribLocation) /* 258 */ \ | 13 OP(BindAttribLocation) /* 258 */ \ |
| 7 OP(BindAttribLocationImmediate) /* 259 */ \ | 14 OP(BindAttribLocationImmediate) /* 259 */ \ |
| 8 OP(BindBuffer) /* 260 */ \ | 15 OP(BindBuffer) /* 260 */ \ |
| 9 OP(BindFramebuffer) /* 261 */ \ | 16 OP(BindFramebuffer) /* 261 */ \ |
| 10 OP(BindRenderbuffer) /* 262 */ \ | 17 OP(BindRenderbuffer) /* 262 */ \ |
| 11 OP(BindTexture) /* 263 */ \ | 18 OP(BindTexture) /* 263 */ \ |
| 12 OP(BlendColor) /* 264 */ \ | 19 OP(BlendColor) /* 264 */ \ |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 OP(SwapBuffers) /* 431 */ \ | 186 OP(SwapBuffers) /* 431 */ \ |
| 180 | 187 |
| 181 enum CommandId { | 188 enum CommandId { |
| 182 kStartPoint = cmd::kLastCommonId, // All GLES2 commands start after this. | 189 kStartPoint = cmd::kLastCommonId, // All GLES2 commands start after this. |
| 183 #define GLES2_CMD_OP(name) k ## name, | 190 #define GLES2_CMD_OP(name) k ## name, |
| 184 GLES2_COMMAND_LIST(GLES2_CMD_OP) | 191 GLES2_COMMAND_LIST(GLES2_CMD_OP) |
| 185 #undef GLES2_CMD_OP | 192 #undef GLES2_CMD_OP |
| 186 kNumCommands | 193 kNumCommands |
| 187 }; | 194 }; |
| 188 | 195 |
| 196 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ |
| 197 |
| OLD | NEW |