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

Unified Diff: mojo/gpu/mojo_gles2_impl_autogen.cc

Issue 1559203003: Add GLStreamTextureImage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added enum, removed count parameter. Created 4 years, 10 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 3ee22aef22b085bc9ff6aac26dc34558eb8b2197..ca017553391fe194aeac841cdc2675e24adc1fd1 100644
--- a/mojo/gpu/mojo_gles2_impl_autogen.cc
+++ b/mojo/gpu/mojo_gles2_impl_autogen.cc
@@ -1115,6 +1115,15 @@ void MojoGLES2Impl::UniformMatrix4x3fv(GLint location,
const GLfloat* value) {
NOTREACHED() << "Unimplemented UniformMatrix4x3fv.";
}
+void MojoGLES2Impl::UniformMatrix4fvWithCustomMatrixCHROMIUM(
+ GLint location,
+ GLenum custom_matrix,
+ GLboolean transpose,
+ const GLfloat* default_value) {
+ MojoGLES2MakeCurrent(context_);
+ glUniformMatrix4fvWithCustomMatrixCHROMIUM(location, custom_matrix, transpose,
+ default_value);
+}
void MojoGLES2Impl::UseProgram(GLuint program) {
MojoGLES2MakeCurrent(context_);
glUseProgram(program);

Powered by Google App Engine
This is Rietveld 408576698