summaryrefslogtreecommitdiffstats
path: root/mojo
diff options
context:
space:
mode:
Diffstat (limited to 'mojo')
-rw-r--r--mojo/gpu/mojo_gles2_impl_autogen.cc5
-rw-r--r--mojo/gpu/mojo_gles2_impl_autogen.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/mojo/gpu/mojo_gles2_impl_autogen.cc b/mojo/gpu/mojo_gles2_impl_autogen.cc
index 2e6d25a..a65388f 100644
--- a/mojo/gpu/mojo_gles2_impl_autogen.cc
+++ b/mojo/gpu/mojo_gles2_impl_autogen.cc
@@ -619,6 +619,11 @@ void MojoGLES2Impl::GetUniformiv(GLuint program,
MojoGLES2MakeCurrent(context_);
glGetUniformiv(program, location, params);
}
+void MojoGLES2Impl::GetUniformuiv(GLuint program,
+ GLint location,
+ GLuint* params) {
+ NOTREACHED() << "Unimplemented GetUniformuiv.";
+}
void MojoGLES2Impl::GetUniformIndices(GLuint program,
GLsizei count,
const char* const* names,
diff --git a/mojo/gpu/mojo_gles2_impl_autogen.h b/mojo/gpu/mojo_gles2_impl_autogen.h
index 90ddf00..5997da5 100644
--- a/mojo/gpu/mojo_gles2_impl_autogen.h
+++ b/mojo/gpu/mojo_gles2_impl_autogen.h
@@ -308,6 +308,7 @@ class MojoGLES2Impl : public gpu::gles2::GLES2Interface {
GLuint GetUniformBlockIndex(GLuint program, const char* name) override;
void GetUniformfv(GLuint program, GLint location, GLfloat* params) override;
void GetUniformiv(GLuint program, GLint location, GLint* params) override;
+ void GetUniformuiv(GLuint program, GLint location, GLuint* params) override;
void GetUniformIndices(GLuint program,
GLsizei count,
const char* const* names,