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

Unified Diff: webkit/common/gpu/webgraphicscontext3d_impl.cc

Issue 659903002: Add subscribeUniform extension pipeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: piman@ review + merge uniform_subscription_manager with program_manager 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: webkit/common/gpu/webgraphicscontext3d_impl.cc
diff --git a/webkit/common/gpu/webgraphicscontext3d_impl.cc b/webkit/common/gpu/webgraphicscontext3d_impl.cc
index 3625de5aef0fb5ac1c2958b1bc4603ecd66253f4..03cd73d36898452d76e91ef336f73ea1464bc79f 100644
--- a/webkit/common/gpu/webgraphicscontext3d_impl.cc
+++ b/webkit/common/gpu/webgraphicscontext3d_impl.cc
@@ -846,6 +846,17 @@ DELEGATE_TO_GL_2R(createAndConsumeTextureCHROMIUM,
CreateAndConsumeTextureCHROMIUM,
WGC3Denum, const WGC3Dbyte*, WebGLId)
+DELEGATE_TO_GL_2(subscribeUniformCHROMIUM,
+ SubscribeUniformCHROMIUM,
+ WGC3Dint,
+ WGC3Denum)
+DELEGATE_TO_GL_1(unsubscribeUniformCHROMIUM,
+ UnsubscribeUniformCHROMIUM,
+ WGC3Dint)
+void WebGraphicsContext3DImpl::populateSubscribedUniformsCHROMIUM() {
+ gl_->PopulateSubscribedUniformsCHROMIUM();
+}
+
void WebGraphicsContext3DImpl::insertEventMarkerEXT(
const WGC3Dchar* marker) {
gl_->InsertEventMarkerEXT(0, marker);

Powered by Google App Engine
This is Rietveld 408576698