| Index: gpu/command_buffer/client/gles2_implementation_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_implementation_autogen.h b/gpu/command_buffer/client/gles2_implementation_autogen.h
|
| index f039b989df687d7156d640da998e6f11aecac43b..6686a0a39c6efc73d80092998d63cb13a926f261 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_autogen.h
|
| @@ -1390,10 +1390,10 @@ void RenderbufferStorageMultisampleEXT(
|
| }
|
|
|
| void TexStorage2DEXT(
|
| - GLenum target, GLsizei levels, GLint internalFormat, GLsizei width,
|
| + GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width,
|
| GLsizei height) {
|
| GPU_CLIENT_SINGLE_THREAD_CHECK();
|
| - GPU_CLIENT_LOG("[" << this << "] glTexStorage2DEXT(" << GLES2Util::GetStringTextureTarget(target) << ", " << levels << ", " << internalFormat << ", " << width << ", " << height << ")"); // NOLINT
|
| + GPU_CLIENT_LOG("[" << this << "] glTexStorage2DEXT(" << GLES2Util::GetStringTextureTarget(target) << ", " << levels << ", " << GLES2Util::GetStringTextureInternalFormatStorage(internalFormat) << ", " << width << ", " << height << ")"); // NOLINT
|
| if (levels < 0) {
|
| SetGLError(GL_INVALID_VALUE, "glTexStorage2DEXT: levels < 0");
|
| return;
|
|
|