| 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 2ac4d69864c9234aa1674e4caf6b296dfd9deaa0..fc0f76dd230e58186a298274b103b2d02ed8750b 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -702,6 +702,18 @@ void GetActiveUniform(GLuint program,
|
| }
|
| }
|
|
|
| +void GetActiveUniformBlockName(GLuint program,
|
| + GLuint index,
|
| + uint32_t name_bucket_id,
|
| + uint32_t result_shm_id,
|
| + uint32_t result_shm_offset) {
|
| + gles2::cmds::GetActiveUniformBlockName* c =
|
| + GetCmdSpace<gles2::cmds::GetActiveUniformBlockName>();
|
| + if (c) {
|
| + c->Init(program, index, name_bucket_id, result_shm_id, result_shm_offset);
|
| + }
|
| +}
|
| +
|
| void GetAttachedShaders(GLuint program,
|
| uint32_t result_shm_id,
|
| uint32_t result_shm_offset,
|
| @@ -921,6 +933,17 @@ void GetTexParameteriv(GLenum target,
|
| }
|
| }
|
|
|
| +void GetUniformBlockIndex(GLuint program,
|
| + uint32_t name_bucket_id,
|
| + uint32_t index_shm_id,
|
| + uint32_t index_shm_offset) {
|
| + gles2::cmds::GetUniformBlockIndex* c =
|
| + GetCmdSpace<gles2::cmds::GetUniformBlockIndex>();
|
| + if (c) {
|
| + c->Init(program, name_bucket_id, index_shm_id, index_shm_offset);
|
| + }
|
| +}
|
| +
|
| void GetUniformfv(GLuint program,
|
| GLint location,
|
| uint32_t params_shm_id,
|
| @@ -2145,6 +2168,14 @@ void GetProgramInfoCHROMIUM(GLuint program, uint32_t bucket_id) {
|
| }
|
| }
|
|
|
| +void GetUniformBlocksCHROMIUM(GLuint program, uint32_t bucket_id) {
|
| + gles2::cmds::GetUniformBlocksCHROMIUM* c =
|
| + GetCmdSpace<gles2::cmds::GetUniformBlocksCHROMIUM>();
|
| + if (c) {
|
| + c->Init(program, bucket_id);
|
| + }
|
| +}
|
| +
|
| void GetTranslatedShaderSourceANGLE(GLuint shader, uint32_t bucket_id) {
|
| gles2::cmds::GetTranslatedShaderSourceANGLE* c =
|
| GetCmdSpace<gles2::cmds::GetTranslatedShaderSourceANGLE>();
|
|
|