| Index: webkit/gpu/webgraphicscontext3d_in_process_impl.cc
|
| diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
|
| index 7723305e625632f1dbd949da7b611a9c50691d56..c350b3cdffafa406f6064985e61227f4c529ec1b 100644
|
| --- a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
|
| +++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
|
| @@ -333,6 +333,12 @@ void WebGraphicsContext3DInProcessImpl::prepareTexture() {
|
| }
|
| }
|
|
|
| +void WebGraphicsContext3DInProcessImpl::postSubBufferCHROMIUM(
|
| + int x, int y, int width, int height) {
|
| + DCHECK(gl_surface_->SupportsPostSubBuffer());
|
| + gl_surface_->PostSubBuffer(x, y, width, height);
|
| +}
|
| +
|
| namespace {
|
|
|
| int CreateTextureObject(GLenum target) {
|
|
|