Index: content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
diff --git a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
index b695afc87fd708a3f0a4dea8f2305c52120ff80e..4288daad505b27fa8fcc003f13e7c7850a6f5f46 100644 |
--- a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
+++ b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
@@ -1634,6 +1634,16 @@ DELEGATE_TO_GL_2(bindTexImage2DCHROMIUM, BindTexImage2DCHROMIUM, |
DELEGATE_TO_GL_2(releaseTexImage2DCHROMIUM, ReleaseTexImage2DCHROMIUM, |
WGC3Denum, WGC3Dint) |
+void* WebGraphicsContext3DCommandBufferImpl::mapBufferCHROMIUM( |
+ WGC3Denum target, WGC3Denum access) { |
+ return gl_->MapBufferCHROMIUM(target, access); |
+} |
+ |
+WGC3Dboolean WebGraphicsContext3DCommandBufferImpl::unmapBufferCHROMIUM( |
+ WGC3Denum target) { |
+ return gl_->UnmapBufferCHROMIUM(target); |
+} |
+ |
GrGLInterface* WebGraphicsContext3DCommandBufferImpl::onCreateGrGLInterface() { |
return webkit_glue::CreateCommandBufferSkiaGLBinding(); |
} |