| Index: gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| index 13aa7222180ef89752a067537e1f4f53b9fb7c24..0dfd2622efb8dc0b61fc97baaa8a36d598c05a08 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -3095,4 +3095,36 @@ void BlendBarrierKHR() {
|
| }
|
| }
|
|
|
| +void BindFragDataLocationIndexedEXTBucket(GLuint program,
|
| + GLuint colorNumber,
|
| + GLuint index,
|
| + uint32_t name_bucket_id) {
|
| + gles2::cmds::BindFragDataLocationIndexedEXTBucket* c =
|
| + GetCmdSpace<gles2::cmds::BindFragDataLocationIndexedEXTBucket>();
|
| + if (c) {
|
| + c->Init(program, colorNumber, index, name_bucket_id);
|
| + }
|
| +}
|
| +
|
| +void BindFragDataLocationEXTBucket(GLuint program,
|
| + GLuint colorNumber,
|
| + uint32_t name_bucket_id) {
|
| + gles2::cmds::BindFragDataLocationEXTBucket* c =
|
| + GetCmdSpace<gles2::cmds::BindFragDataLocationEXTBucket>();
|
| + if (c) {
|
| + c->Init(program, colorNumber, name_bucket_id);
|
| + }
|
| +}
|
| +
|
| +void GetFragDataIndexEXT(GLuint program,
|
| + uint32_t name_bucket_id,
|
| + uint32_t index_shm_id,
|
| + uint32_t index_shm_offset) {
|
| + gles2::cmds::GetFragDataIndexEXT* c =
|
| + GetCmdSpace<gles2::cmds::GetFragDataIndexEXT>();
|
| + if (c) {
|
| + c->Init(program, name_bucket_id, index_shm_id, index_shm_offset);
|
| + }
|
| +}
|
| +
|
| #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
|
|
|