Index: ppapi/shared_impl/ppb_graphics_3d_shared.cc |
diff --git a/ppapi/shared_impl/ppb_graphics_3d_shared.cc b/ppapi/shared_impl/ppb_graphics_3d_shared.cc |
index 13184eb5573373da5e32d0af0bddec7249a337a4..2b8b20549f1ef7582bad8846ef2ec85ccd666fa8 100644 |
--- a/ppapi/shared_impl/ppb_graphics_3d_shared.cc |
+++ b/ppapi/shared_impl/ppb_graphics_3d_shared.cc |
@@ -71,23 +71,6 @@ int32_t PPB_Graphics3D_Shared::SwapBuffers(PP_CompletionCallback callback) { |
return DoSwapBuffers(); |
} |
-void* PPB_Graphics3D_Shared::MapTexSubImage2DCHROMIUM(GLenum target, |
- GLint level, |
- GLint xoffset, |
- GLint yoffset, |
- GLsizei width, |
- GLsizei height, |
- GLenum format, |
- GLenum type, |
- GLenum access) { |
- return gles2_impl_->MapTexSubImage2DCHROMIUM( |
- target, level, xoffset, yoffset, width, height, format, type, access); |
-} |
- |
-void PPB_Graphics3D_Shared::UnmapTexSubImage2DCHROMIUM(const void* mem) { |
- gles2_impl_->UnmapTexSubImage2DCHROMIUM(mem); |
-} |
- |
void PPB_Graphics3D_Shared::SwapBuffersACK(int32_t pp_error) { |
DCHECK(HasPendingSwap()); |
TrackedCallback::ClearAndRun(&swap_callback_, pp_error); |