| 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 // 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) \ |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 OP(ShaderSourceBucket) /* 435 */ \ | 190 OP(ShaderSourceBucket) /* 435 */ \ |
| 191 OP(ShaderBinary) /* 436 */ \ | 191 OP(ShaderBinary) /* 436 */ \ |
| 192 OP(ReleaseShaderCompiler) /* 437 */ \ | 192 OP(ReleaseShaderCompiler) /* 437 */ \ |
| 193 OP(GetMaxValueInBuffer) /* 438 */ \ | 193 OP(GetMaxValueInBuffer) /* 438 */ \ |
| 194 OP(GenSharedIds) /* 439 */ \ | 194 OP(GenSharedIds) /* 439 */ \ |
| 195 OP(DeleteSharedIds) /* 440 */ \ | 195 OP(DeleteSharedIds) /* 440 */ \ |
| 196 OP(RegisterSharedIds) /* 441 */ \ | 196 OP(RegisterSharedIds) /* 441 */ \ |
| 197 OP(CommandBufferEnable) /* 442 */ \ | 197 OP(CommandBufferEnable) /* 442 */ \ |
| 198 OP(CompressedTexImage2DBucket) /* 443 */ \ | 198 OP(CompressedTexImage2DBucket) /* 443 */ \ |
| 199 OP(CompressedTexSubImage2DBucket) /* 444 */ \ | 199 OP(CompressedTexSubImage2DBucket) /* 444 */ \ |
| 200 OP(RenderbufferStorageMultisampleEXT) /* 445 */ \ |
| 201 OP(BlitFramebufferEXT) /* 446 */ \ |
| 200 | 202 |
| 201 enum CommandId { | 203 enum CommandId { |
| 202 kStartPoint = cmd::kLastCommonId, // All GLES2 commands start after this. | 204 kStartPoint = cmd::kLastCommonId, // All GLES2 commands start after this. |
| 203 #define GLES2_CMD_OP(name) k ## name, | 205 #define GLES2_CMD_OP(name) k ## name, |
| 204 GLES2_COMMAND_LIST(GLES2_CMD_OP) | 206 GLES2_COMMAND_LIST(GLES2_CMD_OP) |
| 205 #undef GLES2_CMD_OP | 207 #undef GLES2_CMD_OP |
| 206 kNumCommands | 208 kNumCommands |
| 207 }; | 209 }; |
| 208 | 210 |
| 209 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ | 211 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_IDS_AUTOGEN_H_ |
| 210 | 212 |
| OLD | NEW |