| 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 270d3032806a3b2db9a11b87374be43fe3225df0..aebb902d7ca33674a099376296b75e2a84498db0 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_autogen.h
|
| @@ -671,7 +671,7 @@ void GetShaderSource(
|
| const GLubyte* GetString(GLenum name);
|
|
|
| void GetTexParameterfv(GLenum target, GLenum pname, GLfloat* params) {
|
| - GPU_CLIENT_LOG("[" << this << "] glGetTexParameterfv(" << GLES2Util::GetStringTextureTarget(target) << ", " << GLES2Util::GetStringTextureParameter(pname) << ", " << static_cast<const void*>(params) << ")"); // NOLINT
|
| + GPU_CLIENT_LOG("[" << this << "] glGetTexParameterfv(" << GLES2Util::GetStringGetTexParamTarget(target) << ", " << GLES2Util::GetStringTextureParameter(pname) << ", " << static_cast<const void*>(params) << ")"); // NOLINT
|
| if (GetTexParameterfvHelper(target, pname, params)) {
|
| return;
|
| }
|
| @@ -690,7 +690,7 @@ void GetTexParameterfv(GLenum target, GLenum pname, GLfloat* params) {
|
| }
|
| void GetTexParameteriv(GLenum target, GLenum pname, GLint* params) {
|
| GPU_CLIENT_VALIDATE_DESTINATION_INITALIZATION(GLint, params);
|
| - GPU_CLIENT_LOG("[" << this << "] glGetTexParameteriv(" << GLES2Util::GetStringTextureTarget(target) << ", " << GLES2Util::GetStringTextureParameter(pname) << ", " << static_cast<const void*>(params) << ")"); // NOLINT
|
| + GPU_CLIENT_LOG("[" << this << "] glGetTexParameteriv(" << GLES2Util::GetStringGetTexParamTarget(target) << ", " << GLES2Util::GetStringTextureParameter(pname) << ", " << static_cast<const void*>(params) << ")"); // NOLINT
|
| if (GetTexParameterivHelper(target, pname, params)) {
|
| return;
|
| }
|
|
|