| 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 0bf6bbce46671da579381c33095a668566bcbc98..bda8bb3b965d39d58d5abae54bd5af8c2fa93b3e 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -726,6 +726,19 @@ void GetActiveUniformBlockName(GLuint program,
|
| }
|
| }
|
|
|
| +void GetActiveUniformsiv(GLuint program,
|
| + uint32_t indices_bucket_id,
|
| + GLenum pname,
|
| + uint32_t params_shm_id,
|
| + uint32_t params_shm_offset) {
|
| + gles2::cmds::GetActiveUniformsiv* c =
|
| + GetCmdSpace<gles2::cmds::GetActiveUniformsiv>();
|
| + if (c) {
|
| + c->Init(program, indices_bucket_id, pname, params_shm_id,
|
| + params_shm_offset);
|
| + }
|
| +}
|
| +
|
| void GetAttachedShaders(GLuint program,
|
| uint32_t result_shm_id,
|
| uint32_t result_shm_offset,
|
| @@ -2227,6 +2240,14 @@ void GetTransformFeedbackVaryingsCHROMIUM(GLuint program, uint32_t bucket_id) {
|
| }
|
| }
|
|
|
| +void GetUniformsES3CHROMIUM(GLuint program, uint32_t bucket_id) {
|
| + gles2::cmds::GetUniformsES3CHROMIUM* c =
|
| + GetCmdSpace<gles2::cmds::GetUniformsES3CHROMIUM>();
|
| + if (c) {
|
| + c->Init(program, bucket_id);
|
| + }
|
| +}
|
| +
|
| void GetTranslatedShaderSourceANGLE(GLuint shader, uint32_t bucket_id) {
|
| gles2::cmds::GetTranslatedShaderSourceANGLE* c =
|
| GetCmdSpace<gles2::cmds::GetTranslatedShaderSourceANGLE>();
|
|
|