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); |