Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: gpu/command_buffer/client/gles2_c_lib_autogen.h

Issue 1135943002: Pull in various gpu/command_buffer fixes from chromium (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/client/gles2_c_lib_autogen.h
diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
index ff3dde12210614790798976eb369e8c05b0af47e..8d94567ea0794f36beec8d997f832bd6cca7ebba 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -403,6 +403,15 @@ void GLES2GetFramebufferAttachmentParameteriv(GLenum target,
gles2::GetGLContext()->GetFramebufferAttachmentParameteriv(target, attachment,
pname, params);
}
+void GLES2GetInteger64v(GLenum pname, GLint64* params) {
+ gles2::GetGLContext()->GetInteger64v(pname, params);
+}
+void GLES2GetIntegeri_v(GLenum pname, GLuint index, GLint* data) {
+ gles2::GetGLContext()->GetIntegeri_v(pname, index, data);
+}
+void GLES2GetInteger64i_v(GLenum pname, GLuint index, GLint64* data) {
+ gles2::GetGLContext()->GetInteger64i_v(pname, index, data);
+}
void GLES2GetIntegerv(GLenum pname, GLint* params) {
gles2::GetGLContext()->GetIntegerv(pname, params);
}
@@ -1696,6 +1705,18 @@ extern const NameToFunc g_gles2_function_table[] = {
glGetFramebufferAttachmentParameteriv),
},
{
+ "glGetInteger64v",
+ reinterpret_cast<GLES2FunctionPointer>(glGetInteger64v),
+ },
+ {
+ "glGetIntegeri_v",
+ reinterpret_cast<GLES2FunctionPointer>(glGetIntegeri_v),
+ },
+ {
+ "glGetInteger64i_v",
+ reinterpret_cast<GLES2FunctionPointer>(glGetInteger64i_v),
+ },
+ {
"glGetIntegerv",
reinterpret_cast<GLES2FunctionPointer>(glGetIntegerv),
},
« no previous file with comments | « gpu/command_buffer/client/client_test_helper.h ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698