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

Unified Diff: gpu/command_buffer/client/gles2_cmd_helper_autogen.h

Issue 659903002: Add subscribeUniform extension pipeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: V2 API Created 6 years, 2 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: gpu/command_buffer/client/gles2_cmd_helper_autogen.h
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
index c8432dabd0ac2dc6b94e05627a4a24fdb30f7a68..24f91f64a12af83d0372747709b7ab8fabcc3cf0 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -1725,6 +1725,22 @@ void BindUniformLocationCHROMIUMBucket(GLuint program,
}
}
+void SubscribeUniformCHROMIUM(GLint location, GLenum target) {
+ gles2::cmds::SubscribeUniformCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::SubscribeUniformCHROMIUM>();
+ if (c) {
+ c->Init(location, target);
+ }
+}
+
+void PopulateSubscribedUniformsCHROMIUM() {
+ gles2::cmds::PopulateSubscribedUniformsCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::PopulateSubscribedUniformsCHROMIUM>();
+ if (c) {
+ c->Init();
+ }
+}
+
void BindTexImage2DCHROMIUM(GLenum target, GLint imageId) {
gles2::cmds::BindTexImage2DCHROMIUM* c =
GetCmdSpace<gles2::cmds::BindTexImage2DCHROMIUM>();

Powered by Google App Engine
This is Rietveld 408576698