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

Unified Diff: mojo/gpu/mojo_gles2_impl_autogen.cc

Issue 1894313002: Removed implementation of CHROMIUM_subscribe_uniform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a couple more mus/ references Created 4 years, 8 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 2e0c661eec8671d1214bf8833f8283f5ae31887f..9489c30561b73c1a5351d7ccc3bf886a017228b0 100644
--- a/mojo/gpu/mojo_gles2_impl_autogen.cc
+++ b/mojo/gpu/mojo_gles2_impl_autogen.cc
@@ -1576,37 +1576,6 @@ void MojoGLES2Impl::BindUniformLocationCHROMIUM(GLuint program,
MojoGLES2MakeCurrent(context_);
glBindUniformLocationCHROMIUM(program, location, name);
}
-void MojoGLES2Impl::GenValuebuffersCHROMIUM(GLsizei n, GLuint* buffers) {
- MojoGLES2MakeCurrent(context_);
- glGenValuebuffersCHROMIUM(n, buffers);
-}
-void MojoGLES2Impl::DeleteValuebuffersCHROMIUM(GLsizei n,
- const GLuint* valuebuffers) {
- MojoGLES2MakeCurrent(context_);
- glDeleteValuebuffersCHROMIUM(n, valuebuffers);
-}
-GLboolean MojoGLES2Impl::IsValuebufferCHROMIUM(GLuint valuebuffer) {
- MojoGLES2MakeCurrent(context_);
- return glIsValuebufferCHROMIUM(valuebuffer);
-}
-void MojoGLES2Impl::BindValuebufferCHROMIUM(GLenum target, GLuint valuebuffer) {
- MojoGLES2MakeCurrent(context_);
- glBindValuebufferCHROMIUM(target, valuebuffer);
-}
-void MojoGLES2Impl::SubscribeValueCHROMIUM(GLenum target, GLenum subscription) {
- MojoGLES2MakeCurrent(context_);
- glSubscribeValueCHROMIUM(target, subscription);
-}
-void MojoGLES2Impl::PopulateSubscribedValuesCHROMIUM(GLenum target) {
- MojoGLES2MakeCurrent(context_);
- glPopulateSubscribedValuesCHROMIUM(target);
-}
-void MojoGLES2Impl::UniformValuebufferCHROMIUM(GLint location,
- GLenum target,
- GLenum subscription) {
- MojoGLES2MakeCurrent(context_);
- glUniformValuebufferCHROMIUM(location, target, subscription);
-}
void MojoGLES2Impl::BindTexImage2DCHROMIUM(GLenum target, GLint imageId) {
MojoGLES2MakeCurrent(context_);
glBindTexImage2DCHROMIUM(target, imageId);
« no previous file with comments | « mojo/gpu/mojo_gles2_impl_autogen.h ('k') | mojo/public/c/gles2/gles2_call_visitor_chromium_extension_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698