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 6e4fb9b13f2ff51b55d1a7dca2061923234e5c8e..b24a93346c740379d5e5a2cf3ad9d3f4265531b5 100644 |
--- a/mojo/gpu/mojo_gles2_impl_autogen.cc |
+++ b/mojo/gpu/mojo_gles2_impl_autogen.cc |
@@ -1447,10 +1447,17 @@ void MojoGLES2Impl::GetUniformsES3CHROMIUM(GLuint program, |
void* info) { |
NOTREACHED() << "Unimplemented GetUniformsES3CHROMIUM."; |
} |
-GLuint MojoGLES2Impl::CreateStreamTextureCHROMIUM(GLuint texture) { |
+GLint MojoGLES2Impl::CreateStreamTextureCHROMIUM(GLuint texture) { |
MojoGLES2MakeCurrent(context_); |
return glCreateStreamTextureCHROMIUM(texture); |
} |
+void MojoGLES2Impl::SetStreamTextureSizeCHROMIUM(GLuint texture, |
+ GLint stream_id, |
+ GLsizei width, |
+ GLsizei height) { |
+ MojoGLES2MakeCurrent(context_); |
+ glSetStreamTextureSizeCHROMIUM(texture, stream_id, width, height); |
+} |
GLuint MojoGLES2Impl::CreateImageCHROMIUM(ClientBuffer buffer, |
GLsizei width, |
GLsizei height, |