| 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 8dd89f18e5494691f4a5faa0207c28ba7ae55445..2885b7797290b229e86ac499e127e4a51f23cefe 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -2004,6 +2004,21 @@ void UniformMatrix4x3fvImmediate(GLint location,
|
| }
|
| }
|
|
|
| +void UniformMatrix4fvWithCustomMatrixCHROMIUMImmediate(
|
| + GLint location,
|
| + GLenum custom_matrix,
|
| + GLboolean transpose,
|
| + const GLfloat* default_value) {
|
| + const uint32_t size = gles2::cmds::
|
| + UniformMatrix4fvWithCustomMatrixCHROMIUMImmediate::ComputeSize();
|
| + gles2::cmds::UniformMatrix4fvWithCustomMatrixCHROMIUMImmediate* c =
|
| + GetImmediateCmdSpaceTotalSize<
|
| + gles2::cmds::UniformMatrix4fvWithCustomMatrixCHROMIUMImmediate>(size);
|
| + if (c) {
|
| + c->Init(location, custom_matrix, transpose, default_value);
|
| + }
|
| +}
|
| +
|
| void UseProgram(GLuint program) {
|
| gles2::cmds::UseProgram* c = GetCmdSpace<gles2::cmds::UseProgram>();
|
| if (c) {
|
|
|