| 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 9138538a714619f9faca71259f9221b7a90b4ee9..f2b76adddd5d086104ea19510413b07daaa41534 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -669,11 +669,12 @@ void FramebufferRenderbuffer(GLenum target,
|
| void FramebufferTexture2D(GLenum target,
|
| GLenum attachment,
|
| GLenum textarget,
|
| - GLuint texture) {
|
| + GLuint texture,
|
| + GLint level) {
|
| gles2::cmds::FramebufferTexture2D* c =
|
| GetCmdSpace<gles2::cmds::FramebufferTexture2D>();
|
| if (c) {
|
| - c->Init(target, attachment, textarget, texture);
|
| + c->Init(target, attachment, textarget, texture, level);
|
| }
|
| }
|
|
|
| @@ -2190,11 +2191,12 @@ void FramebufferTexture2DMultisampleEXT(GLenum target,
|
| GLenum attachment,
|
| GLenum textarget,
|
| GLuint texture,
|
| + GLint level,
|
| GLsizei samples) {
|
| gles2::cmds::FramebufferTexture2DMultisampleEXT* c =
|
| GetCmdSpace<gles2::cmds::FramebufferTexture2DMultisampleEXT>();
|
| if (c) {
|
| - c->Init(target, attachment, textarget, texture, samples);
|
| + c->Init(target, attachment, textarget, texture, level, samples);
|
| }
|
| }
|
|
|
|
|