| Index: ui/gl/gl_bindings_autogen_mock.cc
|
| diff --git a/ui/gl/gl_bindings_autogen_mock.cc b/ui/gl/gl_bindings_autogen_mock.cc
|
| index f42469685c8640a6a03b8a05b86741fd47a5dd85..04a753283644870b93d274d6f693d61a2897774c 100644
|
| --- a/ui/gl/gl_bindings_autogen_mock.cc
|
| +++ b/ui/gl/gl_bindings_autogen_mock.cc
|
| @@ -1250,6 +1250,14 @@ MockGLInterface::Mock_glGetQueryObjecti64v(GLuint id,
|
| interface_->GetQueryObjecti64v(id, pname, params);
|
| }
|
|
|
| +void GL_BINDING_CALL
|
| +MockGLInterface::Mock_glGetQueryObjecti64vEXT(GLuint id,
|
| + GLenum pname,
|
| + GLint64* params) {
|
| + MakeFunctionUnique("glGetQueryObjecti64vEXT");
|
| + interface_->GetQueryObjecti64v(id, pname, params);
|
| +}
|
| +
|
| void GL_BINDING_CALL MockGLInterface::Mock_glGetQueryObjectiv(GLuint id,
|
| GLenum pname,
|
| GLint* params) {
|
| @@ -2871,6 +2879,8 @@ void* GL_BINDING_CALL MockGLInterface::GetGLProcAddress(const char* name) {
|
| return reinterpret_cast<void*>(Mock_glGetProgramiv);
|
| if (strcmp(name, "glGetQueryObjecti64v") == 0)
|
| return reinterpret_cast<void*>(Mock_glGetQueryObjecti64v);
|
| + if (strcmp(name, "glGetQueryObjecti64vEXT") == 0)
|
| + return reinterpret_cast<void*>(Mock_glGetQueryObjecti64vEXT);
|
| if (strcmp(name, "glGetQueryObjectiv") == 0)
|
| return reinterpret_cast<void*>(Mock_glGetQueryObjectiv);
|
| if (strcmp(name, "glGetQueryObjectivARB") == 0)
|
|
|