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

Unified Diff: mojo/gpu/mojo_gles2_impl_autogen.cc

Issue 1136713003: Add ES3 commands GetVertexAttribI{u}iv to GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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: mojo/gpu/mojo_gles2_impl_autogen.cc
diff --git a/mojo/gpu/mojo_gles2_impl_autogen.cc b/mojo/gpu/mojo_gles2_impl_autogen.cc
index a65388f95f3d7fb6f01b36a225ead411a0583836..2a6169baf9a29d5fe201ed1845deb6b4feff1887 100644
--- a/mojo/gpu/mojo_gles2_impl_autogen.cc
+++ b/mojo/gpu/mojo_gles2_impl_autogen.cc
@@ -646,6 +646,16 @@ void MojoGLES2Impl::GetVertexAttribiv(GLuint index,
MojoGLES2MakeCurrent(context_);
glGetVertexAttribiv(index, pname, params);
}
+void MojoGLES2Impl::GetVertexAttribIiv(GLuint index,
+ GLenum pname,
+ GLint* params) {
+ NOTREACHED() << "Unimplemented GetVertexAttribIiv.";
+}
+void MojoGLES2Impl::GetVertexAttribIuiv(GLuint index,
+ GLenum pname,
+ GLuint* params) {
+ NOTREACHED() << "Unimplemented GetVertexAttribIuiv.";
+}
void MojoGLES2Impl::GetVertexAttribPointerv(GLuint index,
GLenum pname,
void** pointer) {
« gpu/command_buffer/service/vertex_attrib_manager.cc ('K') | « mojo/gpu/mojo_gles2_impl_autogen.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698