| Index: webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc
|
| diff --git a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc
|
| index b9a5b004e429575798bcf3cd699a19351f557b90..ca8882a9e2c8b951f030684eea618e5df73b01b2 100644
|
| --- a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc
|
| +++ b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc
|
| @@ -758,6 +758,11 @@ void WebGraphicsContext3DInProcessCommandBufferImpl::prepareTexture() {
|
| context_->SwapBuffers();
|
| }
|
|
|
| +void WebGraphicsContext3DInProcessCommandBufferImpl::postSubBufferCHROMIUM(
|
| + int x, int y, int width, int height) {
|
| + gl_->PostSubBufferCHROMIUM(x, y, width, height);
|
| +}
|
| +
|
| void WebGraphicsContext3DInProcessCommandBufferImpl::reshape(
|
| int width, int height) {
|
| cached_width_ = width;
|
|
|