Index: content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
=================================================================== |
--- content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc (revision 187725) |
+++ content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc (working copy) |
@@ -1706,6 +1706,12 @@ |
return gl_->WaitAsyncTexImage2DCHROMIUM(target); |
} |
+void WebGraphicsContext3DCommandBufferImpl::drawBuffersEXT( |
+ WGC3Dsizei n, |
+ const WGC3Denum* bufs) { |
+ gl_->DrawBuffersEXT(n, bufs); |
+} |
+ |
GrGLInterface* WebGraphicsContext3DCommandBufferImpl::onCreateGrGLInterface() { |
return webkit::gpu::CreateCommandBufferSkiaGLBinding(); |
} |